perf: 清理测试输出
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user