luobisheng
2022-11-29 c388c01d839bf21d03646311c4d6542eda51f792
短信模板修改
4个文件已修改
21 ■■■■■ 已修改文件
src/views/intelligentPatrol/trendAnalysis/index.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/fivepack/threepack/components/updateUser/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/images/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/video/updateInterface/index.vue 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/intelligentPatrol/trendAnalysis/index.vue
@@ -7,12 +7,13 @@
        <span class="trend-title">趋势分析</span>
        <el-form ref="form" :model="search" label-width="6vw">
          <el-form-item label="类型查询">
            <el-select v-model="search.type" placeholder="内容信息">
            <el-select v-model="search.type" @change="searchList" placeholder="内容信息">
              <el-option v-for="option in categoryOptions" :key="option.value" :value="option.value" :label="option.label" ></el-option>
            </el-select>
          </el-form-item>
          <el-form-item class="time-area" label="时间范围">
            <el-date-picker v-model="search.timeRange" type="datetimerange" value-format="yyyy-MM-dd HH:mm:ss">
            <el-date-picker @change="searchList" start-placeholder="开始时间" end-placeholder="结束时间" v-model="search.timeRange"
                            type="datetimerange" value-format="yyyy-MM-dd HH:mm:ss">
            </el-date-picker>
          </el-form-item>
        </el-form>
@@ -106,6 +107,7 @@
      this.trendAnalysisList = this.highFlag ? await basecase.getTrendAnalysisData(trendAnalysisParam)
          : await basecase.getFirstTrendAnalysisData(trendAnalysisParam);
    },
    tabChange(params) {
      this.highFlag = params === 1;
      this.searchList();
src/views/operate/fivepack/threepack/components/updateUser/index.vue
@@ -222,7 +222,6 @@
    onSubmit() {
      this.$refs.store.validate((valid) => {
        if (valid) {
          debugger;
          this.store.type = this.store.type[1];
          if (this.isCreated()) {
            addStoreInfo(this.store)
src/views/operate/images/index.vue
@@ -270,9 +270,9 @@
        },
        // 更改违规/违建
        changeTypeChecked(idx) {
            this.typeList.forEach((item, index) => {
                item.checked = index === idx;
            })
            this.typeList.forEach(item => {
                item.checked = item.value === idx;
            });
            this.mystatus = idx + 1;
            this.size = idx;
            this.getImageResourceList();
src/views/operate/video/updateInterface/index.vue
@@ -22,7 +22,9 @@
        <el-input v-model="videoData.id"></el-input>
      </el-form-item>
      <el-form-item prop="url" label="视频" min-width="8">
        <video controls v-if="videoList" :src="videoData.url" width="300px" height="200px" />
        <template v-if="videoList">
          <video controls v-for="video in videoList" :src="video" :key="video" width="300px" height="200px" />
        </template>
        <el-upload
            v-if="isUpdate"
            class="avatar-uploader"
@@ -31,7 +33,7 @@
            :show-file-list="false"
            :auto-upload="true"
            :http-request="videoUpload">
          <i class="el-icon-plus avatar-uploader-icon"></i>
            <el-button size="small" type="primary">上传视频<i class="el-icon-upload el-icon--right"></i></el-button>
        </el-upload>
      </el-form-item>
        <el-button v-if="!isDisabled" class="submit-button" type="primary" @click.native.prevent="onSubmit">提交</el-button>
@@ -73,7 +75,7 @@
        type: [{ required: true, trigger: ['blur', 'change'], message: '请选择类型' }]
      },
      isDisabled: false,
      videoList: []
      videoList: null
    }
  },