|
@@ -374,7 +374,9 @@
|
|
|
this.showConfirmDialog(msg, () => {
|
|
|
this.saveDisable = true //提交保存按钮不可点击,返回结果时才可点击,防止频繁发送请求
|
|
|
api.saveTermPrompts(param).then((res) => {
|
|
|
+
|
|
|
if (res.data.code === '0') {
|
|
|
+ this.isSuccessUpload = 0 // 修改文件上传状态为0
|
|
|
this.warning(res.data.msg || '保存成功', 'success');
|
|
|
//返回带搜索条件的首页
|
|
|
this.$router.push({name:'MedicinePrompt',params:Object.assign({},this.$route.params,{currentPage:1})});
|