|
@@ -0,0 +1,462 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container calendar-list-container">
|
|
|
|
+
|
|
|
|
+ <!-- 查询和其他操作 -->
|
|
|
|
+ <div class="filter-container">
|
|
|
|
+ <el-select @change="changepoolId" v-model="listQuery.poolId" placeholder="奖池" class="filter-item" style="width: 200px">
|
|
|
|
+ <el-option :key="item.id" v-for="item in dictNameList" :label="item.title" :value="item.id">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ <el-button class="filter-item" type="primary" v-waves icon="el-icon-search" @click="handleFilter">查找</el-button>
|
|
|
|
+ <el-button class="filter-item" type="primary" @click="handleCreate" icon="el-icon-edit">添加</el-button>
|
|
|
|
+ <!-- <el-button class="filter-item" type="warning" icon="el-icon-delete" @click="delAll">批量删除</el-button> -->
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!-- 查询结果 -->
|
|
|
|
+ <el-table size="small" :data="list" v-loading="listLoading" @selection-change="handleSelectionChange"
|
|
|
|
+ element-loading-text="正在查询中。。。" border fit highlight-current-row>
|
|
|
|
+ <!-- <el-table-column type="selection" width="55px"> </el-table-column> -->
|
|
|
|
+ <el-table-column align="center" min-width="100px" label="奖品类型" prop="prizeTypeName">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" min-width="150px" label="奖品名称" prop="prizeName">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" min-width="150px" label="商品券">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.couponVo">{{ scope.row.couponVo.couponName }}</span>
|
|
|
|
+ <span v-else>无</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" min-width="100px" label="奖励积分" prop="integral">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" min-width="100px" label="奖品数量" prop="prizeActualStock">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" min-width="100px" label="剩余数量" prop="prizeStock">
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" min-width="100px" label="状态">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.status == '0'">关闭</span>
|
|
|
|
+ <span v-else>开启</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" label="操作" width="240px" class-name="small-padding fixed-width">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button type="primary" size="small" @click="handleUpdate(scope.row, false)">编辑</el-button>
|
|
|
|
+
|
|
|
|
+ <el-button type="danger" size="small" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+
|
|
|
|
+ <!-- 分页 -->
|
|
|
|
+ <div class="pagination-container">
|
|
|
|
+ <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange"
|
|
|
|
+ :current-page="listQuery.page" :page-sizes="[10, 20, 30, 50]" :page-size="listQuery.limit"
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="total">
|
|
|
|
+ </el-pagination>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!-- 添加或修改对话框 -->
|
|
|
|
+ <el-dialog
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ :title="textMap[dialogStatus]"
|
|
|
|
+ :visible.sync="dialogFormVisible"
|
|
|
|
+ width="40%"
|
|
|
|
+ >
|
|
|
|
+ <el-form :rules="rules" ref="dataForm" :model="dataForm" status-icon label-position="left" label-width="80px" style='width: 700px; margin-left:50px;'>
|
|
|
|
+ <el-form-item label="奖品类型" prop="prizeType">
|
|
|
|
+ <el-select :disabled="dialogStatus == 'update'?true:false" v-model="dataForm.prizeType" clearable placeholder="请选择类型" class="filter-item" style="width: 300px" @change="clickPrizeType">
|
|
|
|
+ <el-option :key="item.dictValue" v-for="item in dataTypeList" :label="item.dictLabel" :value="item.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="奖品名称" prop="prizeName">
|
|
|
|
+ <el-input style="width: 300px" v-model="dataForm.prizeName"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item v-if="dataForm.prizeType=='10'" label="兑换券" prop="couponId">
|
|
|
|
+ <el-select v-model="dataForm.couponId" clearable placeholder="请选择兑换券" class="filter-item" style="width: 300px">
|
|
|
|
+ <el-option :key="item.id" v-for="item in couponsList" :label="item.couponName" :value="item.id">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <!-- <el-form-item style="width: 800px" label="商品图片" prop="imgUrl">
|
|
|
|
+ <el-upload :limit="1" :action="fileImgUrl" list-type="picture-card" :file-list="dataForm.images"
|
|
|
|
+ :on-success="handleGallerySucess" :on-exceed="handleExceed" :before-upload="uploadBannerImg"
|
|
|
|
+ :on-remove="handleRemove">
|
|
|
|
+ <i class="el-icon-plus"></i>
|
|
|
|
+ </el-upload>
|
|
|
|
+ </el-form-item> -->
|
|
|
|
+ <el-form-item v-if="dataForm.prizeType=='20'" label="奖励积分" prop="integral">
|
|
|
|
+ <el-input-number style="width: 300px" :precision="0" :step="1" v-model="dataForm.integral"></el-input-number>
|
|
|
|
+ </el-form-item>
|
|
|
|
+
|
|
|
|
+ <el-form-item label="奖品数量" prop="prizeActualStock">
|
|
|
|
+ <el-input-number style="width: 300px" :precision="0" :step="1" v-model="dataForm.prizeActualStock"></el-input-number>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="状态">
|
|
|
|
+ <el-radio-group v-model="dataForm.status">
|
|
|
|
+ <el-radio :label="'0'">关闭</el-radio>
|
|
|
|
+ <el-radio :label="'1'">开启</el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+ </el-form-item>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </el-form>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button @click="dialogFormVisible = false">取消</el-button>
|
|
|
|
+ <el-button v-if="dialogStatus == 'create'" type="primary" @click="createData">确定</el-button>
|
|
|
|
+ <el-button v-else type="primary" @click="updateData">确定</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<style>
|
|
|
|
+.demo-table-expand {
|
|
|
|
+ font-size: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.demo-table-expand label {
|
|
|
|
+ width: 200px;
|
|
|
|
+ color: #99a9bf;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.demo-table-expand .el-form-item {
|
|
|
|
+ margin-right: 0;
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
+}
|
|
|
|
+</style>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { dataList, dataAdd, dataEdit, dataRemove, optionSelect } from "@/api/lotteryManage";
|
|
|
|
+import { dataTypeList,couponsList } from "@/api/public";
|
|
|
|
+import waves from "@/directive/waves"; // 水波纹指令
|
|
|
|
+import Tinymce from '@/components/Tinymce'
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ components: { Tinymce },
|
|
|
|
+ directives: { waves },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ couponsList:[],
|
|
|
|
+ dataTypeList:[],
|
|
|
|
+ isCoupon:false,
|
|
|
|
+ poolId:'',
|
|
|
|
+ dictNameList: [],
|
|
|
|
+ list: [
|
|
|
|
+ ],
|
|
|
|
+ delarr: [],
|
|
|
|
+ multipleSelection: [],
|
|
|
|
+ total: 0,
|
|
|
|
+ listLoading: false,
|
|
|
|
+ listQuery: {
|
|
|
|
+ page: 1,
|
|
|
|
+ limit: 10,
|
|
|
|
+ poolId: '',
|
|
|
|
+ },
|
|
|
|
+ dataForm: {
|
|
|
|
+ prizeType: undefined,
|
|
|
|
+ couponId:undefined,
|
|
|
|
+ prizeName: undefined,
|
|
|
|
+ imgUrl: undefined,
|
|
|
|
+ integral: undefined,
|
|
|
|
+ prizeActualStock: undefined,
|
|
|
|
+ prizeStock: undefined,
|
|
|
|
+ status: '0',
|
|
|
|
+ images: [],
|
|
|
|
+ },
|
|
|
|
+ dialogFormVisible: false,
|
|
|
|
+ dialogStatus: '',
|
|
|
|
+ textMap: {
|
|
|
|
+ update: "编辑",
|
|
|
|
+ create: "创建",
|
|
|
|
+ },
|
|
|
|
+ rules: {
|
|
|
|
+ prizeType: [{ required: true, message: "请选择奖品类型", trigger: "blur" }],
|
|
|
|
+ couponId: [{ required: true, message: "请选择兑换卷", trigger: "blur" }],
|
|
|
|
+ prizeName: [{ required: true, message: "奖品名称不能为空", trigger: "blur" }],
|
|
|
|
+ imgUrl: [{ required: true, message: "请上传奖品图片", trigger: "blur" }],
|
|
|
|
+ integral: [{ required: true, message: "奖励积分不能为空", trigger: "blur" }],
|
|
|
|
+ prizeActualStock: [{ required: true, message: "奖品数量不能为空", trigger: "blur" }],
|
|
|
|
+ prizeStock: [{ required: true, message: "剩余数量不能为空", trigger: "blur" }],
|
|
|
|
+ },
|
|
|
|
+ fileImgUrl: this.upLoadUrl,
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.poolId = this.$route.params.id;
|
|
|
|
+ this.getOptionSelect();
|
|
|
|
+ this.getDataTypeList();
|
|
|
|
+ this.getCouponsList();
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ clickPrizeType(){
|
|
|
|
+ this.dataForm.couponId = undefined;
|
|
|
|
+ this.dataForm.prizeName = undefined;
|
|
|
|
+ this.dataForm.imgUrl = undefined;
|
|
|
|
+ this.dataForm.integral = undefined;
|
|
|
|
+ this.dataForm.prizeActualStock = undefined;
|
|
|
|
+ this.dataForm.prizeStock = undefined;
|
|
|
|
+ this.dataForm.status = '0';
|
|
|
|
+ this.dataForm.images = [];
|
|
|
|
+ },
|
|
|
|
+ handleRemove(file, fileList) {
|
|
|
|
+ console.log(file, fileList);
|
|
|
|
+ let images = [];
|
|
|
|
+ for (let i in fileList) {
|
|
|
|
+ let response = fileList[i].response;
|
|
|
|
+ let url = response.data.url;
|
|
|
|
+ images.push(url);
|
|
|
|
+ }
|
|
|
|
+ this.dataForm.images = images;
|
|
|
|
+ this.dataForm.imgUrl = images.join(",");
|
|
|
|
+ },
|
|
|
|
+ uploadBannerImg(file) {
|
|
|
|
+ const isJPGs = file.type === "image/jpeg";
|
|
|
|
+ console.log(isJPGs);
|
|
|
|
+ },
|
|
|
|
+ handleExceed(files, fileList) {
|
|
|
|
+ this.$message.warning(
|
|
|
|
+ `当前限制选择 1 个文件,本次选择了 ${files.length} 个文件!,共选择了 ${files.length + fileList.length
|
|
|
|
+ } 个文件`
|
|
|
|
+ );
|
|
|
|
+ },
|
|
|
|
+ handleGallerySucess(res, file, fileList) {
|
|
|
|
+ this.dataForm.imgUrl = ""; // 清空画廊图片数组
|
|
|
|
+
|
|
|
|
+ let images = [];
|
|
|
|
+ for (let i in fileList) {
|
|
|
|
+ let response = fileList[i].response;
|
|
|
|
+ if (response.errno && response.errno != "0") {
|
|
|
|
+ this.$message.error("该图片上传失败,已被移除,请重新上传!");
|
|
|
|
+ // 上传失败移除该 file 对象
|
|
|
|
+ fileList.splice(i, 1);
|
|
|
|
+ } else {
|
|
|
|
+ let url = response.data.url;
|
|
|
|
+ images.push(url);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.dataForm.images = images;
|
|
|
|
+ this.dataForm.imgUrl = images.join(",");
|
|
|
|
+ },
|
|
|
|
+ getCouponsList() {
|
|
|
|
+ couponsList({}).then(response => {
|
|
|
|
+ this.couponsList = response.data.data;
|
|
|
|
+ }).catch(() => { });
|
|
|
|
+ },
|
|
|
|
+ getDataTypeList() {
|
|
|
|
+ dataTypeList({dictType:'draw_prize_type'}).then(response => {
|
|
|
|
+ this.dataTypeList = response.data.data;
|
|
|
|
+ }).catch(() => {});
|
|
|
|
+ },
|
|
|
|
+ changepoolId(val){
|
|
|
|
+ this.poolId = val;
|
|
|
|
+ this.listQuery.poolId = val;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ getOptionSelect(){
|
|
|
|
+ optionSelect().then(response => {
|
|
|
|
+ this.dictNameList = response.data.data;
|
|
|
|
+ this.listQuery.poolId = this.poolId;
|
|
|
|
+ this.getList();
|
|
|
|
+ }).catch(() => {})
|
|
|
|
+ },
|
|
|
|
+ resetForm() {
|
|
|
|
+ this.dataForm = {
|
|
|
|
+ prizeType: undefined,
|
|
|
|
+ couponId:undefined,
|
|
|
|
+ prizeName: undefined,
|
|
|
|
+ imgUrl: undefined,
|
|
|
|
+ integral: undefined,
|
|
|
|
+ prizeActualStock: undefined,
|
|
|
|
+ prizeStock: undefined,
|
|
|
|
+ status: '0',
|
|
|
|
+ images: [],
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ handleCreate() {
|
|
|
|
+ this.resetForm();
|
|
|
|
+ this.dataForm.poolId = this.poolId;
|
|
|
|
+ this.dialogFormVisible = true;
|
|
|
|
+ this.dialogStatus = "create";
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.$refs["dataForm"].clearValidate();
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ createData() {
|
|
|
|
+ this.$refs["dataForm"].validate((valid) => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ dataAdd(this.dataForm)
|
|
|
|
+ .then(() => {
|
|
|
|
+ this.dialogFormVisible = false;
|
|
|
|
+ this.$notify({
|
|
|
|
+ title: "成功",
|
|
|
|
+ message: "创建成功",
|
|
|
|
+ type: "success",
|
|
|
|
+ duration: 2000,
|
|
|
|
+ });
|
|
|
|
+ this.getList()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ getList() {
|
|
|
|
+ this.listLoading = true
|
|
|
|
+ dataList(this.listQuery).then(response => {
|
|
|
|
+ this.list = response.data.data.items
|
|
|
|
+ this.total = response.data.data.total
|
|
|
|
+ this.listLoading = false
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ this.list = []
|
|
|
|
+ this.total = 0
|
|
|
|
+ this.listLoading = false
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleFilter() {
|
|
|
|
+ this.listQuery.page = 1
|
|
|
|
+ this.getList()
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleSizeChange(val) {
|
|
|
|
+ this.listQuery.limit = val
|
|
|
|
+ this.getList()
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleCurrentChange(val) {
|
|
|
|
+ this.listQuery.page = val
|
|
|
|
+ this.getList()
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
+ this.dataForm = Object.assign({}, row);
|
|
|
|
+ if (this.dataForm.imgUrl) {
|
|
|
|
+ let images = this.dataForm.imgUrl.split(",");
|
|
|
|
+ this.dataForm.images = [];
|
|
|
|
+ for (let i in images) {
|
|
|
|
+ let url = images[i];
|
|
|
|
+ let name = "image_" + i;
|
|
|
|
+
|
|
|
|
+ this.dataForm.images.push({
|
|
|
|
+ name: name,
|
|
|
|
+ url: url,
|
|
|
|
+ response: { error: "0", data: { url: url } },
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.dialogStatus = 'update'
|
|
|
|
+ this.dialogFormVisible = true
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.$refs['dataForm'].clearValidate()
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ updateData() {
|
|
|
|
+ this.$refs['dataForm'].validate((valid) => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ dataEdit(this.dataForm).then(() => {
|
|
|
|
+ this.dialogFormVisible = false
|
|
|
|
+ this.$notify({
|
|
|
|
+ title: '成功',
|
|
|
|
+ message: '更新成功',
|
|
|
|
+ type: 'success',
|
|
|
|
+ duration: 2000
|
|
|
|
+ })
|
|
|
|
+ this.getList()
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleDelete(row) {
|
|
|
|
+
|
|
|
|
+ this.$confirm('确认删除吗?', '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(() => {
|
|
|
|
+ dataRemove({ prizeIds:row.id}).then(response => {
|
|
|
|
+ this.$notify({
|
|
|
|
+ title: '成功',
|
|
|
|
+ message: '删除成功',
|
|
|
|
+ type: 'success',
|
|
|
|
+ duration: 2000
|
|
|
|
+ })
|
|
|
|
+ const index = this.list.indexOf(row)
|
|
|
|
+ this.list.splice(index, 1)
|
|
|
|
+ })
|
|
|
|
+ }).catch(() => {
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ delAll() {
|
|
|
|
+ this.$confirm("确认删除吗?", "提示", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning",
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ const length = this.multipleSelection.length;
|
|
|
|
+
|
|
|
|
+ if (length > 0) {
|
|
|
|
+ for (let i = 0; i < length; i++) {
|
|
|
|
+ this.delarr.push(this.multipleSelection[i].id);
|
|
|
|
+ }
|
|
|
|
+ const ids = this.delarr.join(",");
|
|
|
|
+ dataRemove({ prizeIds: ids })
|
|
|
|
+ .then(() => {
|
|
|
|
+ this.$notify({
|
|
|
|
+ title: "成功",
|
|
|
|
+ message: "删除成功",
|
|
|
|
+ type: "success",
|
|
|
|
+ duration: 2000,
|
|
|
|
+ });
|
|
|
|
+ this.getList();
|
|
|
|
+ })
|
|
|
|
+ .catch(() => { });
|
|
|
|
+ } else {
|
|
|
|
+ this.$notify({
|
|
|
|
+ title: "警告提示",
|
|
|
|
+ message: "请选择要删除的信息!",
|
|
|
|
+ type: "warning",
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .catch(() => { });
|
|
|
|
+ },
|
|
|
|
+ handleSelectionChange(val) {
|
|
|
|
+ this.multipleSelection = val;
|
|
|
|
+ },
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+<style>
|
|
|
|
+.ad-avatar-uploader .el-upload {
|
|
|
|
+ border: 1px dashed #d9d9d9;
|
|
|
|
+ border-radius: 6px;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ position: relative;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.ad-avatar-uploader .el-upload:hover {
|
|
|
|
+ border-color: #409EFF;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.ad-avatar-uploader-icon {
|
|
|
|
+ font-size: 28px;
|
|
|
|
+ color: #8c939d;
|
|
|
|
+ width: 178px;
|
|
|
|
+ height: 178px;
|
|
|
|
+ line-height: 178px;
|
|
|
|
+ text-align: center;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.ad-avatar {
|
|
|
|
+ display: block;
|
|
|
|
+}
|
|
|
|
+</style>
|
|
|
|
+
|