|
@@ -93,18 +93,18 @@
|
|
|
<a-button
|
|
|
size="small"
|
|
|
type="link"
|
|
|
- v-if="(record.state == 'WAIT_SUBMIT') || (record.state == 'WAIT_AUDIT')"
|
|
|
+ v-if="(record.state == 'WAIT_SUBMIT') || (record.state == 'WAIT_AUDIT') || (record.state == 'AUDIT_REJECT')"
|
|
|
class="button-info"
|
|
|
@click="handleEdit(record)"
|
|
|
id="allocateBillList-edit-btn">编辑</a-button>
|
|
|
<a-button
|
|
|
size="small"
|
|
|
type="link"
|
|
|
- v-if="(record.state == 'WAIT_SUBMIT') || (record.state == 'WAIT_AUDIT')"
|
|
|
+ v-if="(record.state == 'WAIT_SUBMIT') || (record.state == 'WAIT_AUDIT') || (record.state == 'AUDIT_REJECT')"
|
|
|
class="button-error"
|
|
|
@click="handleDel(record)"
|
|
|
id="allocateBillList-del-btn">删除</a-button>
|
|
|
- <span v-if="(record.state != 'WAIT_SUBMIT') && (record.state != 'WAIT_AUDIT')">--</span>
|
|
|
+ <span v-if="(record.state != 'WAIT_SUBMIT') && (record.state != 'WAIT_AUDIT') && (record.state != 'AUDIT_REJECT')">--</span>
|
|
|
</template>
|
|
|
</s-table>
|
|
|
<!-- 新增 -->
|
|
@@ -216,6 +216,7 @@ export default {
|
|
|
title: '提示',
|
|
|
content: '确认要审核通过吗?',
|
|
|
centered: true,
|
|
|
+ closable: true,
|
|
|
okText: '审核通过',
|
|
|
cancelText: '审核不通过',
|
|
|
onOk () {
|