This commit is contained in:
齐天大圣 2024-03-27 16:38:28 +08:00
parent b6fbcbd345
commit 0994e3e564
2 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,7 @@ export function login(username, password, captchaCode, uuid) {
uuid
}
return request({
url: 'backendApi/login/doLogin',
url: 'backendApi/login/doLogins',
headers: {
isToken: false
},

View File

@ -82,6 +82,7 @@
<el-tag v-if="scope.row.status == 0">未绑</el-tag>
</template>
</el-table-column>
<el-table-column label="所绑油站" align="center" prop="storeName" />
<el-table-column label="是否已绑定员工" align="center" prop="mtStatus" >
<template slot-scope="scope">
<el-tag type="success" v-if="scope.row.mtStatus == 1">已绑</el-tag>
@ -369,7 +370,7 @@ export default {
return delTag(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
this.$modal.msgSuccess("操作成功!");
}).catch(() => {});
},
/** 导出按钮操作 */