|
@@ -1,356 +0,0 @@
|
|
|
-<template>
|
|
|
- <div class="app-container">
|
|
|
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
- <el-form-item label="等级名称" prop="grade">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.grade"
|
|
|
- placeholder="请输入等级名称"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="优惠条件" prop="discountTerm">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.discountTerm"
|
|
|
- placeholder="请输入优惠条件"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="优惠条件金额" prop="discountAmt">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.discountAmt"
|
|
|
- placeholder="请输入优惠条件金额"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="汽油优惠金额" prop="gasoilDiscountAmt">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.gasoilDiscountAmt"
|
|
|
- placeholder="请输入汽油优惠金额"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="柴油优惠金额" prop="dieseloilDiscountAmt">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.dieseloilDiscountAmt"
|
|
|
- placeholder="请输入柴油优惠金额"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="会员优惠是否叠加" prop="vipDiscountyPlus">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.vipDiscountyPlus"
|
|
|
- placeholder="请输入会员优惠是否叠加"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="可否叠加劵" prop="couponPlus">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.couponPlus"
|
|
|
- placeholder="请输入可否叠加劵"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="优惠方案类型" prop="discountPlanType">
|
|
|
- <el-select v-model="queryParams.discountPlanType" placeholder="请选择优惠方案类型" clearable size="small">
|
|
|
- <el-option label="请选择字典生成" value="" />
|
|
|
- </el-select>
|
|
|
- </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="primary"
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleAdd"
|
|
|
- v-hasPermi="['market:plan:add']"
|
|
|
- >新增</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="success"
|
|
|
- icon="el-icon-edit"
|
|
|
- size="mini"
|
|
|
- :disabled="single"
|
|
|
- @click="handleUpdate"
|
|
|
- v-hasPermi="['market:plan:edit']"
|
|
|
- >修改</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="danger"
|
|
|
- icon="el-icon-delete"
|
|
|
- size="mini"
|
|
|
- :disabled="multiple"
|
|
|
- @click="handleDelete"
|
|
|
- v-hasPermi="['market:plan:remove']"
|
|
|
- >删除</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- icon="el-icon-download"
|
|
|
- size="mini"
|
|
|
- @click="handleExport"
|
|
|
- v-hasPermi="['market:plan:export']"
|
|
|
- >导出</el-button>
|
|
|
- </el-col>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
- </el-row>
|
|
|
-
|
|
|
- <el-table v-loading="loading" :data="planList" @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="grade" />
|
|
|
- <el-table-column label="优惠条件" align="center" prop="discountTerm" />
|
|
|
- <el-table-column label="优惠条件金额" align="center" prop="discountAmt" />
|
|
|
- <el-table-column label="汽油优惠金额" align="center" prop="gasoilDiscountAmt" />
|
|
|
- <el-table-column label="柴油优惠金额" align="center" prop="dieseloilDiscountAmt" />
|
|
|
- <el-table-column label="会员优惠是否叠加" align="center" prop="vipDiscountyPlus" />
|
|
|
- <el-table-column label="可否叠加劵" align="center" prop="couponPlus" />
|
|
|
- <el-table-column label="优惠方案类型" align="center" prop="discountPlanType" />
|
|
|
- <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="['market:plan:edit']"
|
|
|
- >修改</el-button>
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['market:plan: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="等级名称" prop="grade">
|
|
|
- <el-input v-model="form.grade" placeholder="请输入等级名称" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="优惠条件" prop="discountTerm">
|
|
|
- <el-input v-model="form.discountTerm" placeholder="请输入优惠条件" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="优惠条件金额" prop="discountAmt">
|
|
|
- <el-input v-model="form.discountAmt" placeholder="请输入优惠条件金额" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="汽油优惠金额" prop="gasoilDiscountAmt">
|
|
|
- <el-input v-model="form.gasoilDiscountAmt" placeholder="请输入汽油优惠金额" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="柴油优惠金额" prop="dieseloilDiscountAmt">
|
|
|
- <el-input v-model="form.dieseloilDiscountAmt" placeholder="请输入柴油优惠金额" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="会员优惠是否叠加" prop="vipDiscountyPlus">
|
|
|
- <el-input v-model="form.vipDiscountyPlus" placeholder="请输入会员优惠是否叠加" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="可否叠加劵" prop="couponPlus">
|
|
|
- <el-input v-model="form.couponPlus" placeholder="请输入可否叠加劵" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="优惠方案类型" prop="discountPlanType">
|
|
|
- <el-select v-model="form.discountPlanType" placeholder="请选择优惠方案类型">
|
|
|
- <el-option label="请选择字典生成" value="" />
|
|
|
- </el-select>
|
|
|
- </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 { listPlan, getPlan, delPlan, addPlan, updatePlan, exportPlan } from "@/api/market/plan";
|
|
|
-
|
|
|
-export default {
|
|
|
- name: "Plan",
|
|
|
- data() {
|
|
|
- return {
|
|
|
- // 遮罩层
|
|
|
- loading: true,
|
|
|
- // 选中数组
|
|
|
- ids: [],
|
|
|
- // 非单个禁用
|
|
|
- single: true,
|
|
|
- // 非多个禁用
|
|
|
- multiple: true,
|
|
|
- // 显示搜索条件
|
|
|
- showSearch: true,
|
|
|
- // 总条数
|
|
|
- total: 0,
|
|
|
- // 营销方案表格数据
|
|
|
- planList: [],
|
|
|
- // 弹出层标题
|
|
|
- title: "",
|
|
|
- // 是否显示弹出层
|
|
|
- open: false,
|
|
|
- // 查询参数
|
|
|
- queryParams: {
|
|
|
- pageNum: 1,
|
|
|
- pageSize: 10,
|
|
|
- grade: null,
|
|
|
- discountTerm: null,
|
|
|
- discountAmt: null,
|
|
|
- gasoilDiscountAmt: null,
|
|
|
- dieseloilDiscountAmt: null,
|
|
|
- vipDiscountyPlus: null,
|
|
|
- couponPlus: null,
|
|
|
- discountPlanType: null
|
|
|
- },
|
|
|
- // 表单参数
|
|
|
- form: {},
|
|
|
- // 表单校验
|
|
|
- rules: {
|
|
|
- }
|
|
|
- };
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- methods: {
|
|
|
- /** 查询营销方案列表 */
|
|
|
- getList() {
|
|
|
- this.loading = true;
|
|
|
- listPlan(this.queryParams).then(response => {
|
|
|
- this.planList = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
- },
|
|
|
- // 取消按钮
|
|
|
- cancel() {
|
|
|
- this.open = false;
|
|
|
- this.reset();
|
|
|
- },
|
|
|
- // 表单重置
|
|
|
- reset() {
|
|
|
- this.form = {
|
|
|
- id: null,
|
|
|
- grade: null,
|
|
|
- discountTerm: null,
|
|
|
- discountAmt: null,
|
|
|
- gasoilDiscountAmt: null,
|
|
|
- dieseloilDiscountAmt: null,
|
|
|
- vipDiscountyPlus: null,
|
|
|
- couponPlus: null,
|
|
|
- discountPlanType: 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
|
|
|
- getPlan(id).then(response => {
|
|
|
- this.form = response.data;
|
|
|
- this.open = true;
|
|
|
- this.title = "修改营销方案";
|
|
|
- });
|
|
|
- },
|
|
|
- /** 提交按钮 */
|
|
|
- submitForm() {
|
|
|
- this.$refs["form"].validate(valid => {
|
|
|
- if (valid) {
|
|
|
- if (this.form.id != null) {
|
|
|
- updatePlan(this.form).then(response => {
|
|
|
- this.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- } else {
|
|
|
- addPlan(this.form).then(response => {
|
|
|
- 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 delPlan(ids);
|
|
|
- }).then(() => {
|
|
|
- this.getList();
|
|
|
- this.msgSuccess("删除成功");
|
|
|
- })
|
|
|
- },
|
|
|
- /** 导出按钮操作 */
|
|
|
- handleExport() {
|
|
|
- const queryParams = this.queryParams;
|
|
|
- this.$confirm('是否确认导出所有营销方案数据项?', "警告", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- }).then(function() {
|
|
|
- return exportPlan(queryParams);
|
|
|
- }).then(response => {
|
|
|
- this.download(response.msg);
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
-};
|
|
|
-</script>
|