index.vue 10.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<template>
  <div class="custom-page height100">
    <el-card class="height100">
      <!-- <div class="page-title">app界面自定义</div> -->
      <div class="page-content">
        <div class="page-tip">
          <span class="tip-title">页面说明:</span>
          <span>可更换app目录界面及运行界面的背景图,可新增背景图,可预览背景图</span>
        </div>
        <div class="top-content">
          <div class="content-title">
            <div class="title">app目录界面设置</div>
            <div class="btn-group">
qzhxx's avatar
qzhxx committed
14 15 16 17 18 19 20
              <el-upload
                action="http://192.168.110.67/mall/file/image/upload"
                :on-success="uploadPageImg"
                :file-list="dirList"
              >
                <el-button type="default">上传背景图</el-button>
              </el-upload>
21 22
            </div>
          </div>
qzhxx's avatar
qzhxx committed
23 24 25 26 27 28 29
          <div class="swiper-content top">
            <swiper class="swiper" data-title="page" :options="swiperOption">
              <swiper-slide v-for="(item, index) in pageList" :key="index">
                <div class="swiper-item">
                  <el-radio v-model="radioPage" :label="item.id"></el-radio>
                  <img :src="item.appDirPic" alt />
                </div>
30
              </swiper-slide>
qzhxx's avatar
qzhxx committed
31 32
              <div class="swiper-button-prev" slot="button-prev">
                <i class="iconfont icon-arrow-left"></i>
33
              </div>
qzhxx's avatar
qzhxx committed
34 35
              <div class="swiper-button-next" slot="button-next">
                <i class="iconfont icon-arrow-right"></i>
36 37
              </div>
            </swiper>
qzhxx's avatar
qzhxx committed
38
          </div>
39 40 41 42 43
        </div>
        <div class="down-content">
          <div class="content-title">
            <div class="title">app运行画面设置</div>
            <div class="btn-group">
qzhxx's avatar
qzhxx committed
44 45 46 47 48 49
              <el-upload
                action="http://192.168.110.67/mall/file/image/upload"
                :on-success="uploadRunImg"
                :file-list="fileRunList">
                <el-button type="default">上传背景图</el-button>
              </el-upload>
50 51
            </div>
          </div>
qzhxx's avatar
qzhxx committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
          <div class="swiper-content bottom">
            <swiper class="swiper" :options="swiperOption">
              <swiper-slide v-for="(item, index) in runList" :key="index">
                <div class="swiper-item">
                  <el-radio v-model="radioRun" :label="item.id"></el-radio>
                  <img :src="item.url" alt />
                </div>
              </swiper-slide>
              <div class="swiper-button-prev" slot="button-prev">
                <i class="iconfont icon-arrow-left"></i>
              </div>
              <div class="swiper-button-next" slot="button-next">
                <i class="iconfont icon-arrow-right"></i>
              </div>
            </swiper>
          </div>
68 69 70 71 72 73 74 75 76 77
        </div>
      </div>
      <div class="btn-group footer-btn">
        <el-button size="mini" @click="close">取 消</el-button>
        <el-button size="mini" type="primary" @click="submitForm('editform')">确定</el-button>
      </div>
    </el-card>
  </div>
</template>
<script>
qzhxx's avatar
qzhxx committed
78 79 80
import { Swiper, SwiperSlide } from "vue-awesome-swiper";
import "swiper/css/swiper.css";
var vm = {};
81
export default {
qzhxx's avatar
qzhxx committed
82
  components: { Swiper, SwiperSlide },
83 84
  data() {
    return {
qzhxx's avatar
qzhxx committed
85 86 87 88
      radioPage: '',
      radioRun: '',
      dirList:[],
      fileRunList:[],
89
      swiperOption: {
qzhxx's avatar
qzhxx committed
90 91 92
        slideToClickedSlide: true, //点击后居中展示
        slidesPerView: 5,
        spaceBetween: 30,
93
        centeredSlides: true,
qzhxx's avatar
qzhxx committed
94 95 96 97 98 99 100
        observer: true, // 动态检查器,自动初始化swiper,默认为false
        observerParents: true,
        // centerInsufficientSlides: true, //不够5个时居中显示
        // loop: true, // 不能同上一个属性同用
        navigation: {
          nextEl: ".swiper-button-next",
          prevEl: ".swiper-button-prev"
101
        },
qzhxx's avatar
qzhxx committed
102 103 104 105 106 107 108 109 110 111 112 113
        on: {
          click: function() {
            console.log(vm)
            if (this.$el[0].parentNode.className.indexOf("top") > 0) {
              vm.radioPage = this.realIndex;
              // vm.radioPage = vm.pageList[this.realIndex].id;
            }
            if (this.$el[0].parentNode.className.indexOf("bottom") > 0) {
              vm.radioRun = this.realIndex;
              // vm.radioRun = vm.runList[this.realIndex].id;
            }
          }
114
        }
qzhxx's avatar
qzhxx committed
115 116 117 118
      },
      pagefileList: [],
      pageList: [],
      runList: []
119 120
    };
  },
qzhxx's avatar
qzhxx committed
121 122 123 124 125
  created() {},
  mounted() {
    this.getDirPicList();
    this.getAppRunList();
  },
126
  methods: {
qzhxx's avatar
qzhxx committed
127 128 129 130 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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 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
    // 查询目录列表
    getDirPicList() {
      let _this = this;
      _this.$https({
        url: "tAppDirPic/getList",
        method: "get",
        authType: this.backToken
      })
        .then(res => {
          if (res.data.resultCode === "200") {
            _this.pageList = res.data.data;
            _this.pageList.forEach(item => {
              if (item.isCurrent) {
                this.radioPage = item.id;
              }
            });
          } else {
            this.$message({ type: "error", message: res.data.message });
          }
        })
        .catch(function(err) {
          console.log(err);
        });
    },
    // 查询运行列表
    getAppRunList() {
      let _this = this;
      _this.$https({
        url: "tAppRunPic/getList",
        method: "get",
        authType: this.backToken
      })
        .then(res => {
          if (res.data.resultCode === "200") {
            _this.runList = res.data.data;
            _this.runList.forEach(item => {
              if (item.isCurrent) {
                this.radioRun = item.id;
              }
            });
          } else {
            this.$message({ type: "error", message: res.data.message });
          }
        })
        .catch(function(err) {
          console.log(err);
        });
    },
    uploadPageImg(res, file) {
      this.saveItem(res.url,'tAppDirPic/save')
    },
    uploadRunImg(res, file) {
      this.saveItem(res.url,'tAppRunPic/save')
    },
    saveItem(pic,url){
      let _this = this;
      let param = {
        appDirPic: pic,
        isCurrent: 1
      };
      _this.$https(
          {
            url: url,
            method: "post",
            authType: this.backToken
          },
          _this.$qs.stringify(param)
        )
        .then(
          res => {
            if (res.data.resultCode === "200") {
              _this.$message({
                type: "success",
                message: res.data.message
              });
              this.getDirPicList()
              this.getAppRunList()
            } else {
              _this.$message({
                type: "error",
                message: res.data.message
              });
            }
          },
          error => {
            _this.$message({
              type: "error",
              message: error
            });
          }
        );
    },
    submitForm() {
      // 修改当前项
      this.updateCurrent(this.pageList[vm.radioPage].id,'tAppDirPic/update')
      this.updateCurrent(this.runList[vm.radioRun].id,'tAppRunPic/update')
    },
    updateCurrent(id,url){
      let vm = this;
      let param = {
        id: id,
        isCurrent:1
      };
      vm.$https(
        {
          url: url,
          method: "put",
          authType: this.backToken
        },
        vm.$qs.stringify(param)
      )
        .then(res => {
          if(res.data.resultCode==='200'){
            this.$message.success("操作成功")
            this.getDirPicList();
            this.getAppRunList();
          }else{
            this.$message({type:'error',message:res.data.message})
          }
        })
        .catch(function(err) {
          console.log(err);
        });
    },
    close() {
      this.$router.go(-1);
    }
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
  }
};
</script>
<style lang="less" scoped>
.custom-page {
  position: relative;
  .page-title {
    font-size: 20px;
    color: #333333;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .page-tip {
    background: #f7f5f2;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #333333;
    .tip-title {
      font-weight: 700;
      margin-right: 5px;
    }
  }
  .page-content {
    width: 800px;
    margin: 0 auto;
    .content-title {
      display: flex;
      justify-content: space-between;
      padding: 20px;
      .title {
        position: relative;
        font-size: 18px;
        color: #333333;
        &::before {
          content: "";
          position: absolute;
          top: 6px;
          left: -20px;
          width: 4px;
          height: 18px;
          background: #000;
        }
      }
      .el-button {
        padding: 0 20px;
      }
    }
qzhxx's avatar
qzhxx committed
304 305 306 307 308 309 310
    .swiper-content {
      .swiper-item {
        position: relative;
        width: 100%;
        height: 128px;
        background-color: #99a9bf;
        border-radius: 10px;
311

qzhxx's avatar
qzhxx committed
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
        /deep/.el-radio {
          position: absolute;
          right: 12px;
          top: 12px;
          .el-radio__label {
            display: none;
          }
          .el-radio__inner {
            width: 24px;
            height: 24px;
          }
          .el-radio__input.is-checked .el-radio__inner {
            border-color: #ac9374;
            background: #ac9374;
          }
          .el-radio__inner:hover {
            border-color: #ac9374;
          }
        }
        img {
          width: 100%;
          height: 100%;
        }
      }
      .swiper-button-next {
        right: 0;
      }
      .swiper-button-prev {
        left: 0;
      }
      .swiper-button-prev,
      .swiper-button-next {
        background: #ac9374;
        width: 36px;
        height: 36px;
        border-radius: 50%;
      }
      .swiper-button-next:after,
      .swiper-button-prev:after {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
      }
      .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        transition: 300ms;
        transform: scale(0.8);
      }
      .swiper-slide-active,
      .swiper-slide-duplicate-active {
        transform: scale(1);
      }
378 379
    }
  }
qzhxx's avatar
qzhxx committed
380 381 382
  /deep/.el-upload-list {
    display: none;
  }
383 384 385 386 387 388 389 390 391 392 393 394 395 396
  .footer-btn {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    .el-button {
      padding: 0 20px;
    }
  }
}
</style>