140 lines
4.2 KiB
Vue
140 lines
4.2 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<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="['cai:prizeInfo:add']"
|
|
>新增</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="['cai:prizeInfo:remove']"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="prizeOnlineList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="奖品类型" align="center" prop="prizeType" >
|
|
<template v-slot="scope">
|
|
<cai-dict-tag :options="prizeTypeList" :value="scope.row.prizeType" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="奖品名称" align="center" prop="prizeName" />
|
|
<el-table-column label="奖品描述" align="center" prop="prizeDesc" />
|
|
<el-table-column label="奖品图片" align="center" prop="prizeImg" >
|
|
<template v-slot="scope">
|
|
<image-avatar :src="scope.row.prizeImg"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="中奖率" align="center" prop="winProbability" />
|
|
<el-table-column label="保底抽数" align="center" prop="guaranteeDraws" />
|
|
<el-table-column label="最低抽数" align="center" prop="minWinDraws" />
|
|
<el-table-column label="奖品价值" align="center" prop="prizePrice" />
|
|
<el-table-column label="自动兑奖" align="center" prop="autoGive" >
|
|
<template v-slot="scope">
|
|
<cai-dict-tag :options="prizeAutoGiveList" :value="scope.row.autoGive" />
|
|
</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="['cai:prizeInfo:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['cai:prizeInfo:remove']"
|
|
>删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {listPrizeOnline} from "@/api/cai/prizeOnline";
|
|
import {prizeAutoGiveList, prizeTypeList} from "@/constant/statusMap";
|
|
|
|
export default {
|
|
name: "PrizeOnline",
|
|
data() {
|
|
return {
|
|
prizeTypeList, prizeAutoGiveList,
|
|
// 按钮loading
|
|
buttonLoading: false,
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 已发布奖品表格数据
|
|
prizeOnlineList: [],
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
},
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询已发布奖品列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listPrizeOnline(this.queryParams).then(response => {
|
|
this.prizeOnlineList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 搜索按钮操作 */
|
|
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() {
|
|
},
|
|
}
|
|
};
|
|
</script>
|