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