|
@@ -0,0 +1,535 @@
|
|
|
+<template>
|
|
|
+ <el-dialog
|
|
|
+ :title="title"
|
|
|
+ :visible.sync="open"
|
|
|
+ width="70%"
|
|
|
+ append-to-body
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ @close="cancel"
|
|
|
+ >
|
|
|
+ <div class="form-dialog-box"
|
|
|
+ v-loading="loading"
|
|
|
+ :element-loading-text="loadingText"
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0)">
|
|
|
+ <div
|
|
|
+ v-loading="loading"
|
|
|
+ :element-loading-text="''"
|
|
|
+ element-loading-spinner="''"
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
+ >
|
|
|
+ <el-tabs v-model="activeName" @tab-click="handleClick">
|
|
|
+ <el-tab-pane label="模板配置:" name="first"></el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ <div style="display: flex;">
|
|
|
+ <div></div>
|
|
|
+ <div>
|
|
|
+ <el-form :model="form" ref="form" :rules="rules" label-width="120px">
|
|
|
+ <div>
|
|
|
+ <el-form-item label="模板名称:" prop="activityName">
|
|
|
+ <el-input style="width: 350px;" v-model="form.activityName" placeholder="请输入模板名称" maxlength="50" show-word-limit />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="页面路径:" prop="activityName">
|
|
|
+ <el-input style="width: 350px;" v-model="form.activityName" placeholder="请输入页面路径" maxlength="50" show-word-limit />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="背景图1" prop="image">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <div
|
|
|
+ v-for="(item,index) in form.image"
|
|
|
+ :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.image">
|
|
|
+ </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.image||form.image.length<1"
|
|
|
+ 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>建议尺寸375px X 392px,支持jpg/png/gif,支持1MB大小以内的图片上传</span>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="背景图1" prop="image">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <div
|
|
|
+ v-for="(item,index) in form.image"
|
|
|
+ :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.image">
|
|
|
+ </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.image||form.image.length<1"
|
|
|
+ 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>建议尺寸375px X 392px,支持jpg/png/gif,支持1MB大小以内的图片上传</span>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="产品区域背景色值:" prop="eventTime">
|
|
|
+ <el-color-picker v-model="form.productBg"></el-color-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </div>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <span slot="footer" class="dialog-footer" v-if="formStatus==1">
|
|
|
+ <el-button @click="cancel">取消</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="submitForm"
|
|
|
+ :loading="loading"
|
|
|
+ element-loading-text="提交中..."
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
+ >
|
|
|
+ {{ loading ? '提交中...' : '保存' }}
|
|
|
+ </el-button>
|
|
|
+ </span>
|
|
|
+ <!-- 添加或修改对话框 End -->
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import {
|
|
|
+ getTableDeatilsByIdApi,
|
|
|
+ updateTableApi,
|
|
|
+ addTableApi,
|
|
|
+ listTableApi,
|
|
|
+ } from '@/api/CURD'
|
|
|
+import selectCouponManagement from '../model/selectCouponManagement.vue'
|
|
|
+import selectTicketOrders from "../model/selectTicketOrders.vue"
|
|
|
+export default {
|
|
|
+ name: "addAndEdit",
|
|
|
+ components: {selectCouponManagement,selectTicketOrders},
|
|
|
+ dicts: ['tourism_couponManagement_type','tourism_couponManagement_useUserType','tourism_couponManagement_receiveType','tourism_couponManagement_useConfig','goods_type'],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ title: "",
|
|
|
+ model: "", // EDIT: 编辑模式 ADD : 新增模式 EDITInit : 编辑模式(需要请求详情)
|
|
|
+ open: false,
|
|
|
+ loading: false,
|
|
|
+ loadingText: "拼命加载数据中...",
|
|
|
+ formStatus: null, // 0/null : 加载中 1 : 获取详情成功 2 : 获取详情失败
|
|
|
+ configUrl: {
|
|
|
+ list: '/merchant/merchantTemplate/pageList', // 列表地址
|
|
|
+ add: '/merchant/merchantTemplate/insertOrUpdate', // 新增地址
|
|
|
+ details: '/merchant/merchantTemplate/selectById', // 详情地址
|
|
|
+ edit: '/merchant/merchantTemplate/insertOrUpdate', // 编辑地址
|
|
|
+ },
|
|
|
+ form: {
|
|
|
+ id: undefined,
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ activityName: [{ required: true, message: "请输入活动名称", trigger: ["change","blur"] }],
|
|
|
+ image: [{ required: true, message: "请上传封面", trigger: ["change","blur"] }],
|
|
|
+ eventTime: [{ required: true, message: "请选择活动起止时间", trigger: ["change","blur"] }],
|
|
|
+ jsonObj: [{ required: true, message: "请选择模板", trigger: ["change","blur"] }],
|
|
|
+ useUserRelid_2: [{ required: true, message: "请选择优惠券", trigger: ["change","blur"] }],
|
|
|
+ useUserRelid_3: [{ required: true, message: "请选择景区门票", trigger: ["change","blur"] }],
|
|
|
+ },
|
|
|
+
|
|
|
+ activeName: 'first',
|
|
|
+
|
|
|
+ actionUrl: process.env.VUE_APP_BASE_API + process.env.VUE_APP_UPLOAD_IMAGE,
|
|
|
+ actionUrlLoading: false,
|
|
|
+
|
|
|
+ jsonObjList: []
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async initData(title , model,row){
|
|
|
+ this.title = title
|
|
|
+ this.activeName = 'first'
|
|
|
+ this.open = true
|
|
|
+ this.loadingText = "拼命加载数据中..."
|
|
|
+ this.loading = true
|
|
|
+ this.model = model
|
|
|
+ this.formStatus = 0
|
|
|
+ this.getJsonObjList()
|
|
|
+ if(model=='ADD') { // 新增
|
|
|
+ this.$set(this,'form',{
|
|
|
+ ...row,
|
|
|
+ eventTime: [], // 活动时间段
|
|
|
+ image: [],
|
|
|
+ useUserRelid_2: [],
|
|
|
+ useUserRelid_3: [],
|
|
|
+ })
|
|
|
+ this.formStatus = 1
|
|
|
+ }else if(model=='EDIT') { // 新增
|
|
|
+ let obj = {
|
|
|
+ ...row,
|
|
|
+ image: row.image?row.image.split(','):[],
|
|
|
+ }
|
|
|
+ this.$set(this,'form',{
|
|
|
+ memberId: row.id
|
|
|
+ })
|
|
|
+ this.formStatus = 1
|
|
|
+ }else if(model=='EDITInit') { // 新增
|
|
|
+ await this.getTableDeatilsFun(row)
|
|
|
+ }
|
|
|
+ this.loading = false
|
|
|
+ this.radioInputs(this.form.useType)
|
|
|
+ this.radioInput(this.form.receiveType)
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ if(this.$refs["form"]) {
|
|
|
+ this.$refs["form"].clearValidate();
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 获取详情 */
|
|
|
+ async getTableDeatilsFun(row) {
|
|
|
+ const id = row.id
|
|
|
+ this.loading = true
|
|
|
+ try {
|
|
|
+ let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
|
|
|
+ if(res.code == 200) {
|
|
|
+ let obj = {
|
|
|
+ ...res.data,
|
|
|
+ eventTime: [res.data.startDate,res.data.endDate], // 发放时间段
|
|
|
+ image: res.data.image?res.data.image.split(','):[],
|
|
|
+ useUserRelid_3: [],
|
|
|
+ useUserRelid_2: []
|
|
|
+ }
|
|
|
+ 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.loading = false
|
|
|
+ } catch (error) {
|
|
|
+ console.error('获取详情失败!!!!',error)
|
|
|
+ this.formStatus = 2
|
|
|
+ this.loading = false
|
|
|
+ this.open = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /** 查询模板列表 */
|
|
|
+ async getJsonObjList() {
|
|
|
+ try {
|
|
|
+ let res = await listTableApi(this.configUrl.list,{
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 999
|
|
|
+ })
|
|
|
+ if(res.code == 200) {
|
|
|
+ this.jsonObjList = res.data.rows;
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ this.loading = false
|
|
|
+ this.open = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 保存
|
|
|
+ * @date 2023-11-22
|
|
|
+ * @returns {any}
|
|
|
+ */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate((valid ,object)=> {
|
|
|
+ if (valid) {
|
|
|
+ this.loadingText = "提交数据中..."
|
|
|
+ this.loading = true
|
|
|
+ let param = JSON.parse(JSON.stringify(this.form))
|
|
|
+ param['startDate'] = param.eventTime[0]
|
|
|
+ param['endDate'] = param.eventTime[1]
|
|
|
+
|
|
|
+ delete param.eventTime
|
|
|
+ delete param.useUserRelid_2
|
|
|
+ delete param.useUserRelid_3
|
|
|
+ if (this.model != 'ADD') {
|
|
|
+ addTableApi(
|
|
|
+ this.configUrl.edit,{
|
|
|
+ ...param,
|
|
|
+ image: param.image ? param.image.join(','):'',
|
|
|
+ }).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.loading = false
|
|
|
+ this.open = false;
|
|
|
+ this.$emit('refresh')
|
|
|
+ }).catch(()=>{
|
|
|
+ this.$message.error("修改失败!!!");
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ addTableApi(this.configUrl.edit,{
|
|
|
+ ...param,
|
|
|
+ image: param.image ? param.image.join(','):'',
|
|
|
+ }).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.loading = false
|
|
|
+ this.open = false;
|
|
|
+ this.$emit('refresh')
|
|
|
+ }).catch(()=>{
|
|
|
+ this.$message.error("新增失败!!!");
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ console.log("fsdfsd===",valid,object)
|
|
|
+ if(object&&JSON.stringify(object)!='{}') {
|
|
|
+ let srt = ''
|
|
|
+ for(let key in object) {
|
|
|
+ if(object.hasOwnProperty(key)) {
|
|
|
+ srt = srt + `[${object[key][0].message}],`
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.$message.error(srt);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 重置
|
|
|
+ * @date 2023-11-22
|
|
|
+ * @returns {any}
|
|
|
+ */
|
|
|
+ reset() {
|
|
|
+ if(this.$refs["form"]) {
|
|
|
+ this.$refs["form"].clearValidate();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 关闭弹框
|
|
|
+ * @date 2023-11-22
|
|
|
+ * @returns {any}
|
|
|
+ */
|
|
|
+ cancel() {
|
|
|
+ this.reset();
|
|
|
+ this.open = false;
|
|
|
+ },
|
|
|
+ /** 点击tab */
|
|
|
+ handleClick() {
|
|
|
+
|
|
|
+ },
|
|
|
+ /** 上传图片 单张 */
|
|
|
+ handleAvatarSuccess(response, file, fileList) {
|
|
|
+ console.log("res, file",response, file, fileList)
|
|
|
+ this.actionUrlLoading = false
|
|
|
+ if(response.code == 200) {
|
|
|
+ this.form.imag.push(response.data.url)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ beforeAvatarUpload(file) {
|
|
|
+ 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} 格式!`);
|
|
|
+ }
|
|
|
+ if (!isLt2M) {
|
|
|
+ this.$message.error('上传图片图片大小不能超过 1MB!');
|
|
|
+ }
|
|
|
+ return isJPG && isLt2M;
|
|
|
+ },
|
|
|
+ handleAvatarProgress(){
|
|
|
+ this.actionUrlLoading = true
|
|
|
+ },
|
|
|
+ handleAvatarError() {
|
|
|
+ this.actionUrlLoading = false
|
|
|
+ },
|
|
|
+ handleRemove(index) {
|
|
|
+ this.form.imag.splice(index,1)
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.form-dialog-box {
|
|
|
+ padding: 0 30px;
|
|
|
+ padding: 0 30px;
|
|
|
+ min-height: 50vh;
|
|
|
+ max-height: 65vh;
|
|
|
+ overflow-y: auto;
|
|
|
+ >div {
|
|
|
+ width: 100%;
|
|
|
+ min-height: 50vh;
|
|
|
+ }
|
|
|
+ .form-title {
|
|
|
+ padding: 0 0 10px 0;
|
|
|
+ span {
|
|
|
+ display: flex;
|
|
|
+ color: rgba(65,80,88,1);
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: SourceHanSansSC;
|
|
|
+ font-weight: 700;
|
|
|
+ line-height: 23px;
|
|
|
+ border-left: 4px solid rgb(22, 132, 252);
|
|
|
+ padding-left: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ ::v-deep .ql-editor {
|
|
|
+ height: 400px;
|
|
|
+ }
|
|
|
+ .upload-btn {
|
|
|
+ width: 100px;
|
|
|
+ height: 100px;
|
|
|
+ background-color: #fbfdff;
|
|
|
+ border: dashed 1px #c0ccda;
|
|
|
+ border-radius: 5px;
|
|
|
+ i {
|
|
|
+ font-size: 30px;
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ &-text {
|
|
|
+ margin-top: -10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .avatar {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-table{
|
|
|
+ .upload-btn {
|
|
|
+ width: 100px;
|
|
|
+ height: 100px;
|
|
|
+ background-color: #fbfdff;
|
|
|
+ border: dashed 1px #c0ccda;
|
|
|
+ border-radius: 5px;
|
|
|
+ i {
|
|
|
+ font-size: 30px;
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ &-text {
|
|
|
+ margin-top: -10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .avatar {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.area-container {
|
|
|
+ min-height: 400px;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .area-wrap-city.el-cascader {
|
|
|
+ line-height: normal;
|
|
|
+ .el-input {
|
|
|
+ cursor: pointer;
|
|
|
+ width: 100% !important;
|
|
|
+ height: 28px !important;
|
|
|
+ .el-input__inner {
|
|
|
+ display: none !important;
|
|
|
+ }
|
|
|
+ span.el-input__suffix {
|
|
|
+ position: inherit !important;
|
|
|
+ i.el-input__icon {
|
|
|
+ line-height: inherit;
|
|
|
+ margin-left: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-input__wrapper {
|
|
|
+ box-shadow: none;
|
|
|
+ input {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-cascader__tags {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.area-city-popper {
|
|
|
+ .el-cascader-panel {
|
|
|
+ .el-scrollbar.el-cascader-menu {
|
|
|
+ .el-cascader-menu__wrap.el-scrollbar__wrap {
|
|
|
+ height: 315px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .avatar-uploader .el-upload {
|
|
|
+ border: 1px dashed #d9d9d9;
|
|
|
+ border-radius: 6px;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ ::v-deep .avatar-uploader .el-upload:hover {
|
|
|
+ border-color: #409EFF;
|
|
|
+ }
|
|
|
+ ::v-deep .avatar-uploader-icon {
|
|
|
+ font-size: 28px;
|
|
|
+ color: #8c939d;
|
|
|
+ width: 100px;
|
|
|
+ height: 100px;
|
|
|
+ line-height: 100px;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ ::v-deep .avatar {
|
|
|
+ width: 100px;
|
|
|
+ height: 100px;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+<style>
|
|
|
+.custom-class-box {
|
|
|
+ z-index: 999999 !important;
|
|
|
+}
|
|
|
+</style>
|