|
@@ -77,7 +77,6 @@
|
|
|
* 提交数据
|
|
|
*/
|
|
|
async function submitForm() {
|
|
|
- confirmLoading.value = true;
|
|
|
try {
|
|
|
let values = await validate();
|
|
|
|
|
@@ -85,19 +84,19 @@
|
|
|
//提交表单
|
|
|
let isUpdateVal = unref(isUpdate);
|
|
|
|
|
|
- let resultss = await saveOrUpdate(values, isUpdateVal);
|
|
|
+ confirmLoading.value = true;
|
|
|
+ let results = await saveOrUpdate(values, isUpdateVal);
|
|
|
|
|
|
- if (resultss.code === 200) {
|
|
|
+ if (results.code === 200) {
|
|
|
emit('ok');
|
|
|
createMessage.success('模板添加成功');
|
|
|
} else {
|
|
|
- createMessage.error(resultss.message);
|
|
|
+ createMessage.error(results.message);
|
|
|
}
|
|
|
|
|
|
emit('ok');
|
|
|
} finally {
|
|
|
confirmLoading.value = false;
|
|
|
- emit('ok');
|
|
|
}
|
|
|
}
|
|
|
|