质检报告管理前端

ccongli-dev-app-hl-0920
tengxi 1 year ago
parent 35076199ff
commit 63b1b48d73

1
.gitignore vendored

@ -49,3 +49,4 @@ rebel.xml
application-my.yaml
/yunxi-ui-app/unpackage/
/yunxi-module-xxjj/yunxi-module-xxjj-biz/src/main/java/com/yunxi/scm/module/xxjj/controller/admin/supplier/vo/SupplierCreateReqVO.java

@ -49,7 +49,6 @@ public interface CustomerMapper extends BaseMapperX<CustomerDO> {
return selectList(new LambdaQueryWrapperX<CustomerDO>()
.likeIfPresent(CustomerDO::getCustomerName, reqVO.getCustomerName())
.eqIfPresent(CustomerDO::getStatus, reqVO.getStatus()));
}
}

@ -65,7 +65,7 @@
<el-table-column label="编号" align="center" sortable prop="id" v-if="columns[0].visible" />
<!-- <el-table-column label="提交人" align="center" prop="presenter" v-if="columns[1].visible" />-->
<el-table-column label="提交人" align="center" v-if="columns[8].visible">
<el-table-column label="提交人" align="center" v-if="columns[1].visible">
<template v-slot="scope">
<span v-for="userId in scope.row.presenter">
{{ getUserNickname(userId) }}
@ -92,7 +92,7 @@
<!-- <el-table-column label="附件图片" align="center" prop="pictures" v-if="columns[9].visible" />-->
<!-- <el-table-column label="批阅人员id" align="center" prop="readOverId" v-if="columns[10].visible" />-->
<!-- <el-table-column label="抄送人员id" align="center" prop="carbonCopyId" v-if="columns[11].visible" />-->
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[12].visible">
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[6].visible">
<template v-slot="scope">
<span>{{ parseTime(scope.row.createTime) }}</span>
</template>
@ -228,13 +228,7 @@ export default {
{ key: 3, label: `关联任务id`, visible: true },
{ key: 4, label: `关联订单id`, visible: true },
{ key: 5, label: `状态`, visible: true },
// { key: 6, label: `id`, visible: true },
// { key: 7, label: ``, visible: true },
// { key: 8, label: ``, visible: true },
// { key: 9, label: ``, visible: true },
// { key: 10, label: `id`, visible: true },
// { key: 11, label: `id`, visible: true },
{ key: 12, label: `创建时间`, visible: true },
{ key: 6, label: `创建时间`, visible: true },
],
};
@ -249,6 +243,9 @@ export default {
},
methods: {
handleSelectionChange(val) {
this.multipleSelection = val
},
//id
getUserNickname(userId) {
for (const user of this.users) {

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save