优化结算页面按钮问题
This commit is contained in:
parent
086a5ba6a7
commit
88fb9266f9
|
|
@ -88,7 +88,9 @@
|
|||
align="center"
|
||||
width="80"
|
||||
type="index"
|
||||
:index="indexContinuation(queryParams.pageNum, queryParams.pageSize)"
|
||||
:index="
|
||||
indexContinuation(queryParams.pageNum, queryParams.pageSize)
|
||||
"
|
||||
>
|
||||
<!-- <template slot-scope="scope">
|
||||
<span>{{
|
||||
|
|
@ -132,7 +134,7 @@
|
|||
<template slot-scope="scope">
|
||||
<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 == '3'">已审核</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="租赁期限(天)" align="center" prop="leaseDay" :show-overflow-tooltip="true" />
|
||||
|
|
@ -151,6 +153,7 @@
|
|||
type="primary"
|
||||
icon="el-icon-edit"
|
||||
@click="handleApply(scope.row)"
|
||||
v-if="scope.row.sltStatus == '1'"
|
||||
>结算申请</el-button
|
||||
>
|
||||
<!-- <el-button
|
||||
|
|
|
|||
Loading…
Reference in New Issue