个人幸运礼物数据分区改为读接口

This commit is contained in:
dragon
2024-12-12 11:45:59 +08:00
parent 47a67f4718
commit 91e295e3b7
3 changed files with 29 additions and 46 deletions

View File

@@ -2,6 +2,15 @@ import request from '@/utils/request';
import { genQueryParam } from '@/utils/maintainer';
import qs from 'qs';
// 分区接口
export const listPartitionInfo = query => {
return request({
url: '/partition/listPartitionInfo',
method: 'get',
params: query
});
};
// 奖池拉框
export const listType = query => {
return request({

View File

@@ -12,9 +12,9 @@
>
<el-option
v-for="item in inquire.options"
:key="item.type"
:label="item.name"
:value="item.type"
:key="item.id"
:label="item.desc"
:value="item.id"
>
</el-option>
</el-select>
@@ -139,7 +139,7 @@
</div>
</template>
<script>
import { personal, updateUserMulti } from "@/api/luckGift/luckGift";
import { personal, updateUserMulti,listPartitionInfo } from "@/api/luckGift/luckGift";
// @ts-ignore
import { dateFormat } from "@/utils/system-helper";
// @ts-ignore
@@ -157,25 +157,8 @@ export default {
inquire: {
userId: "",
time: "",
value: 2,
options: [
{
name: "阿拉伯区",
type: 2,
},
{
name: "英语区",
type: 1,
},
{
name: "华语区",
type: 4,
},
{
type: 8,
name: "土耳其区",
},
],
value: "",
options: [],
},
// 表格
tableData: [],
@@ -189,6 +172,10 @@ export default {
};
},
created() {
listPartitionInfo().then((res) => {
this.inquire.options = res.data;
this.inquire.value = this.inquire.options[0].id;
});
// this.getData();
},
methods: {

View File

@@ -7,9 +7,9 @@
<el-select v-model="inquire.value" placeholder="请选择">
<el-option
v-for="item in inquire.options"
:key="item.value"
:label="item.label"
:value="item.value"
:key="item.id"
:label="item.desc"
:value="item.id"
>
</el-option>
</el-select>
@@ -54,7 +54,7 @@
</div>
</template>
<script>
import { platform } from "@/api/luckGift/luckGift";
import { platform,listPartitionInfo } from "@/api/luckGift/luckGift";
// @ts-ignore
import { dateFormat } from "@/utils/system-helper";
// @ts-ignore
@@ -70,25 +70,8 @@ export default {
totalProductionRatio: "0",
//查询所需条件对象
inquire: {
value: 2,
options: [
{
value: 2,
label: "阿拉伯区",
},
{
value: 1,
label: "英语区",
},
{
value: 4,
label: "华语区",
},
{
value: 8,
label: "土耳其区",
},
],
value: "",
options: [],
time: "",
},
// 表格
@@ -100,6 +83,10 @@ export default {
};
},
created() {
listPartitionInfo().then((res) => {
this.inquire.options = res.data;
this.inquire.value = this.inquire.options[0].id;
});
// this.getData();
},
methods: {