修正结算申请查询逻辑
This commit is contained in:
parent
e5c49dee65
commit
a3ad51346e
|
|
@ -84,7 +84,7 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="结算状态" align="center" prop="sltStatus" :show-overflow-tooltip="true">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.cost_status" :value="scope.row.isSlt" />
|
||||
<dict-tag :options="dict.type.cost_status" :value="scope.row.sltStatus" />
|
||||
</template>
|
||||
<!-- <template slot-scope="scope">-->
|
||||
<!-- <dict-tag :value="scope.row.sltStatus">-->
|
||||
|
|
@ -106,7 +106,7 @@
|
|||
type="primary"
|
||||
icon="el-icon-edit"
|
||||
@click="handleApply(scope.row)"
|
||||
v-if="scope.row.isSlt == '0' || scope.row.isSlt == '2'"
|
||||
v-if="scope.row.sltStatus == '0' || scope.row.sltStatus == '3'"
|
||||
>
|
||||
结算申请
|
||||
</el-button>
|
||||
|
|
|
|||
Loading…
Reference in New Issue