[需求变更] 支出合同保存提示

This commit is contained in:
zhaoxiao
2021-10-26 16:48:43 +08:00
parent c6ef891a57
commit a81636f8f9
@@ -232,7 +232,7 @@
</div>
<!-- /分期信息-->
<a-form-item class="table-operator">
<a-button type="primary" @click="handleSave" v-preventclick>保存</a-button>
<a-button type="primary" @click="save" v-preventclick>保存</a-button>
<a-button @click="handleCancle">取消</a-button>
</a-form-item>
</a-form>
@@ -403,6 +403,18 @@ export default {
}
})
},
save() {
const that = this
this.$confirm({
title: '提示',
content: '保存后将进入待审核状态,无法编辑,确定要保存吗 ?',
onOk() {
that.handleSave()
},
onCancel() {
},
})
},
/**
* 表单提交
*/