Commit 40f527c6 by xiehao

fix:删除了试用范围

1 parent 22bd15e5
...@@ -772,7 +772,7 @@ export function editFeedback(params) { ...@@ -772,7 +772,7 @@ export function editFeedback(params) {
// 架构督查-督查通报管理更新 // 架构督查-督查通报管理更新
export function updReportManage(params) { export function updReportManage(params) {
return post(EADC_ARRCHITECTURE + '/reportManage/upd', params) return post(EADC_ARRCHITECTURE + '/reportManage/upd', params, true)
} }
// 架构督查-督查通报管理提交 // 架构督查-督查通报管理提交
......
...@@ -110,11 +110,6 @@ export default { ...@@ -110,11 +110,6 @@ export default {
methods: { methods: {
handleSubmit() { handleSubmit() {
this.$refs['editForm'].onValidate(() => { this.$refs['editForm'].onValidate(() => {
const loading = this.$loading({
lock: true,
text: '保存中',
spinner: 'el-icon-loading',
})
const formInfo = this.$refs['editForm'].getData() const formInfo = this.$refs['editForm'].getData()
const params = { const params = {
...this.rowData, ...this.rowData,
...@@ -122,11 +117,12 @@ export default { ...@@ -122,11 +117,12 @@ export default {
} }
updReportManage(params).then((res) => { updReportManage(params).then((res) => {
if (res.code === 200) { if (res.code === 200) {
loading.close()
this.$message.success('保存成功') this.$message.success('保存成功')
this.showDialog = false this.showDialog = false
this.handleClose() this.handleClose()
this.$emit('querySearch') this.$emit('querySearch')
}else {
this.$message.error(res.msg)
} }
}) })
}) })
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!