This commit is contained in:
BianLzhaoMin 2025-03-06 14:53:40 +08:00
parent eba5e97c19
commit 7fc6e13f80
3 changed files with 20 additions and 4 deletions

View File

@ -199,7 +199,7 @@
</el-steps>
</div>
<div class="auditing-container">
<div class="auditing-container" v-if="isEdit">
<el-input
type="textarea"
v-model="auditingParams.remark"

View File

@ -62,7 +62,7 @@
<template v-slot="scope" v-if="column.prop == 'flowStatus'">
<el-tag v-if="scope.row.flowStatus == '0'" type="warning" size="mini">待审核</el-tag>
<el-tag v-else-if="scope.row.flowStatus == '1'" size="mini">审核中</el-tag>
<el-tag v-else-if="scope.row.flowStatus == '2'" type="success" size="mini">审核</el-tag>
<el-tag v-else-if="scope.row.flowStatus == '2'" type="success" size="mini">通过</el-tag>
<el-tag v-else-if="scope.row.flowStatus == '3'" type="error" size="mini">已驳回</el-tag>
</template>
</el-table-column>
@ -79,6 +79,16 @@
>
审核
</el-button>
<el-button
type="text"
size="mini"
icon="el-icon-search"
v-if="scope.row.flowStatus == 2 || scope.row.flowStatus == 3"
@click="handleEdit(scope.row, 1)"
>
查看
</el-button>
</template>
</el-table-column>
</el-table>

View File

@ -731,7 +731,10 @@ export default {
this.getListView()
},
getListView() {
outInfoList(this.queryOutView.id, { keyWord: this.queryOutView.keyWord }).then(response => {
outInfoList(this.queryOutView.id, {
keyWord: this.queryOutView.keyWord,
publishTask: this.publishTask
}).then(response => {
this.getListOutInfo = response.data.leaseApplyDetailsList
// this.dialogTotal = response.
// this.loading = false;
@ -739,7 +742,10 @@ export default {
},
/** 出库查询列表 */
getDialogList() {
outInfoList(this.queryOutInfo.id, { keyWord: this.queryOutInfo.keyWord }).then(response => {
outInfoList(this.queryOutInfo.id, {
keyWord: this.queryOutInfo.keyWord,
publishTask: this.publishTask
}).then(response => {
this.getListOutInfo = response.data.leaseApplyDetailsList
// this.dialogTotal = response.
// this.loading = false;