MONSTER-ygh 1 年間 前
コミット
6cd3905231

+ 2 - 2
src/views/tourism/membershipManagement/electronicMembership/formBox/membershipLevelForm.vue

@@ -313,10 +313,10 @@ export default {
       let typeList = ['png','jepg','jpg']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },

+ 6 - 6
src/views/tourism/popularCheck/contentManagement.vue

@@ -4,10 +4,10 @@
         <!--用户数据-->
         <el-col :span="24" :xs="24">
           <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
-            <el-form-item label="用户称">
+            <el-form-item label="用户称">
                 <el-input
-                v-model="queryParams.nickName"
-                placeholder="请输入用户称"
+                v-model="queryParams.memberName"
+                placeholder="请输入用户称"
                 clearable
                 style="width: 240px;"
                 @keyup.enter.native="handleQuery"
@@ -49,7 +49,7 @@
   
           <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
             <el-table-column type="index" label="序号" align="center"  />
-            <el-table-column label="用户称" align="center" key="memberName" prop="memberName" v-if="columns[0].visible" :show-overflow-tooltip="true" />
+            <el-table-column label="用户称" align="center" key="memberName" prop="memberName" v-if="columns[0].visible" :show-overflow-tooltip="true" />
             <el-table-column label="标题" align="center" key="title" prop="title" v-if="columns[1].visible" :show-overflow-tooltip="true" />
             <el-table-column label="详情" align="center" key="content" prop="content" v-if="columns[2].visible" :show-overflow-tooltip="true">
               <template slot-scope="scope">
@@ -131,7 +131,7 @@
         },
         configUrl: {
           list: '/member/memberCheckin/pageList', // 列表地址
-          delect: '', // 删除地址
+          delect: '/member/memberCheckin/deleteById', // 删除地址
           upload: '',// 导入地址
           download:'', // 下载模板地址
           export: '',// 导出地址
@@ -159,7 +159,7 @@
         dateRange: [],
         // 控制列表是否显示
         columns: [
-          { key: 0, label: `用户称`, visible: true },
+          { key: 0, label: `用户称`, visible: true },
           { key: 1, label: `标题`, visible: true },
           { key: 2, label: `详情`, visible: true },
           { key: 3, label: `提交时间`, visible: true },

+ 2 - 4
src/views/tourism/popularCheck/detailsBox/contentManagementDetails.vue

@@ -24,9 +24,6 @@
             <el-form-item label="用户名称:">
               <span style="display: block; min-width: 250px;">{{ form.memberName }}</span>
             </el-form-item>
-            <el-form-item label="昵称:">
-              <span style="display: block; min-width: 250px;">{{ form.nickName }}</span>
-            </el-form-item>
             <el-form-item label="头像" prop="avatar">
               <div style="display: flex;">
                 <div 
@@ -52,7 +49,7 @@
               <span style="display: block;min-width: 250px;">{{ form.praiseNum }}</span>
             </el-form-item>
             <el-form-item label="打卡距离:">
-              <span style="display: block;min-width: 250px;">{{ form.checkinDistance }}</span>
+              <span style="display: block;min-width: 250px;">{{ form.checkinDistance }}</span>
             </el-form-item>
           </div>
           <div>
@@ -194,6 +191,7 @@ export default {
             imgUrl: res.data.imgUrl?res.data.imgUrl.split(','):[]
         }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
+          this.errReasonText = ''
           this.formStatus = 1
         }else {
           this.$message.error('获取详情失败!!!');

+ 5 - 5
src/views/tourism/productManagement/formBox/scenicAreaTicketsForm.vue

@@ -50,7 +50,7 @@
                 <i v-else class="el-icon-plus avatar-uploader-icon"></i>
               </el-upload>
             </div>
-            <span>建议上传xxx*xxx,支持jpg/png/gif,支持1MB大小以内的图片上传</span>
+            <span>支持jpg/png/gif,支持1MB大小以内的图片上传</span>
           </el-form-item>
           <el-tabs v-model="activeName">
             <el-tab-pane label="产品介绍" name="first">
@@ -59,7 +59,7 @@
               </el-form-item>
             </el-tab-pane>
             <el-tab-pane label="购票须知" name="second">
-              <el-form-item label-width="0" label="0" prop="performNotice">
+              <el-form-item label-width="0" label="" prop="performNotice">
                 <editor ref="editor" v-model="form.performNotice" :fileSize="20" :min-height="200" />
               </el-form-item>
             </el-tab-pane>
@@ -251,15 +251,15 @@ export default {
       
     },
     beforeAvatarUpload(file) {
-      const isLt2M = file.size / 1024 / 1024 < 2;
+      const isLt2M = file.size / 1024 / 1024 <= 1;
       let testmsg = file.name.substring(file.name.lastIndexOf('.')+1)
       let typeList = ['png','jepg','jpg']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 2MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },

+ 35 - 11
src/views/tourism/productManagement/formBox/scenicAreaTicketsSpecsForm.vue

@@ -50,7 +50,7 @@
               >
                 <template slot-scope="scope">
                   <el-button type="primary" @click="getTableDeatilsFun(scope.row)" icon="el-icon-edit" circle></el-button>
-                  <el-button type="danger" icon="el-icon-delete" circle></el-button>
+                  <el-button type="danger" @click="handleDelete(scope.row)" icon="el-icon-delete" circle></el-button>
                 </template>
               </el-table-column>
             </el-table>
@@ -143,10 +143,10 @@
                       controls-position="right">
                     </el-input-number>
                   </el-form-item>
-                  <el-form-item label="划价格:" prop="originalPrice">
+                  <el-form-item label="划线价格:" prop="originalPrice">
                     <el-input-number 
                       v-model="form.originalPrice" 
-                      placeholder="请输入划价格"
+                      placeholder="请输入划线价格"
                       controls-position="right">
                     </el-input-number>
                   </el-form-item>
@@ -171,7 +171,7 @@
                   <el-radio :label="2">不允许退票</el-radio>
                 </el-radio-group>
               </el-form-item>
-              <el-form-item label="提前退票" prop="backStatusRadio">
+              <el-form-item label="提前退票" v-if="form.backStatus==1" prop="backStatusRadio">
                 <div style="display: flex;align-items: center;">
                   <el-radio-group v-model="form.backStatusRadio" @input="radioInputss">
                     <el-radio label="-1">不限</el-radio>
@@ -301,6 +301,7 @@
 import { 
   getTableDeatilsByIdApi,
   updateTableApi,
+  delTableParamsApi,
   addTableApi
  } from '@/api/CURD'
 
@@ -322,6 +323,7 @@ export default {
         list: '/merchant/merchantPerformAuditorium/merchantGoodsList',// 规格列表
         edit: '/merchant/merchantPerformAuditorium/saveMerchantGoods', // 编辑地址
         updateStatusById: '/goods/goods/updateStatus',
+        delect: '/merchant/merchantPerformAuditorium/deleteMerchantGoods',
       },
       performId: null,
       form: {
@@ -339,7 +341,7 @@ export default {
         useExpireDateTime: [{ required: false, message: "请选择时间", trigger: ["change","blur"] }],
 
         salePrice: [{ required: true, message: "请输入小程序价格", trigger: ["change","blur"] }],
-        originalPrice: [{ required: true, message: "请输入划价格", trigger: ["change","blur"] }],
+        originalPrice: [{ required: true, message: "请输入划线价格", trigger: ["change","blur"] }],
         
         isAuth: [{ required: true, message: "请选择实名购票", trigger: ["change","blur"] }],
         oneMany: [{ required: true, message: "请选择实名要求", trigger: ["change","blur"] }],
@@ -426,13 +428,17 @@ export default {
             obj['useExpireDateRadio'] = '1'
           }else {
             let sss = JSON.parse(res.data.useExpireDate)
-            if(sss.type==2){
+            obj['useExpireDateRadio'] = sss.type
+            if(sss.type==1) {
+              obj['useExpireDateRadio'] = '1'
+            }else if(sss.type==2){
               obj['useExpireDateRadio'] = '2'
               obj['useExpireDateDay'] = sss.value
             }else if(sss.type==3) {
               obj['useExpireDateRadio'] = '3'
               obj['useExpireDateTime'] = sss.value.split('~')
             }
+            
           }
           if(res.data.goodsPerformRefundRule) {
             obj['backStatusDay'] = res.data.goodsPerformRefundRule.days
@@ -459,21 +465,25 @@ export default {
           }else {
             obj['areaRadio'] = "-1"
           }
-
+          this.radioInput('dayType',obj.dayTypeRadio)
+          this.radioInputs(obj.useExpireDateRadio)
+          this.radioInputss(obj.backStatusRadio)
+          this.radioInputsss(obj.ageRadio)
+          this.radioInput('area',obj.areaRadio)
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {
           this.$message.error('获取详情失败!!!');
           this.formStatus = 2
           this.loading = false
-          this.open = false;
+          this.$set(this,'form',{})
         }
         this.loading = false
       } catch (error) {
         console.error('获取详情失败!!!!',error)
         this.formStatus = 2
         this.loading = false
-        this.open = false;
+        this.$set(this,'form',{})
       }
     },
     /**
@@ -512,7 +522,7 @@ export default {
      * @returns {any}
      */
      openAttraction(row) {
-      this.$modal.confirm(`是否确认${row.status == 1 ? '上架' : '下架'} ${row.goodsName}点位吗?`).then( () => {
+      this.$modal.confirm(`是否确认${row.status == 1 ? '上架' : '下架'} ${row.goodsName}吗?`).then( () => {
         return getTableDeatilsByIdApi(this.configUrl.updateStatusById,{
           id: row.goodsId,
           status: row.status == 1 ? 0 : 1
@@ -668,7 +678,21 @@ export default {
         this.rules.ageMin[0].required = true
         this.rules.ageMax[0].required = true
       }
-    }
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+        const ids = row.goodsId || this.ids;
+        this.$modal.confirm('是否确认删除数据项?').then( () => {
+          return delTableParamsApi(this.configUrl.delect,{
+            goodsId: ids
+          });
+        }).then(() => {
+          this.getTableListFun({performId:this.performId})
+          this.$modal.msgSuccess("删除成功");
+        }).catch((e) => {
+          console.error("删除失败====",e)
+        });
+      },
   },
 };
 </script>

+ 4 - 4
src/views/tourism/routeManagementAll/formBox/routeManagementForm.vue

@@ -388,10 +388,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },
@@ -411,10 +411,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },

+ 4 - 4
src/views/tourism/scenicAreaManagement/contentManagement/formBox/attractionInfoCultureForm.vue

@@ -282,10 +282,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },
@@ -305,10 +305,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },

+ 4 - 4
src/views/tourism/scenicAreaManagement/contentManagement/formBox/attractionInfoIntroduceForm.vue

@@ -328,10 +328,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },
@@ -351,10 +351,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },

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

@@ -305,10 +305,10 @@ export default {
       let typeList = ['png','jepg','jpg']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 1MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },

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

@@ -256,10 +256,10 @@ export default {
       let typeList = ['png','jepg','jpg']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 2MB!');
+        this.$message.error('上传图片图片大小不能超过 2MB!');
       }
       return isJPG && isLt2M;
     },

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

@@ -50,7 +50,7 @@
                 <i v-else class="el-icon-plus avatar-uploader-icon"></i>
               </el-upload>
             </div>
-            <span>建议上传xxx*xxx,支持jpg/png/gif,支持1MB大小以内的图片上传</span>
+            <span>建议上传120x100,支持jpg/png/gif,支持1MB大小以内的图片上传</span>
           </el-form-item>
           <div class="form-title"><span>内容详情</span></div>
           <el-form-item label-width="0" label="" prop="detail">
@@ -239,15 +239,15 @@ export default {
       
     },
     beforeAvatarUpload(file) {
-      const isLt2M = file.size / 1024 / 1024 < 2;
+      const isLt2M = file.size / 1024 / 1024 <= 1;
       let testmsg = file.name.substring(file.name.lastIndexOf('.')+1)
       let typeList = ['png','jepg','jpg']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 2MB!');
+        this.$message.error('上传图片图片大小不能超过 1MB!');
       }
       return isJPG && isLt2M;
     },

+ 4 - 4
src/views/tourism/scenicAreaManagement/contentManagement/suggestions.vue

@@ -4,10 +4,10 @@
       <!--用户数据-->
       <el-col :span="24" :xs="24">
         <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
-          <el-form-item label="用户称" prop="memberNickName">
+          <el-form-item label="用户称" prop="memberNickName">
             <el-input
               v-model="queryParams.memberNickName"
-              placeholder="请输入用户称"
+              placeholder="请输入用户称"
               clearable
               style="width: 240px"
               @keyup.enter.native="handleQuery"
@@ -33,7 +33,7 @@
         </el-row>
         <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
           <el-table-column type="index" label="编号" align="center"  />
-          <el-table-column label="用户称" align="center" key="memberNickName" prop="memberNickName" v-if="columns[0].visible" :show-overflow-tooltip="true" />
+          <el-table-column label="用户称" align="center" key="memberNickName" prop="memberNickName" v-if="columns[0].visible" :show-overflow-tooltip="true" />
           <el-table-column label="类型" align="center" key="type" prop="type" v-if="columns[1].visible" :show-overflow-tooltip="true">
             <template slot-scope="scope">
               <dict-tag :options="dict.type.tourism_suggestions_type" :value="scope.row.type"/>
@@ -104,7 +104,7 @@ export default {
       dateRange: [],
       // 控制列表是否显示
       columns: [
-        { key: 0, label: `用户称`, visible: true },
+        { key: 0, label: `用户称`, visible: true },
         { key: 2, label: `类型`, visible: true },
         { key: 3, label: `留言内容`, visible: true },
         { key: 4, label: `留言时间`, visible: true },

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

@@ -281,10 +281,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 2MB!');
+        this.$message.error('上传图片图片大小不能超过 2MB!');
       }
 
       let isSize = new Promise(function (resolve, reject) {
@@ -330,10 +330,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 2MB!');
+        this.$message.error('上传图片图片大小不能超过 2MB!');
       }
 
       let isSize = new Promise(function (resolve, reject) {

+ 63 - 41
src/views/tourism/scenicAreaManagement/navigationManagement/formBox/scenicGuideForm.vue

@@ -26,36 +26,54 @@
             </el-option>
           </el-select>
         </el-form-item>
-        <el-form-item label="点位图标">
-          <div
-          style="width: 120px;"
-          v-loading="actionUrlLoading"
-          element-loading-text="上传中..."
-          element-loading-spinner="el-icon-loading"
-          element-loading-background="rgba(0, 0, 0, 0.8)"
-          >
-            <el-upload
-              class="avatar-uploader"
-              :action="actionUrl"
-              :data="{
-                bucket: 'tourism'
-              }"
-              :show-file-list="false"
-              accept=".jpg, .png, jpeg"
-              :on-success="handleAvatarSuccess"
-              :on-progress="handleAvatarProgress"
-              :before-upload="beforeAvatarUpload"
-              :disabled="actionUrlLoading"
-              :on-error="handleAvatarError"
-              >
-              <img v-if="form.imgUrl" style="width: 100px;height: 100px;background-color: rgba(211,211,211,0.6);" :src="form.imgUrl" class="avatar">
-              <i v-else class="el-icon-plus avatar-uploader-icon"></i>
-            </el-upload>
-          </div>
-          <span>建议尺寸40*40,支持jpg,png,gif,支持1MB大小以内的图片上传</span>
+        <el-form-item label="营业时间:" prop="workTime">
+          <el-input style="width: 350px;" v-model="form.workTime" placeholder="请输入营业时间" />
         </el-form-item>
+        <el-form-item label="点位图片" prop="imgUrl">
+            <div style="display: flex;">
+              <div 
+              v-for="(item,index) in form.imgUrl" 
+              :key="index"
+              style="width: 100px; height: 100px;position: relative;border: 1px solid #999;border-radius: 5px;margin-right: 20px;">
+                <el-image 
+                  style="width: 100%; height: 100%"
+                  :src="item" 
+                  :preview-src-list="form.imgUrl">
+                </el-image>
+                <span @click="handleRemove(index)" style="position: absolute;top: -15px;right: -15px;color: red;font-size: 24px;z-index: 999;cursor: pointer;">
+                  <i class="el-icon-error"></i>
+                </span>
+              </div>
+              <div 
+              style="width: 100px; height: 100px;" 
+              v-if="!form.imgUrl||form.imgUrl.length<5"
+              v-loading="actionUrlLoading"
+              element-loading-text="上传中..."
+              element-loading-spinner="el-icon-loading"
+              element-loading-background="rgba(0, 0, 0, 0.8)"
+              >
+                <el-upload
+                  class="avatar-uploader"
+                  :action="actionUrl"
+                  :data="{
+                    bucket: 'tourism'
+                  }"
+                  :show-file-list="false"
+                  :before-upload="beforeAvatarUpload"
+                  :on-success="handleAvatarSuccess"
+                  :on-progress="handleAvatarProgress"
+                  :disabled="actionUrlLoading"
+                  :on-error="handleAvatarError"
+                  >
+                  <i class="el-icon-plus avatar-uploader-icon"></i>
+                </el-upload>
+              </div>
+              
+            </div>
+            <span>建议尺寸40*40,支持jpg,png,gif,支持1MB大小以内的图片上传</span>
+          </el-form-item>
         <el-form-item label="点位信息:">
-          <el-input style="width: 350px;" v-model="form.remark" type="textarea" placeholder="请输入点位信息" maxlength="200" show-word-limit />
+          <el-input :rows="4"  v-model="form.remark" type="textarea" placeholder="请输入点位信息" maxlength="500" show-word-limit />
         </el-form-item>
         <el-form-item label="地图定位:">
           <div style="display: flex;">
@@ -125,6 +143,7 @@ export default {
         longitude: [{ required: true, message: "请输入经度", trigger: ["change","blur"] }],
         latitude: [{ required: true, message: "请输入纬度", trigger: ["change","blur"] }],
         content: [{ required: true, message: "请输入开放状态", trigger: ["change","blur"] }],
+        workTime: [{ required: true, message: "请输入营业时间", trigger: ["change","blur"] }],
       },
       pointTypeList: [],// 景点产品关联
       //  上传文件
@@ -158,7 +177,7 @@ export default {
       }else if(model=='EDIT') { // 新增
         let obj = {
           ...row,
-          openDate: row.openDate?row.openDate.join('~') : null
+          imgUrl: row.imgUrl?row.imgUrl.split(','):[]
         }
         this.$set(this,'form',obj)
         this.formStatus = 1
@@ -189,7 +208,8 @@ export default {
         let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
         if(res.code == 200) {
           let obj = {
-            ...res.data
+            ...res.data,
+            imgUrl: res.data.imgUrl?res.data.imgUrl.split(','):[]
           }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
@@ -231,7 +251,8 @@ export default {
           if (this.model != 'ADD') {
             addTableApi(
               this.configUrl.edit,{
-                ...this.form
+                ...this.form,
+                imgUrl: this.form.imgUrl ? this.form.imgUrl.join(','):'',
               }).then(response => {
               this.$modal.msgSuccess("修改成功");
               this.loading = false
@@ -243,7 +264,8 @@ export default {
             })
           } else {
             addTableApi(this.configUrl.edit,{
-                ...this.form
+                ...this.form,
+                imgUrl: this.form.imgUrl ? this.form.imgUrl.join(','):'',
               }).then(response => {
               this.$modal.msgSuccess("新增成功");
               this.loading = false
@@ -295,16 +317,16 @@ export default {
       this.$set(this.form,'longitude',params.lng)
       this.$set(this.form,'latitude',params.lat)
     },
+    handleRemove(index) {
+      this.form.imgUrl.splice(index,1)
+    },
     /**  上传图片  */
-    handleAvatarSuccess(res, file) {
-      console.log("res, file",res, file)
+    handleAvatarSuccess(response, file, fileList) {
+      console.log("res, file",response, file, fileList)
       this.actionUrlLoading = false
-      if(res.code != 200) {
-        this.$set(this.form,'imgUrl',null) 
-      }else {
-        this.$set(this.form,'imgUrl',res.data.url) 
+      if(response.code == 200) {
+        this.form.imgUrl.push(response.data.url)
       }
-      
     },
     beforeAvatarUpload(file) {
       const isLt2M = file.size / 1024 / 1024 <= 1;
@@ -312,10 +334,10 @@ export default {
       let typeList = ['png','jepg','jpg','gif']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 2MB!');
+        this.$message.error('上传图片图片大小不能超过 2MB!');
       }
 
       let isSize = new Promise(function (resolve, reject) {

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

@@ -264,10 +264,10 @@ export default {
       let typeList = ['png','jepg','jpg']
       const isJPG = typeList.includes(testmsg);
       if (!isJPG) {
-        this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
+        this.$message.error(`上传图片图片只能是 ${typeList} 格式!`);
       }
       if (!isLt2M) {
-        this.$message.error('上传头像图片大小不能超过 2MB!');
+        this.$message.error('上传图片图片大小不能超过 2MB!');
       }
       return isJPG && isLt2M;
     },