|
@@ -0,0 +1,536 @@
|
|
|
|
|
+<template>
|
|
|
|
|
+ <div class="app-container">
|
|
|
|
|
+ <el-form v-show="showSearch" ref="queryForm" :inline="true" :model="queryParams" label-width="100px">
|
|
|
|
|
+ <el-form-item label="立减金券名称" prop="title">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.title"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ placeholder="立减金券名称"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="立减金面值" prop="couponPrice">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.couponPrice"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ placeholder="请输入立减金面值"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item v-if="queryParams.type==1" label="套餐分类" prop="packageCateIds">
|
|
|
|
|
+ <el-select v-model="queryParams.packageCateIds" clearable placeholder="请选择套餐分类" size="small">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="item in cateOptions"
|
|
|
|
|
+ :key="item.dictValue"
|
|
|
|
|
+ :label="item.dictLabel"
|
|
|
|
|
+ :value="item.dictValue"
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item label="创建时间">
|
|
|
|
|
+ <el-date-picker v-model="dateRange" end-placeholder="结束日期" range-separator="-" size="small" start-placeholder="开始日期"
|
|
|
|
|
+ style="width: 220px" type="daterange" value-format="yyyy-MM-dd"
|
|
|
|
|
+ ></el-date-picker>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item>
|
|
|
|
|
+ <el-button icon="el-icon-search" size="mini" type="cyan" @click="handleQuery">搜索</el-button>
|
|
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+
|
|
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-hasPermi="['store:storeCoupon:add']"
|
|
|
|
|
+ icon="el-icon-plus"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="handleAdd"
|
|
|
|
|
+ >新增
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-hasPermi="['store:storeCoupon:remove']"
|
|
|
|
|
+ :disabled="multiple"
|
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="danger"
|
|
|
|
|
+ @click="handleDelete"
|
|
|
|
|
+ >删除
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-hasPermi="['store:storeCoupon:batchPublish']"
|
|
|
|
|
+ :disabled="multiple"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="success"
|
|
|
|
|
+ @click="handleBatchPublish"
|
|
|
|
|
+ >批量发布
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+
|
|
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+
|
|
|
|
|
+ <el-table v-loading="loading" :data="storeCouponList" border height="500" @selection-change="handleSelectionChange">
|
|
|
|
|
+ <el-table-column align="center" type="selection" width="55"/>
|
|
|
|
|
+ <el-table-column align="center" label="优惠券表ID" prop="couponId"/>
|
|
|
|
|
+ <el-table-column align="center" label="优惠券名称" prop="title"/>
|
|
|
|
|
+ <el-table-column align="center" label="优惠券面值" prop="couponPrice"/>
|
|
|
|
|
+ <el-table-column align="center" label="用户购买金额" prop="payPrice"/>
|
|
|
|
|
+ <el-table-column align="center" label="排序" prop="sort"/>
|
|
|
|
|
+ <el-table-column align="center" label="类型" prop="type">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-tag prop="type">立减金</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column align="center" label="状态" prop="status">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-tag v-for="(item, index) in statusOptions" v-if="scope.row.status==item.dictValue" prop="status">
|
|
|
|
|
+ {{ item.dictLabel }}
|
|
|
|
|
+ </el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column align="center" label="创建时间" prop="createTime"/>
|
|
|
|
|
+ <el-table-column align="center" class-name="small-padding fixed-width" label="操作">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-if="scope.row.status==1"
|
|
|
|
|
+ v-hasPermi="['store:storeCoupon:publish']"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ @click="handlePublish(scope.row)"
|
|
|
|
|
+ >发布
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-hasPermi="['store:storeCoupon:edit']"
|
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
|
|
+ >修改
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-hasPermi="['store:storeCoupon:remove']"
|
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
|
|
+ >删除
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ </el-table>
|
|
|
|
|
+
|
|
|
|
|
+ <pagination
|
|
|
|
|
+ v-show="total>0"
|
|
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
|
|
+ :total="total"
|
|
|
|
|
+ @pagination="getList"
|
|
|
|
|
+ />
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 添加或修改优惠券对话框 -->
|
|
|
|
|
+ <el-dialog :title="title" :visible.sync="open" append-to-body width="600px">
|
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="150px">
|
|
|
|
|
+ <el-form-item label="立减金卷名称" prop="title">
|
|
|
|
|
+ <el-input v-model="form.title" placeholder="请输入立减金卷名称"/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="面值" prop="couponPrice">
|
|
|
|
|
+ <el-input-number v-model="form.couponPrice" :min="0" placeholder="请输入优惠券面值"/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="用户购买金额" prop="payPrice">
|
|
|
|
|
+ <el-input-number v-model="form.payPrice" :min="0" placeholder="支付金额"/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="排序" prop="sort">
|
|
|
|
|
+ <el-input-number v-model="form.sort" :min="0" placeholder="请输入排序"/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="状态">
|
|
|
|
|
+ <el-radio-group v-model="form.status">
|
|
|
|
|
+ <el-radio v-for="item in statusOptions" :label="item.dictValue">{{ item.dictLabel }}</el-radio>
|
|
|
|
|
+ </el-radio-group>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+ <el-dialog :title="publish.title" :visible.sync="publish.open" append-to-body width="500px">
|
|
|
|
|
+ <el-form ref="publishForm" :model="publishForm" :rules="publishRules" label-width="150px">
|
|
|
|
|
+ <el-form-item label="优惠券名称" prop="title">
|
|
|
|
|
+ <el-input v-model="publishForm.title" disabled/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="优惠券开始时间" prop="startTime">
|
|
|
|
|
+ <el-date-picker v-model="publishForm.startTime" clearable placeholder="选择开始时间"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ type="date"
|
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-date-picker>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="优惠券结束时间" prop="limitTime">
|
|
|
|
|
+ <el-date-picker v-model="publishForm.limitTime" clearable placeholder="选择结束时间"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ type="date"
|
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-date-picker>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="优惠券领取数量" prop="totalCount">
|
|
|
|
|
+ <el-input-number v-model="publishForm.totalCount" :min="0" placeholder="请输入优惠券领取数量"/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item label="状态">
|
|
|
|
|
+ <el-radio-group v-model="publishForm.status">
|
|
|
|
|
+ <el-radio v-for="item in statusOptions" :label="item.dictValue">{{ item.dictLabel }}</el-radio>
|
|
|
|
|
+ </el-radio-group>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button type="primary" @click="submitPublishForm">确 定</el-button>
|
|
|
|
|
+ <el-button @click="cancelPublish">取 消</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+ <el-dialog :title="batchPublish.title" :visible.sync="batchPublish.open" append-to-body width="500px">
|
|
|
|
|
+ <div class="warning-content">
|
|
|
|
|
+ <h2 style="color: red; margin-bottom: 16px;">
|
|
|
|
|
+ {{ ids.length === 1 ? '是否发布当前勾选1张立减金券!' : `是否发布当前勾选${ids.length}张立减金券` }}
|
|
|
|
|
+ </h2>
|
|
|
|
|
+ <div class="alert-warning" style="padding: 12px; background-color: #fff3cd; border-left: 4px solid #ffc107; margin-bottom: 16px;">
|
|
|
|
|
+ <p style="margin: 0; color: #856404;">
|
|
|
|
|
+ <i class="el-icon-warning" style="margin-right: 6px;"></i>
|
|
|
|
|
+ 请确认立减金券的发布面值与购买金额设置正确,避免因设置错误导致损失。
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button @click="batchPublish.open = false">取消</el-button>
|
|
|
|
|
+ <el-button type="primary" @click="handlePublish">确认发布</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+ </div>
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+<script>
|
|
|
|
|
+import {
|
|
|
|
|
+ publishCoupon,
|
|
|
|
|
+ listStoreCoupon,
|
|
|
|
|
+ getStoreCoupon,
|
|
|
|
|
+ delStoreCoupon,
|
|
|
|
|
+ addStoreCoupon,
|
|
|
|
|
+ updateStoreCoupon,
|
|
|
|
|
+ exportStoreCoupon
|
|
|
|
|
+} from '@/api/hisStore/storeCoupon'
|
|
|
|
|
+import addBatchPublish from '../components/addBatchPublish.vue'
|
|
|
|
|
+
|
|
|
|
|
+export default {
|
|
|
|
|
+ name: 'HisStoreCoupon',
|
|
|
|
|
+ components: { addBatchPublish },
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ cateOptions: [],
|
|
|
|
|
+ couponTypeOptions: [],
|
|
|
|
|
+ publish: {
|
|
|
|
|
+ title: '发布',
|
|
|
|
|
+ open: false
|
|
|
|
|
+ },
|
|
|
|
|
+ batchPublish: {
|
|
|
|
|
+ title: '批量发布',
|
|
|
|
|
+ open: false
|
|
|
|
|
+ },
|
|
|
|
|
+ dateRange: [],
|
|
|
|
|
+ statusOptions: [],
|
|
|
|
|
+ // 遮罩层
|
|
|
|
|
+ loading: true,
|
|
|
|
|
+ // 选中数组
|
|
|
|
|
+ ids: [],
|
|
|
|
|
+ // 非单个禁用
|
|
|
|
|
+ single: true,
|
|
|
|
|
+ // 非多个禁用
|
|
|
|
|
+ multiple: true,
|
|
|
|
|
+ // 显示搜索条件
|
|
|
|
|
+ showSearch: true,
|
|
|
|
|
+ // 总条数
|
|
|
|
|
+ total: 0,
|
|
|
|
|
+ // 优惠券表格数据
|
|
|
|
|
+ storeCouponList: [],
|
|
|
|
|
+ // 弹出层标题
|
|
|
|
|
+ title: '',
|
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
|
+ open: false,
|
|
|
|
|
+ // 查询参数
|
|
|
|
|
+ queryParams: {
|
|
|
|
|
+ pageNum: 1,
|
|
|
|
|
+ pageSize: 10,
|
|
|
|
|
+ title: null,
|
|
|
|
|
+ integral: null,
|
|
|
|
|
+ couponPrice: null,
|
|
|
|
|
+ useMinPrice: null,
|
|
|
|
|
+ couponTime: null,
|
|
|
|
|
+ sort: null,
|
|
|
|
|
+ status: null,
|
|
|
|
|
+ productIds: null,
|
|
|
|
|
+ type: 3,
|
|
|
|
|
+ isDel: null
|
|
|
|
|
+ },
|
|
|
|
|
+ // 表单参数
|
|
|
|
|
+ form: {},
|
|
|
|
|
+ // 表单校验
|
|
|
|
|
+ rules: {
|
|
|
|
|
+ title: [
|
|
|
|
|
+ { required: true, message: '优惠券名称不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ integral: [
|
|
|
|
|
+ { required: true, message: '兑换消耗积分值不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ couponPrice: [
|
|
|
|
|
+ { required: true, message: '兑换的优惠券面值不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ useMinPrice: [
|
|
|
|
|
+ { required: true, message: '最低消费多少金额可用优惠券不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ payPrice: [
|
|
|
|
|
+ { required: true, message: '支付金额不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ couponTime: [
|
|
|
|
|
+ { required: true, message: '优惠券有效期限不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ sort: [
|
|
|
|
|
+ { required: true, message: '排序不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ status: [
|
|
|
|
|
+ { required: true, message: '状态不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ createTime: [
|
|
|
|
|
+ { required: true, message: '兑换项目添加时间不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ type: [
|
|
|
|
|
+ { required: true, message: '类型不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ packageCateIds: [
|
|
|
|
|
+ { required: true, message: '套餐分类不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ isDel: [
|
|
|
|
|
+ { required: true, message: '是否删除不能为空', trigger: 'blur' }
|
|
|
|
|
+ ]
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ publishForm: {
|
|
|
|
|
+ totalCount: 0,
|
|
|
|
|
+ status: '0'
|
|
|
|
|
+ },
|
|
|
|
|
+ // 表单校验
|
|
|
|
|
+ publishRules: {
|
|
|
|
|
+ totalCount: [
|
|
|
|
|
+ { required: true, message: '数量不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ startTime: [
|
|
|
|
|
+ { required: true, message: '开始时间不能为空', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ limitTime: [
|
|
|
|
|
+ { required: true, message: '结束时间不能为空', trigger: 'blur' }
|
|
|
|
|
+ ]
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ created() {
|
|
|
|
|
+ this.getDicts('store_product_package_cate').then((response) => {
|
|
|
|
|
+ var item = { dictValue: '0', dictLabel: '全部' }
|
|
|
|
|
+ this.cateOptions.push(item)
|
|
|
|
|
+ this.cateOptions = this.cateOptions.concat(response.data)
|
|
|
|
|
+ })
|
|
|
|
|
+ this.getDicts('common_status').then((response) => {
|
|
|
|
|
+ this.statusOptions = response.data
|
|
|
|
|
+ })
|
|
|
|
|
+ this.getDicts('store_coupon_type').then((response) => {
|
|
|
|
|
+ this.couponTypeOptions = response.data
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ this.getList()
|
|
|
|
|
+ },
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ /** 查询优惠券列表 */
|
|
|
|
|
+ getList() {
|
|
|
|
|
+ this.loading = true
|
|
|
|
|
+ this.queryParams.type = 3
|
|
|
|
|
+ listStoreCoupon(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
|
|
|
|
+ this.storeCouponList = response.rows
|
|
|
|
|
+ this.total = response.total
|
|
|
|
|
+ this.loading = false
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
+ // 取消按钮
|
|
|
|
|
+ cancel() {
|
|
|
|
|
+ this.open = false
|
|
|
|
|
+ this.reset()
|
|
|
|
|
+ },
|
|
|
|
|
+ // 表单重置
|
|
|
|
|
+ reset() {
|
|
|
|
|
+ this.form = {
|
|
|
|
|
+ couponId: null,
|
|
|
|
|
+ title: null,
|
|
|
|
|
+ integral: null,
|
|
|
|
|
+ couponPrice: null,
|
|
|
|
|
+ useMinPrice: null,
|
|
|
|
|
+ couponTime: null,
|
|
|
|
|
+ sort: null,
|
|
|
|
|
+ status: '0',
|
|
|
|
|
+ type: '0',
|
|
|
|
|
+ productIds: null,
|
|
|
|
|
+ packageCateIds: [],
|
|
|
|
|
+ createTime: null,
|
|
|
|
|
+ updateTime: null,
|
|
|
|
|
+ isDel: null
|
|
|
|
|
+ }
|
|
|
|
|
+ this.resetForm('form')
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 搜索按钮操作 */
|
|
|
|
|
+ handleQuery() {
|
|
|
|
|
+ this.queryParams.pageNum = 1
|
|
|
|
|
+ this.getList()
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 重置按钮操作 */
|
|
|
|
|
+ resetQuery() {
|
|
|
|
|
+ this.resetForm('queryForm')
|
|
|
|
|
+ this.handleQuery()
|
|
|
|
|
+ },
|
|
|
|
|
+ // 多选框选中数据
|
|
|
|
|
+ handleSelectionChange(selection) {
|
|
|
|
|
+ this.ids = selection.map(item => item.couponId)
|
|
|
|
|
+ this.single = selection.length !== 1
|
|
|
|
|
+ this.multiple = !selection.length
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
|
+ handleAdd() {
|
|
|
|
|
+ this.reset()
|
|
|
|
|
+ this.open = true
|
|
|
|
|
+ this.form.payPrice = 0
|
|
|
|
|
+ this.title = '添加优惠券'
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
|
+ this.reset()
|
|
|
|
|
+ const couponId = row.couponId || this.ids
|
|
|
|
|
+ getStoreCoupon(couponId).then(response => {
|
|
|
|
|
+ this.form = response.data
|
|
|
|
|
+ this.form.status = response.data.status.toString()
|
|
|
|
|
+ this.form.type = response.data.type.toString()
|
|
|
|
|
+ if (this.form.packageCateIds != null) {
|
|
|
|
|
+ this.form.packageCateIds = this.form.packageCateIds.split(',')
|
|
|
|
|
+ }
|
|
|
|
|
+ this.open = true
|
|
|
|
|
+ this.title = '修改优惠券'
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
|
+ submitForm() {
|
|
|
|
|
+ this.$refs['form'].validate(valid => {
|
|
|
|
|
+ if (valid) {
|
|
|
|
|
+ if (this.form.packageCateIds != null) {
|
|
|
|
|
+ this.form.packageCateIds = this.form.packageCateIds.toString()
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ //验证金额
|
|
|
|
|
+ if (this.form.couponPrice <= 0) {
|
|
|
|
|
+ return this.$message.warning('提交失败,面值要大于0')
|
|
|
|
|
+ } else if (this.form.payPrice <= 0) {
|
|
|
|
|
+ return this.$message.warning('提交失败,立减金金额要大于0')
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ this.form.type = 3//立减金
|
|
|
|
|
+ if (this.form.couponId != null) {
|
|
|
|
|
+ updateStoreCoupon(this.form).then(response => {
|
|
|
|
|
+ if (response.code === 200) {
|
|
|
|
|
+ this.msgSuccess('修改成功')
|
|
|
|
|
+ this.open = false
|
|
|
|
|
+ this.getList()
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ } else {
|
|
|
|
|
+ addStoreCoupon(this.form).then(response => {
|
|
|
|
|
+ if (response.code === 200) {
|
|
|
|
|
+ this.msgSuccess('新增成功')
|
|
|
|
|
+ this.open = false
|
|
|
|
|
+ this.getList()
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
+ handleBatchPublish() {
|
|
|
|
|
+ this.batchPublish.open = true
|
|
|
|
|
+ var that = this
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
|
+ that.$refs.batchPublish.handleBatch(that.ids)
|
|
|
|
|
+ }, 200)
|
|
|
|
|
+ },
|
|
|
|
|
+ closeBatchPublish() {
|
|
|
|
|
+ this.batchPublish.open = false
|
|
|
|
|
+ this.getList()
|
|
|
|
|
+ },
|
|
|
|
|
+ handlePublish(row) {
|
|
|
|
|
+ this.publish.open = true
|
|
|
|
|
+ this.publishForm.title = row.title
|
|
|
|
|
+ this.publishForm.couponId = row.couponId
|
|
|
|
|
+ },
|
|
|
|
|
+ cancelPublish() {
|
|
|
|
|
+ this.publish.open = false
|
|
|
|
|
+ this.reset()
|
|
|
|
|
+ },
|
|
|
|
|
+ submitPublishForm() {
|
|
|
|
|
+ this.$refs['publishForm'].validate(valid => {
|
|
|
|
|
+ if (valid) {
|
|
|
|
|
+ publishCoupon(this.publishForm).then(response => {
|
|
|
|
|
+ if (response.code === 200) {
|
|
|
|
|
+ this.msgSuccess('发布成功')
|
|
|
|
|
+ this.publish.open = false
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
|
+ handleDelete(row) {
|
|
|
|
|
+ const couponIds = row.couponId || this.ids
|
|
|
|
|
+ this.$confirm('是否确认删除优惠券编号为"' + couponIds + '"的数据项?', '警告', {
|
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
|
+ type: 'warning'
|
|
|
|
|
+ }).then(function() {
|
|
|
|
|
+ return delStoreCoupon(couponIds)
|
|
|
|
|
+ }).then(() => {
|
|
|
|
|
+ this.getList()
|
|
|
|
|
+ this.msgSuccess('删除成功')
|
|
|
|
|
+ }).catch(function() {
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
|
+ handleExport() {
|
|
|
|
|
+ const queryParams = this.queryParams
|
|
|
|
|
+ this.$confirm('是否确认导出所有优惠券数据项?', '警告', {
|
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
|
+ type: 'warning'
|
|
|
|
|
+ }).then(function() {
|
|
|
|
|
+ return exportStoreCoupon(queryParams)
|
|
|
|
|
+ }).then(response => {
|
|
|
|
|
+ this.download(response.msg)
|
|
|
|
|
+ }).catch(function() {
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+</script>
|