|
@@ -0,0 +1,397 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form-item label="直播间ID" prop="liveId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.liveId"
|
|
|
+ placeholder="请输入直播间ID"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="商品ID" prop="productId">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.productId"
|
|
|
+ placeholder="请输入商品ID"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="奖品等级" prop="prizeLevel">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.prizeLevel"
|
|
|
+ placeholder="请输入奖品等级"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="参与抽奖方式 0:在线观众参与 1:关注参与 2:送礼参与 3:下单参与" prop="require">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.require"
|
|
|
+ placeholder="请输入参与抽奖方式 0:在线观众参与 1:关注参与 2:送礼参与 3:下单参与"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="创建日期" prop="createTime">
|
|
|
+ <el-date-picker clearable size="small"
|
|
|
+ v-model="queryParams.createTime"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择创建日期">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" 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"
|
|
|
+ plain
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleAdd"
|
|
|
+ v-hasPermi="['live:liveLotteryConf:add']"
|
|
|
+ >新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ plain
|
|
|
+ icon="el-icon-edit"
|
|
|
+ size="mini"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate"
|
|
|
+ v-hasPermi="['live:liveLotteryConf:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ plain
|
|
|
+ icon="el-icon-delete"
|
|
|
+ size="mini"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['live:liveLotteryConf:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ :loading="exportLoading"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['live:liveLotteryConf:export']"
|
|
|
+ >导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-table border v-loading="loading" :data="liveLotteryConfList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="抽奖ID" align="center" prop="lotteryId" />
|
|
|
+ <el-table-column label="直播间ID" align="center" prop="liveId" />
|
|
|
+ <el-table-column label="商品ID" align="center" prop="productId" />
|
|
|
+ <el-table-column label="奖品等级" align="center" prop="prizeLevel" />
|
|
|
+ <el-table-column label="单次中奖商品数量" align="center" prop="perLotteryNum" />
|
|
|
+ <el-table-column label="可中奖份量" align="center" prop="totalLots" />
|
|
|
+ <el-table-column label="实际发放奖励份量" align="center" prop="totalSend" />
|
|
|
+ <el-table-column label="参与抽奖方式 0:在线观众参与 1:关注参与 2:送礼参与 3:下单参与" align="center" prop="require" />
|
|
|
+ <el-table-column label="参与抽奖方式 2/3对应的配置,2:送礼数量,以最低档位礼物为单位 3:指定商品Id及数量,|竖线分割" align="center" prop="requireConf" />
|
|
|
+ <el-table-column label="持续时间 单位:分" align="center" prop="duration" />
|
|
|
+ <el-table-column label="描述/标题" align="center" prop="desc" />
|
|
|
+ <el-table-column label="创建日期" align="center" prop="createTime" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="修改日期" align="center" prop="udpateTime" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.udpateTime, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="创建日期" align="center" prop="createBy" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createBy, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="修改日期" align="center" prop="updateBy" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.updateBy, '{y}-{m}-{d}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <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="['live:liveLotteryConf:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['live:liveLotteryConf: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="直播间ID" prop="liveId">
|
|
|
+ <el-input v-model="form.liveId" placeholder="请输入直播间ID" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="商品ID" prop="productId">
|
|
|
+ <el-input v-model="form.productId" placeholder="请输入商品ID" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="奖品等级" prop="prizeLevel">
|
|
|
+ <el-input v-model="form.prizeLevel" placeholder="请输入奖品等级" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="单次中奖商品数量" prop="perLotteryNum">
|
|
|
+ <el-input v-model="form.perLotteryNum" placeholder="请输入单次中奖商品数量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="可中奖份量" prop="totalLots">
|
|
|
+ <el-input v-model="form.totalLots" placeholder="请输入可中奖份量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="实际发放奖励份量" prop="totalSend">
|
|
|
+ <el-input v-model="form.totalSend" placeholder="请输入实际发放奖励份量" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="参与抽奖方式 0:在线观众参与 1:关注参与 2:送礼参与 3:下单参与" prop="require">
|
|
|
+ <el-input v-model="form.require" placeholder="请输入参与抽奖方式 0:在线观众参与 1:关注参与 2:送礼参与 3:下单参与" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="参与抽奖方式 2/3对应的配置,2:送礼数量,以最低档位礼物为单位 3:指定商品Id及数量,|竖线分割" prop="requireConf">
|
|
|
+ <el-input v-model="form.requireConf" placeholder="请输入参与抽奖方式 2/3对应的配置,2:送礼数量,以最低档位礼物为单位 3:指定商品Id及数量,|竖线分割" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="持续时间 单位:分" prop="duration">
|
|
|
+ <el-input v-model="form.duration" placeholder="请输入持续时间 单位:分" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="描述/标题" prop="desc">
|
|
|
+ <el-input v-model="form.desc" placeholder="请输入描述/标题" />
|
|
|
+ </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 { listLiveLotteryConf, getLiveLotteryConf, delLiveLotteryConf, addLiveLotteryConf, updateLiveLotteryConf, exportLiveLotteryConf } from "@/api/live/liveLotteryConf";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "LiveLotteryConf",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 导出遮罩层
|
|
|
+ exportLoading: false,
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // 直播抽奖配置表格数据
|
|
|
+ liveLotteryConfList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ liveId: null,
|
|
|
+ productId: null,
|
|
|
+ prizeLevel: null,
|
|
|
+ require: null,
|
|
|
+ createTime: null,
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ liveId: [
|
|
|
+ { required: true, message: "直播间ID不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ productId: [
|
|
|
+ { required: true, message: "商品ID不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ prizeLevel: [
|
|
|
+ { required: true, message: "奖品等级不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ perLotteryNum: [
|
|
|
+ { required: true, message: "单次中奖商品数量不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ totalLots: [
|
|
|
+ { required: true, message: "可中奖份量不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ totalSend: [
|
|
|
+ { required: true, message: "实际发放奖励份量不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ require: [
|
|
|
+ { required: true, message: "参与抽奖方式 0:在线观众参与 1:关注参与 2:送礼参与 3:下单参与不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ duration: [
|
|
|
+ { required: true, message: "持续时间 单位:分不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ desc: [
|
|
|
+ { required: true, message: "描述/标题不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 查询直播抽奖配置列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listLiveLotteryConf(this.queryParams).then(response => {
|
|
|
+ this.liveLotteryConfList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ lotteryId: null,
|
|
|
+ liveId: null,
|
|
|
+ productId: null,
|
|
|
+ prizeLevel: null,
|
|
|
+ perLotteryNum: null,
|
|
|
+ totalLots: null,
|
|
|
+ totalSend: null,
|
|
|
+ require: null,
|
|
|
+ requireConf: null,
|
|
|
+ duration: null,
|
|
|
+ desc: null,
|
|
|
+ createTime: null,
|
|
|
+ udpateTime: null,
|
|
|
+ createBy: null,
|
|
|
+ updateBy: 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.lotteryId)
|
|
|
+ this.single = selection.length!==1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加直播抽奖配置";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const lotteryId = row.lotteryId || this.ids
|
|
|
+ getLiveLotteryConf(lotteryId).then(response => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改直播抽奖配置";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.lotteryId != null) {
|
|
|
+ updateLiveLotteryConf(this.form).then(response => {
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ addLiveLotteryConf(this.form).then(response => {
|
|
|
+ this.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const lotteryIds = row.lotteryId || this.ids;
|
|
|
+ this.$confirm('是否确认删除直播抽奖配置编号为"' + lotteryIds + '"的数据项?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function() {
|
|
|
+ return delLiveLotteryConf(lotteryIds);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
+ }).catch(() => {});
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ const queryParams = this.queryParams;
|
|
|
+ this.$confirm('是否确认导出所有直播抽奖配置数据项?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(() => {
|
|
|
+ this.exportLoading = true;
|
|
|
+ return exportLiveLotteryConf(queryParams);
|
|
|
+ }).then(response => {
|
|
|
+ this.download(response.msg);
|
|
|
+ this.exportLoading = false;
|
|
|
+ }).catch(() => {});
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|