瀏覽代碼

1. 完成

MONSTER-ygh 1 年之前
父節點
當前提交
d19254eb08

+ 1 - 1
src/views/tourism/scenicAreaManagement/contentManagement/formBox/attractionInfoManagementForm.vue

@@ -186,7 +186,7 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-          ...row,
+            ...res.data,
           openDate: res.data.openDate?res.data.openDate.split('~') : null
         }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))

+ 2 - 2
src/views/tourism/scenicAreaManagement/contentManagement/formBox/carouselAdvertisForm.vue

@@ -188,8 +188,8 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-          ...row
-        }
+            ...res.data
+          }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {

+ 2 - 2
src/views/tourism/scenicAreaManagement/contentManagement/formBox/eventNotificationsForm.vue

@@ -167,8 +167,8 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-          ...row
-        }
+            ...res.data
+          }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {

+ 2 - 2
src/views/tourism/scenicAreaManagement/contentManagement/formBox/noticeManagementForm.vue

@@ -148,8 +148,8 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-          ...row
-        }
+            ...res.data
+          }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {

+ 1 - 1
src/views/tourism/scenicAreaManagement/contentManagement/formBox/questionsForm.vue

@@ -119,7 +119,7 @@ export default {
         this.formStatus = 1
       }else if(model=='EDIT') { // 新增
         let obj = {
-          ...row
+          ...res.data
         }
         this.$set(this,'form',obj)
         this.formStatus = 1

+ 2 - 2
src/views/tourism/scenicAreaManagement/contentManagement/formBox/tourismStrategyForm.vue

@@ -179,8 +179,8 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-          ...row
-        }
+            ...res.data
+          }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {

+ 2 - 2
src/views/tourism/scenicAreaManagement/navigationManagement/formBox/pointTypeForm.vue

@@ -157,8 +157,8 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-          ...row
-        }
+            ...res.data
+          }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {

+ 4 - 7
src/views/tourism/scenicAreaManagement/navigationManagement/formBox/scenicGuideForm.vue

@@ -136,9 +136,8 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-          ...row,
-          openDate: res.data.openDate?res.data.openDate.split('~') : null
-        }
+            ...res.data
+          }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {
@@ -168,8 +167,7 @@ export default {
           if (this.model != 'ADD') {
             addTableApi(
               this.configUrl.edit,{
-                ...this.form,
-                openDate: this.form.openDate.join('~')
+                ...this.form
               }).then(response => {
               this.$modal.msgSuccess("修改成功");
               this.loading = false
@@ -181,8 +179,7 @@ export default {
             })
           } else {
             addTableApi(this.configUrl.edit,{
-                ...this.form,
-                openDate: this.form.openDate.join('~')
+                ...this.form
               }).then(response => {
               this.$modal.msgSuccess("新增成功");
               this.loading = false

+ 1 - 1
src/views/tourism/scenicAreaManagement/navigationManagement/scenicGuide.vue

@@ -222,7 +222,7 @@ export default {
     /** 新增按钮操作 */
     handleAddImage() {
       if(this.$refs.scenicGuideImageForm) {
-        this.$refs.scenicGuideImageForm.initData(this.title + '新增', "EDITInit",{})
+        this.$refs.scenicGuideImageForm.initData(this.title + '手绘图', "EDITInit",{})
       }
     },
     /** 新增按钮操作 */