This commit is contained in:
parent
eba5e97c19
commit
7fc6e13f80
|
|
@ -199,7 +199,7 @@
|
||||||
</el-steps>
|
</el-steps>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="auditing-container">
|
<div class="auditing-container" v-if="isEdit">
|
||||||
<el-input
|
<el-input
|
||||||
type="textarea"
|
type="textarea"
|
||||||
v-model="auditingParams.remark"
|
v-model="auditingParams.remark"
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@
|
||||||
<template v-slot="scope" v-if="column.prop == 'flowStatus'">
|
<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-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 == '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>
|
<el-tag v-else-if="scope.row.flowStatus == '3'" type="error" size="mini">已驳回</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
@ -79,6 +79,16 @@
|
||||||
>
|
>
|
||||||
审核
|
审核
|
||||||
</el-button>
|
</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>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
|
||||||
|
|
@ -731,7 +731,10 @@ export default {
|
||||||
this.getListView()
|
this.getListView()
|
||||||
},
|
},
|
||||||
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.getListOutInfo = response.data.leaseApplyDetailsList
|
||||||
// this.dialogTotal = response.
|
// this.dialogTotal = response.
|
||||||
// this.loading = false;
|
// this.loading = false;
|
||||||
|
|
@ -739,7 +742,10 @@ export default {
|
||||||
},
|
},
|
||||||
/** 出库查询列表 */
|
/** 出库查询列表 */
|
||||||
getDialogList() {
|
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.getListOutInfo = response.data.leaseApplyDetailsList
|
||||||
// this.dialogTotal = response.
|
// this.dialogTotal = response.
|
||||||
// this.loading = false;
|
// this.loading = false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue