|
|
@@ -84,7 +84,7 @@
|
|
|
<el-table-column prop="createTime" label="开票时间" width="150"></el-table-column>
|
|
|
<el-table-column label="操作" width="200" fixed="right" align="center">
|
|
|
<template #default="scope">
|
|
|
- <el-button link type="primary" @click="handleCount(scope.row)">结算</el-button>
|
|
|
+ <el-button link type="primary" v-if="scope.row.settlementStatus == '未结算'" @click="handleCount(scope.row)">结算</el-button>
|
|
|
<el-button link type="primary" v-if="scope.row.settlementStatus == '已结算'" @click="handleView(scope.row)">明细查询</el-button>
|
|
|
<el-button link type="primary" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
</template>
|