|
@@ -109,23 +109,20 @@
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
- <template #ocr_status="{ scope }">
|
|
|
- <el-tag
|
|
|
- :size="tablebtnSize"
|
|
|
- :type="
|
|
|
- scope.row.ocr_status == '0'
|
|
|
- ? 'info'
|
|
|
- : scope.row.ocr_status == '1'
|
|
|
- ? 'primary'
|
|
|
- : scope.row.ocr_status == '2'
|
|
|
- ? 'danger'
|
|
|
- : ''
|
|
|
- "
|
|
|
- v-text="
|
|
|
- (ocr_status.find((item) => item.id == scope.row.ocr_status) || {}).label ||
|
|
|
- '--'
|
|
|
- "
|
|
|
- ></el-tag>
|
|
|
+ <template #expand="{ scope }">
|
|
|
+ <el-table :data="scope.row.supplier_list" style="width: 100%" border>
|
|
|
+ <el-table-column
|
|
|
+ prop="supplierNo"
|
|
|
+ label="供应商编号"
|
|
|
+ width="180"
|
|
|
+ show-overflow-tooltip
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="supplierName"
|
|
|
+ label="供应商名称"
|
|
|
+ show-overflow-tooltip
|
|
|
+ />
|
|
|
+ </el-table>
|
|
|
</template>
|
|
|
|
|
|
<template #operation="{ scope }">
|
|
@@ -137,7 +134,7 @@
|
|
|
>
|
|
|
<i
|
|
|
class="el-icon-refresh-left tb-icon"
|
|
|
- @click="openPasswordModal(scope.row.id, false)"
|
|
|
+ @click="openPasswordModal(scope.row.uid)"
|
|
|
></i>
|
|
|
</el-tooltip>
|
|
|
<el-tooltip
|
|
@@ -164,7 +161,7 @@
|
|
|
>
|
|
|
<i
|
|
|
class="el-icon-video-pause tb-icon"
|
|
|
- @click="changeStatus(scope.row.id, scope.row.status)"
|
|
|
+ @click="changeStatus(scope.row.uid, scope.row.status)"
|
|
|
></i>
|
|
|
</el-tooltip>
|
|
|
<el-tooltip
|
|
@@ -175,7 +172,7 @@
|
|
|
>
|
|
|
<i
|
|
|
class="el-icon-video-play tb-icon"
|
|
|
- @click="changeStatus(scope.row.id, scope.row.status)"
|
|
|
+ @click="changeStatus(scope.row.uid, scope.row.status)"
|
|
|
></i>
|
|
|
</el-tooltip>
|
|
|
<el-tooltip
|
|
@@ -184,7 +181,7 @@
|
|
|
content="删除"
|
|
|
placement="top"
|
|
|
>
|
|
|
- <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.id)"></i>
|
|
|
+ <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.uid)"></i>
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
</ex-table>
|
|
@@ -198,9 +195,8 @@
|
|
|
/>
|
|
|
|
|
|
<reset-password
|
|
|
- :id="passwordModelId"
|
|
|
+ :uid="passwordModelId"
|
|
|
:show-model="passwordModel"
|
|
|
- :is-detail="isPasswordDetail"
|
|
|
@refresh="searchList"
|
|
|
@cancel="passwordModel = false"
|
|
|
/>
|
|
@@ -320,10 +316,9 @@ export default {
|
|
|
this.parmValue.page = 1;
|
|
|
await this.searchList();
|
|
|
},
|
|
|
- openPasswordModal(id, isDetail) {
|
|
|
+ openPasswordModal(id) {
|
|
|
this.passwordModel = true;
|
|
|
this.passwordModelId = id;
|
|
|
- this.isPasswordDetail = isDetail;
|
|
|
},
|
|
|
|
|
|
/**
|
|
@@ -331,7 +326,7 @@ export default {
|
|
|
* @param {String} id id
|
|
|
* @param {String} status 0-禁用 1-启用
|
|
|
*/
|
|
|
- async changeStatus(id, status) {
|
|
|
+ async changeStatus(uid, status) {
|
|
|
await this.$confirm(`确定要改为${status === "1" ? "禁用" : "启用"}?`, {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
@@ -340,7 +335,7 @@ export default {
|
|
|
.then(async () => {
|
|
|
this.loading = true;
|
|
|
const model = {
|
|
|
- id: id,
|
|
|
+ uid,
|
|
|
status: status === "1" ? "0" : "1",
|
|
|
};
|
|
|
const { code, data, message } = await asyncRequest.status(model);
|
|
@@ -362,7 +357,7 @@ export default {
|
|
|
console.log("取消");
|
|
|
});
|
|
|
},
|
|
|
- async deleteItem(id) {
|
|
|
+ async deleteItem(uid) {
|
|
|
await this.$confirm("确定要删除?", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
@@ -370,7 +365,7 @@ export default {
|
|
|
})
|
|
|
.then(async () => {
|
|
|
const model = {
|
|
|
- id: id,
|
|
|
+ uid,
|
|
|
};
|
|
|
const { code, message } = await asyncRequest.delete(model);
|
|
|
if (code === 0) {
|