commit
7d114add6c
@ -1,28 +1,34 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function index(params){
|
||||
return request({
|
||||
method:'get',
|
||||
url:'/api/admin/vr/index',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
export function show(params){
|
||||
return request({
|
||||
method:'get',
|
||||
url:'/api/admin/vr/show',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
export function destroy(params){
|
||||
return request({
|
||||
method:'get',
|
||||
url:'/api/admin/vr/destroy',
|
||||
params
|
||||
})
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function index(params) {
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/admin/user/index',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export function save(data) {
|
||||
return request({
|
||||
url: '/api/admin/user/save',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function show(params) {
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/admin/user/show',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
export function destroy(params) {
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/admin/user/destroy',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
@ -0,0 +1,45 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function index(params) {
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/admin/draw-prize/index',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export function drawLog(params) {
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/admin/draw-prize/draw-log',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
export function save(data) {
|
||||
return request({
|
||||
url: '/api/admin/draw-prize/save',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export function show(params) {
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/admin/draw-prize/show',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
export function destroy(params) {
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/admin/draw-prize/destroy',
|
||||
params
|
||||
})
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<div>
|
||||
<!-- 编辑-->
|
||||
<xy-dialog :is-show.sync="isShow" title="活动配置" ref="addActivityConfig">
|
||||
|
||||
|
||||
</xy-dialog>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
@ -0,0 +1,218 @@
|
||||
<template>
|
||||
<div>
|
||||
<!-- 编辑-->
|
||||
<xy-dialog :is-show.sync="isShow" title="活动用户编辑" type="form" :form="detail" :rules="rules" @submit="editor"
|
||||
ref="addActivity">
|
||||
|
||||
<template v-slot:name>
|
||||
<div class="xy-table-item">
|
||||
<div class="xy-table-item-label">
|
||||
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>用户名称
|
||||
</div>
|
||||
<div class="xy-table-item-content">
|
||||
<el-input clearable placeholder="请填写用户名称" v-model="detail.name" style="width: 300px;" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<template v-slot:mobile>
|
||||
<div class="xy-table-item">
|
||||
<div class="xy-table-item-label">
|
||||
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>手机号
|
||||
</div>
|
||||
<div class="xy-table-item-content">
|
||||
<el-input clearable placeholder="请填写手机号" v-model="detail.mobile" style="width: 300px;" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-slot:username>
|
||||
<div class="xy-table-item">
|
||||
<div class="xy-table-item-label">
|
||||
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>登录账号
|
||||
</div>
|
||||
<div class="xy-table-item-content">
|
||||
<el-input clearable placeholder="请填写登录账号" v-model="detail.username" style="width: 300px;" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<template v-slot:password>
|
||||
<div class="xy-table-item">
|
||||
<div class="xy-table-item-label">
|
||||
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>用户密码
|
||||
</div>
|
||||
<div class="xy-table-item-content">
|
||||
<el-input clearable placeholder="请填写用户密码" type="password" v-model="detail.password" style="width: 300px;" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-slot:activity_list_id>
|
||||
<div class="xy-table-item">
|
||||
<div class="xy-table-item-label">
|
||||
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>相关活动
|
||||
</div>
|
||||
<div class="xy-table-item-content">
|
||||
<el-select clearable v-model="detail.activity_list_id">
|
||||
<el-option v-for="(item,index) of listActivity" :key="item.id" :value="item.id" :label="item.name">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<template v-slot:status>
|
||||
<div class="xy-table-item">
|
||||
<div class="xy-table-item-label">状态
|
||||
</div>
|
||||
<div class="xy-table-item-content">
|
||||
<el-select clearable v-model="detail.status">
|
||||
<el-option :value="1" label="启用"></el-option>
|
||||
<el-option :value="0" label="禁用"></el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
</xy-dialog>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
save,
|
||||
show
|
||||
} from "@/api/activity/activityUser";
|
||||
|
||||
export default {
|
||||
props: {
|
||||
listActivity: Array
|
||||
},
|
||||
data() {
|
||||
|
||||
return {
|
||||
isShow: false,
|
||||
id: "",
|
||||
type: "add",
|
||||
|
||||
detail: {
|
||||
activity_list_id: "",
|
||||
username: "",
|
||||
password: "",
|
||||
name: "",
|
||||
mobile: "",
|
||||
status: 1
|
||||
},
|
||||
rules: {
|
||||
name: [{
|
||||
required: true,
|
||||
message: "用户名称必填写"
|
||||
}],
|
||||
tag: [{
|
||||
required: true,
|
||||
message: "登录账号必填"
|
||||
}],
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
isShow(newVal) {
|
||||
if (newVal) {
|
||||
if (this.type === 'editor') {
|
||||
this.getDetail()
|
||||
}
|
||||
} else {
|
||||
this.id = ''
|
||||
this.type = ''
|
||||
this.$refs['addActivity'].reset()
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async getDetail() {
|
||||
let res = await show({
|
||||
id: this.id
|
||||
})
|
||||
Object.assign(this.detail, res);
|
||||
this.detail.activity_list_id = parseInt(res.activity_list_id)
|
||||
},
|
||||
editor() {
|
||||
save(this.detail).then(res => {
|
||||
this.isShow = false
|
||||
this.$Message.success("操作成功");
|
||||
this.$emit('refresh')
|
||||
})
|
||||
},
|
||||
|
||||
},
|
||||
computed: {
|
||||
|
||||
},
|
||||
mounted() {
|
||||
let that = this;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.contract-add-plan {
|
||||
min-height: 30px;
|
||||
border: 1px solid #dcdee2;
|
||||
border-radius: 4px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
|
||||
padding: 0 8px;
|
||||
|
||||
&-no-plan {
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
color: #CDD0D5;
|
||||
}
|
||||
}
|
||||
|
||||
.xy-table-item-label {
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.xy-table-item-price {
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
content: '(元)'
|
||||
}
|
||||
|
||||
::v-deep .el-input__clear {
|
||||
position: relative;
|
||||
right: 30px;
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
|
||||
.xy-table-item-price-wan {
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
content: '(万元)'
|
||||
}
|
||||
|
||||
::v-deep .el-input__clear {
|
||||
position: relative;
|
||||
right: 46px;
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,163 @@
|
||||
<template>
|
||||
<div>
|
||||
<lx-header icon="md-apps" style="margin-bottom: 10px; border: 0px; margin-top: 15px" text="活动奖品管理">
|
||||
<div slot="content"></div>
|
||||
<slot>
|
||||
<div class="selects">
|
||||
<div style="display: flex;align-items: center;">
|
||||
<span style="padding: 0 6px;word-break: keep-all;">
|
||||
活动
|
||||
</span>
|
||||
<Select v-model="select.activity_list_id" style="width: 180px;">
|
||||
<Option v-for="(item,index) of listActivity" :key="item.id" :value="item.id" :label="item.name">
|
||||
</Option>
|
||||
</Select>
|
||||
</div>
|
||||
<div>
|
||||
<span style="padding: 0 6px;word-break: keep-all;">
|
||||
关键字
|
||||
</span>
|
||||
<Input v-model="select.keyword" placeholder="请输入关键字" style="width: 180px"></Input>
|
||||
</div>
|
||||
|
||||
<Button style="margin-left: 10px" type="primary" @click="select={page:1,keyword:''}">重置
|
||||
</Button>
|
||||
<Button style="margin-left: 10px" type="primary" @click="doSearch">查询</Button>
|
||||
<Button style="margin-left: 10px" type="primary" @click="add">新增</Button>
|
||||
</div>
|
||||
</slot>
|
||||
</lx-header>
|
||||
|
||||
|
||||
<xy-table :list="list" :table-item="table" @delete="deleteitem"
|
||||
@editor="(row)=>{$refs['addDrawPrize'].id = row.id;$refs['addDrawPrize'].isShow = true;$refs['addDrawPrize'].type = 'editor'}">
|
||||
<template v-slot:btns v-if="type==0 ">
|
||||
|
||||
</template>
|
||||
</xy-table>
|
||||
<addDrawPrize ref="addDrawPrize" :listActivity="listActivity" @refresh="load()"></addDrawPrize>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
index,
|
||||
destroy,
|
||||
show
|
||||
} from "@/api/activity/drawPrize";
|
||||
import {
|
||||
index as activityIndex
|
||||
} from "@/api/activity/index";
|
||||
|
||||
|
||||
import addDrawPrize from '@/views/activity/components/addDrawPrize'
|
||||
export default {
|
||||
components: {
|
||||
addDrawPrize
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
select: {
|
||||
page: 1,
|
||||
page_size: 20,
|
||||
keyword: '',
|
||||
activity_list_id: ""
|
||||
},
|
||||
listActivity: [],
|
||||
total: 0,
|
||||
list: [],
|
||||
table: [{
|
||||
prop: 'activity_list.name',
|
||||
label: '活动名称',
|
||||
fixed: 'left',
|
||||
align: 'left'
|
||||
}, {
|
||||
prop: 'name',
|
||||
label: '奖品名称',
|
||||
align: 'left',
|
||||
|
||||
|
||||
}, {
|
||||
prop: 'total',
|
||||
label: '总数',
|
||||
align: 'right'
|
||||
}, {
|
||||
prop: 'rate',
|
||||
label: '概率',
|
||||
align: 'right'
|
||||
}, {
|
||||
prop: 'has_total',
|
||||
label: '剩余数量',
|
||||
align: 'right'
|
||||
},
|
||||
{
|
||||
prop: 'created_at',
|
||||
label: '创建信息',
|
||||
width: 190,
|
||||
formatter: (v1, v2, value) => {
|
||||
return this.$moment(value).format("YYYY-MM-DD HH:mm:ss");
|
||||
}
|
||||
}
|
||||
],
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
async loadActivity() {
|
||||
const res = await activityIndex({
|
||||
page: 1,
|
||||
page_size: 999
|
||||
})
|
||||
this.listActivity = res.data;
|
||||
},
|
||||
doSearch() {
|
||||
this.select.page = 1;
|
||||
this.load();
|
||||
},
|
||||
add() {
|
||||
this.$refs['addDrawPrize'].isShow = true
|
||||
},
|
||||
pageSizeChange(e) {
|
||||
this.select.page_size = e;
|
||||
this.select.page = 1;
|
||||
this.load();
|
||||
},
|
||||
async load() {
|
||||
const res = await index(this.select)
|
||||
this.total = res.total
|
||||
this.list = res.data
|
||||
},
|
||||
deleteitem(row) {
|
||||
destroy({
|
||||
id: row.id
|
||||
}).then(res => {
|
||||
this.load();
|
||||
this.$Message.success("操作成功");
|
||||
})
|
||||
},
|
||||
pageChange(e) {
|
||||
this.select.page = e
|
||||
this.load()
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.load();
|
||||
this.loadActivity()
|
||||
},
|
||||
created() {
|
||||
let type = parseInt(this.$route.path.split("_")[1]);
|
||||
this.type = this.select.is_auth = type;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.selects {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
&>div {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,152 @@
|
||||
<template>
|
||||
<div>
|
||||
<lx-header icon="md-apps" style="margin-bottom: 10px; border: 0px; margin-top: 15px" text="活动抽奖日志">
|
||||
<div slot="content"></div>
|
||||
<slot>
|
||||
<div class="selects">
|
||||
<div style="display: flex;align-items: center;">
|
||||
<span style="padding: 0 6px;word-break: keep-all;">
|
||||
活动
|
||||
</span>
|
||||
<Select v-model="select.activity_list_id" style="width: 180px;">
|
||||
<Option v-for="(item,index) of listActivity" :key="item.id" :value="item.id" :label="item.name">
|
||||
</Option>
|
||||
</Select>
|
||||
</div>
|
||||
<div>
|
||||
<span style="padding: 0 6px;word-break: keep-all;">
|
||||
关键字
|
||||
</span>
|
||||
<Input v-model="select.keyword" placeholder="请输入关键字" style="width: 180px"></Input>
|
||||
</div>
|
||||
|
||||
<Button style="margin-left: 10px" type="primary" @click="select={page:1,keyword:''}">重置
|
||||
</Button>
|
||||
<Button style="margin-left: 10px" type="primary" @click="doSearch">查询</Button>
|
||||
</div>
|
||||
</slot>
|
||||
</lx-header>
|
||||
|
||||
|
||||
<xy-table :list="list" :table-item="table" >
|
||||
<template v-slot:btns>
|
||||
|
||||
</template>
|
||||
</xy-table>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
index,
|
||||
destroy,
|
||||
show,
|
||||
drawLog
|
||||
} from "@/api/activity/drawPrize";
|
||||
import {
|
||||
index as activityIndex
|
||||
} from "@/api/activity/index";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
select: {
|
||||
page: 1,
|
||||
page_size: 20,
|
||||
keyword: '',
|
||||
activity_list_id: ""
|
||||
},
|
||||
listActivity: [],
|
||||
total: 0,
|
||||
list: [],
|
||||
table: [{
|
||||
prop: 'activity_list.name',
|
||||
label: '活动名称',
|
||||
fixed: 'left',
|
||||
align: 'left'
|
||||
}, {
|
||||
prop: 'name',
|
||||
label: '用户名称',
|
||||
align: 'left',
|
||||
|
||||
|
||||
}, {
|
||||
prop: 'username',
|
||||
label: '登录账号',
|
||||
align: 'center'
|
||||
}, {
|
||||
prop: 'mobile',
|
||||
label: '手机号',
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
prop: 'created_at',
|
||||
label: '创建信息',
|
||||
width: 190,
|
||||
formatter: (v1, v2, value) => {
|
||||
return this.$moment(value).format("YYYY-MM-DD HH:mm:ss");
|
||||
}
|
||||
}
|
||||
],
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
async loadActivity() {
|
||||
const res = await activityIndex({
|
||||
page: 1,
|
||||
page_size: 999
|
||||
})
|
||||
this.listActivity = res.data;
|
||||
},
|
||||
doSearch() {
|
||||
this.select.page = 1;
|
||||
this.load();
|
||||
},
|
||||
add() {
|
||||
this.$refs['addActivityUser'].isShow = true
|
||||
},
|
||||
pageSizeChange(e) {
|
||||
this.select.page_size = e;
|
||||
this.select.page = 1;
|
||||
this.load();
|
||||
},
|
||||
async load() {
|
||||
const res = await drawLog(this.select)
|
||||
this.total = res.total
|
||||
this.list = res.data
|
||||
},
|
||||
deleteitem(row) {
|
||||
destroy({
|
||||
id: row.id
|
||||
}).then(res => {
|
||||
this.load();
|
||||
this.$Message.success("操作成功");
|
||||
})
|
||||
},
|
||||
pageChange(e) {
|
||||
this.select.page = e
|
||||
this.load()
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.load();
|
||||
this.loadActivity()
|
||||
},
|
||||
created() {
|
||||
let type = parseInt(this.$route.path.split("_")[1]);
|
||||
this.type = this.select.is_auth = type;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.selects {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
&>div {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in new issue