Merge remote-tracking branch 'origin/dev-nx' into dev-nx
This commit is contained in:
commit
ffdbcd019e
|
|
@ -140,6 +140,7 @@
|
|||
<span v-if="scope.row.sltStatus == '1'">未结算</span>
|
||||
<span v-if="scope.row.sltStatus == '2'">已结算</span>
|
||||
<span v-if="scope.row.sltStatus == '3'">已审核</span>
|
||||
<span v-if="scope.row.sltStatus == '4'">已驳回</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
|
|
@ -164,12 +165,12 @@
|
|||
type="primary"
|
||||
icon="el-icon-edit"
|
||||
@click="handleApply(scope.row)"
|
||||
v-if="scope.row.sltStatus == '1'"
|
||||
v-if="scope.row.sltStatus == '1' || (scope.row.sltStatus == '4' && scope.row.isCommit == 0 )"
|
||||
>结算申请</el-button
|
||||
>
|
||||
<!-- <el-button
|
||||
size="mini"
|
||||
type="danger"
|
||||
type="danger"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
>撤销申请</el-button> -->
|
||||
|
|
@ -220,6 +221,7 @@ export default {
|
|||
{ id: '1', name: '未结算' },
|
||||
{ id: '2', name: '已结算' },
|
||||
{ id: '3', name: '已审核' },
|
||||
{ id: '4', name: '已驳回' },
|
||||
], //集合
|
||||
// 表格数据
|
||||
agreementList: [],
|
||||
|
|
@ -235,6 +237,7 @@ export default {
|
|||
pageSize: 10,
|
||||
keyWord: undefined,
|
||||
sltStatus: '',
|
||||
isCommit:'',
|
||||
unitId: '',
|
||||
projectId: '',
|
||||
},
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@
|
|||
>
|
||||
<!-- <el-button
|
||||
size="mini"
|
||||
type="danger"
|
||||
type="danger"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
>撤销申请</el-button> -->
|
||||
|
|
@ -218,6 +218,7 @@ export default {
|
|||
pageSize: 10,
|
||||
keyWord: undefined,
|
||||
sltStatus: '',
|
||||
isCommit: '',
|
||||
unitId: '',
|
||||
projectId: '',
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue