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

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

@@ -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: {