index.vue 13.8 KB
Newer Older
wanglianghe's avatar
wanglianghe committed
1 2 3 4 5
<template>
  <div class="app-container">

    <!-- 搜索工作栏 -->
    <!-- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
6 7
      <el-form-item :label="$t('中文标题')" prop="titleZh">
        <el-input v-model="queryParams.titleZh" :placeholder="$t('请输入中文标题')" clearable @keyup.enter.native="handleQuery"/>
wanglianghe's avatar
wanglianghe committed
8
      </el-form-item>
9 10
      <el-form-item :label="$t('英文标题')" prop="titleEn">
        <el-input v-model="queryParams.titleEn" :placeholder="$t('请输入英文标题')" clearable @keyup.enter.native="handleQuery"/>
wanglianghe's avatar
wanglianghe committed
11
      </el-form-item>
12 13
      <el-form-item :label="$t('中文内容')" prop="contentZh">
        <el-input v-model="queryParams.contentZh" :placeholder="$t('请输入中文内容')" clearable @keyup.enter.native="handleQuery"/>
wanglianghe's avatar
wanglianghe committed
14
      </el-form-item>
15 16
      <el-form-item :label="$t('英文内容')" prop="contentEn">
        <el-input v-model="queryParams.contentEn" :placeholder="$t('请输入英文内容')" clearable @keyup.enter.native="handleQuery"/>
wanglianghe's avatar
wanglianghe committed
17 18 19 20 21 22 23 24 25
      </el-form-item>
      <el-form-item label="图片地址WEB" prop="bannerUrlWeb">
        <el-input v-model="queryParams.bannerUrlWeb" placeholder="请输入图片地址WEB" clearable @keyup.enter.native="handleQuery"/>
      </el-form-item>
      <el-form-item label="图片地址APP" prop="bannerUrlApp">
        <el-input v-model="queryParams.bannerUrlApp" placeholder="请输入图片地址APP" clearable @keyup.enter.native="handleQuery"/>
      </el-form-item>
      <el-form-item label="0显示 1不显示" prop="status">
        <el-select v-model="queryParams.status" placeholder="请选择0显示 1不显示" clearable size="small">
26
          <el-option :label="$t('请选择字典生成')" value="" />
wanglianghe's avatar
wanglianghe committed
27 28
        </el-select>
      </el-form-item>
29
      <el-form-item :label="$t('创建时间')">
wanglianghe's avatar
wanglianghe committed
30
        <el-date-picker v-model="dateRangeCreateTime" style="width: 240px" value-format="yyyy-MM-dd"
31
                        type="daterange" range-separator="-" start-:placeholder="$t('开始日期')" end-:placeholder="$t('结束日期')" />
wanglianghe's avatar
wanglianghe committed
32 33
      </el-form-item>
      <el-form-item>
34 35
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">{{$t('搜索')}}</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">{{$t('重置')}}</el-button>
wanglianghe's avatar
wanglianghe committed
36 37 38 39 40 41 42
      </el-form-item>
    </el-form> -->

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
43
                   v-hasPermi="['ecw:banner:create']">{{$t('新增')}}</el-button>
wanglianghe's avatar
wanglianghe committed
44 45 46
      </el-col>
      <!-- <el-col :span="1.5">
        <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
47
                   v-hasPermi="['ecw:banner:export']">{{$t('导出')}}</el-button>
wanglianghe's avatar
wanglianghe committed
48 49 50 51 52 53 54
      </el-col> -->
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
    <el-table v-loading="loading" :data="list">
      <el-table-column label="" align="center" prop="id" />
55 56
      <el-table-column :label="$t('标题')" align="center" prop="titleZh" />
      <el-table-column :label="$t('WEB端图片')" align="center" prop="bannerUrlWeb">
wanglianghe's avatar
wanglianghe committed
57 58 59 60
        <template slot-scope="scope">
          <el-image :src="scope.row.bannerUrlWeb"></el-image>
        </template>
      </el-table-column>
61
      <el-table-column :label="$t('APP端图片')" align="center" prop="bannerUrlApp" >
wanglianghe's avatar
wanglianghe committed
62 63 64 65
          <template slot-scope="scope">
          <el-image :src="scope.row.bannerUrlApp"></el-image>
        </template>
      </el-table-column>
66
      <el-table-column :label="$t('状态')" align="center" prop="status">
wanglianghe's avatar
wanglianghe committed
67 68 69 70
        <template slot-scope="scope">
          <span>{{ statusName(scope.row.status) }}</span>
        </template>
      </el-table-column>
71
      <el-table-column :label="$t('创建时间')" align="center" prop="createTime" width="180">
wanglianghe's avatar
wanglianghe committed
72 73 74 75
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime) }}</span>
        </template>
      </el-table-column>
76
      <el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
wanglianghe's avatar
wanglianghe committed
77 78
        <template slot-scope="scope">
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
79
                     v-hasPermi="['ecw:banner:update']">{{$t('修改')}}</el-button>
wanglianghe's avatar
wanglianghe committed
80
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
81
                     v-hasPermi="['ecw:banner:delete']">{{$t('删除')}}</el-button>
wanglianghe's avatar
wanglianghe committed
82 83 84 85 86 87 88 89 90 91
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>

    <!-- 对话框(添加 / 修改) -->
    <el-dialog :title="title" :visible.sync="open" width="900px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="126px">
92 93
        <el-form-item :label="$t('中文标题')" prop="titleZh">
          <el-input v-model="form.titleZh" :placeholder="$t('请输入中文标题')" />
wanglianghe's avatar
wanglianghe committed
94
        </el-form-item>
95 96
        <el-form-item :label="$t('英文标题')" prop="titleEn">
          <el-input v-model="form.titleEn" :placeholder="$t('请输入英文标题')" />
wanglianghe's avatar
wanglianghe committed
97
        </el-form-item>
98
        <el-form-item :label="$t('中文内容')" prop="contentZh">
wanglianghe's avatar
wanglianghe committed
99 100
          <editor v-model="form.contentZh" :min-height="150"/>
        </el-form-item>
101
        <el-form-item :label="$t('英文内容')" prop="contentEn">
wanglianghe's avatar
wanglianghe committed
102 103
          <editor v-model="form.contentEn" :min-height="150"/>
        </el-form-item>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
104
        <el-form-item :label="$t('WEB端广告图片(建议尺寸长*宽')+'902*310)'" prop="bannerUrlWeb">
wanglianghe's avatar
wanglianghe committed
105
          <el-col :span="8">
106
            <el-input v-model="form.bannerUrlWeb" :placeholder="$t('请上传WEB端广告图片')" />
wanglianghe's avatar
wanglianghe committed
107
          </el-col>
108

wanglianghe's avatar
wanglianghe committed
109 110
          <el-upload action="#" :http-request="requestUpload" :show-file-list="false" :before-upload="beforeUploadWeb">
            <el-button size="small">
111
              {{$t('上传图片')}}
wanglianghe's avatar
wanglianghe committed
112 113 114 115
              <i class="el-icon-upload el-icon--right"></i>
            </el-button>
          </el-upload>
        </el-form-item>
houjn@hikoon.cn's avatar
houjn@hikoon.cn committed
116
        <el-form-item :label="$t('APP端广告图片(建议尺寸长*宽')+'688*294)'" prop="bannerUrlApp">
wanglianghe's avatar
wanglianghe committed
117
          <el-col :span="8">
118
            <el-input v-model="form.bannerUrlApp" :placeholder="$t('请上传APP端广告图片')" />
wanglianghe's avatar
wanglianghe committed
119 120 121
          </el-col>
         <el-upload action="#" :http-request="requestUpload" :show-file-list="false" :before-upload="beforeUploadApp">
            <el-button size="small">
122
              {{$t('上传图片')}}
wanglianghe's avatar
wanglianghe committed
123 124 125 126 127 128
              <i class="el-icon-upload el-icon--right"></i>
            </el-button>
          </el-upload>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
129 130
        <el-button type="primary" @click="submitForm">{{$t('确 定')}}</el-button>
        <el-button @click="cancel">{{$t('取 消')}}</el-button>
wanglianghe's avatar
wanglianghe committed
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
      </div>
    </el-dialog>
  </div>
</template>

<script>
import { createBanner, updateBanner, deleteBanner, getBanner, getBannerPage, exportBannerExcel } from "@/api/ecw/banner";
import Editor from '@/components/Editor';
import { uploadFile } from "@/api/infra/file";
import { getDictDatas, DICT_TYPE } from '@/utils/dict';
import {CommonStatusEnum} from '@/utils/constants'

export default {
  name: "Banner",
  components: {
    Editor,
  },
  data() {
    return {
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 广告设置列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      dateRangeCreateTime: [],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
        titleZh: null,
        titleEn: null,
        contentZh: null,
        contentEn: null,
        bannerUrlWeb: null,
        bannerUrlApp: null,
        status: null,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
181 182 183 184
        titleZh: [{ required: true, message: this.$t("中文标题不能为空"), trigger: "blur" }],
        titleEn: [{ required: true, message: this.$t("英文标题不能为空"), trigger: "blur" }],
        bannerUrlWeb: [{ required: true, message: this.$t("web端广告图片不能为空"), trigger: "blur" }],
        bannerUrlApp: [{ required: true, message: this.$t("app端广告图片不能为空"), trigger: "blur" }]
wanglianghe's avatar
wanglianghe committed
185 186 187 188 189 190 191 192 193 194 195 196 197

      },
      CommonStatusEnum: CommonStatusEnum,
      statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS),
    };
  },

  computed: {
    statusName() {
      return value => {
        for(let index in this.statusDictDatas) {
          let dictItem = this.statusDictDatas[index];
          if(dictItem.value == value) {
198
            return dictItem.value == CommonStatusEnum.ENABLE + '' ? this.$t('正常') : this.$t('禁用');
wanglianghe's avatar
wanglianghe committed
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
          }
        }
      }
    },
  },

  created() {
    this.getList();
  },
  methods: {
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
      let params = {...this.queryParams};
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行查询
      getBannerPage(params).then(response => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
    /** 取消按钮 */
    cancel() {
      this.open = false;
      this.reset();
    },
    /** 表单重置 */
    reset() {
      this.form = {
        id: undefined,
        titleZh: undefined,
        titleEn: undefined,
        contentZh: undefined,
        contentEn: undefined,
        bannerUrlWeb: undefined,
        bannerUrlApp: undefined,
        status: undefined,
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRangeCreateTime = [];
      this.resetForm("queryForm");
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
256
      this.title = this.$t("添加广告设置");
wanglianghe's avatar
wanglianghe committed
257 258 259 260 261 262 263 264
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id;
      getBanner(id).then(response => {
        this.form = response.data;
        this.open = true;
265
        this.title = this.$t("修改广告设置");
wanglianghe's avatar
wanglianghe committed
266 267 268 269 270 271 272 273 274 275 276
      });
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (!valid) {
          return;
        }
        // 修改的提交
        if (this.form.id != null) {
          updateBanner(this.form).then(response => {
277
            this.$modal.msgSuccess(this.$t("修改成功"));
wanglianghe's avatar
wanglianghe committed
278 279 280 281 282 283 284
            this.open = false;
            this.getList();
          });
          return;
        }
        // 添加的提交
        createBanner(this.form).then(response => {
285
          this.$modal.msgSuccess(this.$t("新增成功"));
wanglianghe's avatar
wanglianghe committed
286 287 288 289 290 291 292 293
          this.open = false;
          this.getList();
        });
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const id = row.id;
294
      this.$modal.confirm(this.$t('是否确认删除广告设置编号为"') + id + this.$t('"的数据项?')).then(function() {
wanglianghe's avatar
wanglianghe committed
295 296 297
          return deleteBanner(id);
        }).then(() => {
          this.getList();
298
          this.$modal.msgSuccess(this.$t("删除成功"));
wanglianghe's avatar
wanglianghe committed
299 300 301 302 303 304 305 306 307 308
        }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      // 处理查询参数
      let params = {...this.queryParams};
      params.pageNo = undefined;
      params.pageSize = undefined;
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行导出
309
      this.$modal.confirm(this.$t('是否确认导出所有广告设置数据项?')).then(() => {
wanglianghe's avatar
wanglianghe committed
310 311 312 313 314 315 316 317 318 319 320 321 322 323
          this.exportLoading = true;
          return exportBannerExcel(params);
        }).then(response => {
          this.$download.excel(response, '${table.classComment}.xls');
          this.exportLoading = false;
        }).catch(() => {});
    },

    // 覆盖默认的上传行为
    requestUpload() {
    },
    // 上传预处理
    beforeUploadWeb(file) {
      if (file.type.indexOf("image/") == -1) {
324
        this.$modal.msgError(this.$t("文件格式错误,请上传图片类型,如:JPG,PNG后缀的文件。"));
wanglianghe's avatar
wanglianghe committed
325 326 327 328
      } else {
        //上传
        let formData = new FormData();
        formData.append("file", file);
wanglianghe's avatar
wanglianghe committed
329
        // formData.append("path", this.uuid());
wanglianghe's avatar
wanglianghe committed
330 331 332 333 334 335 336 337 338 339
        uploadFile(formData).then(response => {
          this.$set(this.form, 'bannerUrlWeb', response.data);
          // this.form.img = response.data;
        })
      }
    },

    // 上传预处理
    beforeUploadApp(file) {
      if (file.type.indexOf("image/") == -1) {
340
        this.$modal.msgError(this.$t("文件格式错误,请上传图片类型,如:JPG,PNG后缀的文件。"));
wanglianghe's avatar
wanglianghe committed
341 342 343 344
      } else {
        //上传
        let formData = new FormData();
        formData.append("file", file);
wanglianghe's avatar
wanglianghe committed
345
        // formData.append("path", this.uuid());
wanglianghe's avatar
wanglianghe committed
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
        uploadFile(formData).then(response => {
          this.$set(this.form, 'bannerUrlApp', response.data);
          // this.form.img = response.data;
        })
      }
    },

    uuid() {
      var s = [];
      var hexDigits = "0123456789abcdef";
      for (var i = 0; i < 36; i++) {
          s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
      }
      s[14] = "4"; // bits 12-15 of the time_hi_and_version field to 0010
      s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1); // bits 6-7 of the clock_seq_hi_and_reserved to 01
      s[8] = s[13] = s[18] = s[23] = "-";

      var uuid = s.join("");
      return uuid;
    }
  }
};
</script>