[需求变更] 支出合同保存提示
This commit is contained in:
+13
-1
@@ -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() {
|
||||
},
|
||||
})
|
||||
},
|
||||
/**
|
||||
* 表单提交
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user