perf: 清理测试输出

This commit is contained in:
2025-01-02 11:15:39 +08:00
parent 0df937a933
commit 7cbca0ee87
7 changed files with 7 additions and 13 deletions

View File

@@ -46,7 +46,6 @@ const getCompanyList = async () => {
const res = await request(authApi("getCompanyPrimaryInfo"), {
method: "post"
});
console.info(res);
if (res.status === 200) {
companyOptions.value = res.data.map(item => ({
value: item.id,
@@ -66,7 +65,7 @@ const getRoleList = async () => {
const res = await request(authApi("getRoles"), {
method: "post"
});
console.info(res);
// console.info(res);
if (res.status === 200) {
roleOptions.value = res.data.map(item => ({
value: item.id,
@@ -87,7 +86,6 @@ const getUserList = async () => {
method: "post",
body: JSON.stringify(params)
});
console.log(data);
if (data.status === 200) {
tableData.value = data.data.rows;