Browse Source

存在文化立减金

yjwang 2 months ago
parent
commit
ed72445d7b

+ 295 - 0
src/views/hisStore/storeInstanDiscountIssue/index.vue

@@ -0,0 +1,295 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px">
+      <el-form-item label="立减金券名称" prop="couponName">
+        <el-input
+          v-model="queryParams.couponName"
+          placeholder="请输入立减金券名称"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="立减金券面值" prop="couponPrice">
+        <el-input
+          v-model="queryParams.couponPrice"
+          placeholder="请输入立减金券面值"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="发布时间">
+            <el-date-picker v-model="dateRange" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
+        </el-form-item>
+      <el-form-item>
+        <el-button type="cyan" icon="el-icon-search" size="mini" @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
+          type="warning"
+          size="mini"
+          @click="handleRefresh"
+        >刷新</el-button>
+      </el-col>
+    </el-row>
+
+    <el-table  height="500" border v-loading="loading" :data="storeCouponIssueList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="ID" align="center" prop="id" />
+      <el-table-column label="立减金券" align="center" prop="couponName" />
+      <el-table-column label="优惠券面值" align="center" prop="couponPrice" />
+      <el-table-column label="最低消费" align="center" prop="useMinPrice" />
+      <el-table-column label="优惠券有效期限(天)" align="center" prop="couponTime" />
+      <el-table-column label="类型" align="center" prop="couponType" >
+          <template slot-scope="scope">
+              <el-tag prop="couponType" v-for="(item, index) in couponTypeOptions"    v-if="scope.row.couponType==item.dictValue">{{item.dictLabel}}</el-tag>
+          </template>
+      </el-table-column>
+      <el-table-column label="状态" align="center" prop="status" >
+          <template slot-scope="scope">
+              <el-tag prop="status" v-for="(item, index) in statusOptions"    v-if="scope.row.status==item.dictValue">{{item.dictLabel}}</el-tag>
+          </template>
+      </el-table-column>
+      <el-table-column label="发布时间" align="center" prop="createTime" />
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['store:storeCouponIssue:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['store:storeCouponIssue:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改优惠券领取对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+         <el-form-item label="状态">
+            <el-radio-group v-model="form.status">
+              <el-radio :label="item.dictValue" v-for="item in statusOptions" >{{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>
+  </div>
+</template>
+
+<script>
+import { listStoreCouponIssue, getStoreCouponIssue, delStoreCouponIssue, addStoreCouponIssue, updateStoreCouponIssue, exportStoreCouponIssue } from "@/api/hisStore/storeCouponIssue";
+
+export default {
+  name: "HisStoreCouponIssue",
+  data() {
+    return {
+      couponTypeOptions:[],
+      statusOptions:[],
+      dateRange:[],
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 优惠券领取表格数据
+      storeCouponIssueList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        couponName: null,
+        couponId: null,
+        couponType: 3,
+        startTime: null,
+        endTime: null,
+        totalCount: null,
+        remainCount: null,
+        isPermanent: null,
+        status: null,
+        isDel: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        isPermanent: [
+          { required: true, message: "是否无限张数不能为空", trigger: "blur" }
+        ],
+        status: [
+          { required: true, message: "1 正常 0 未开启 -1 已无效不能为空", trigger: "blur" }
+        ],
+        isDel: [
+          { required: true, message: "1 正常 0 未开启 -1 已无效不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+     this.getDicts("common_status").then((response) => {
+      this.statusOptions = response.data;
+    });
+     this.getDicts("store_coupon_type").then((response) => {
+      this.couponTypeOptions = response.data;
+    });
+    this.getList();
+  },
+  methods: {
+    handleRefresh(){
+      this.getList();
+    },
+    /** 查询优惠券领取列表 */
+    getList() {
+      this.loading = true;
+      this.queryParams.couponType = 3;
+      listStoreCouponIssue(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
+        this.storeCouponIssueList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        couponName: null,
+        couponId: null,
+        couponType: null,
+        startTime: null,
+        endTime: null,
+        totalCount: null,
+        remainCount: null,
+        isPermanent: null,
+        status: 0,
+        isDel: null,
+        createTime: null,
+        updateTime: 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.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加优惠券领取";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getStoreCouponIssue(id).then(response => {
+        this.form = response.data;
+        this.form.status = response.data.status.toString();
+        this.open = true;
+        this.title = "修改优惠券领取";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateStoreCouponIssue(this.form).then(response => {
+              if (response.code === 200) {
+                this.msgSuccess("修改成功");
+                this.open = false;
+                this.getList();
+              }
+            });
+          } else {
+            addStoreCouponIssue(this.form).then(response => {
+              if (response.code === 200) {
+                this.msgSuccess("新增成功");
+                this.open = false;
+                this.getList();
+              }
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$confirm('是否确认删除优惠券领取编号为"' + ids + '"的数据项?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return delStoreCouponIssue(ids);
+        }).then(() => {
+          this.getList();
+          this.msgSuccess("删除成功");
+        }).catch(function() {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams;
+      this.$confirm('是否确认导出所有优惠券领取数据项?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return exportStoreCouponIssue(queryParams);
+        }).then(response => {
+          this.download(response.msg);
+        }).catch(function() {});
+    }
+  }
+};
+</script>

+ 536 - 0
src/views/hisStore/storeInstantDiscount/index.vue

@@ -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>