xbx #115

Merged
theluyuan merged 5 commits from xbx into master 2020-11-03 08:57:46 +00:00
Showing only changes of commit 07d5ee35fc - Show all commits

View File

@ -146,7 +146,7 @@
<a-select-option <a-select-option
v-for="(item, index) in willsay" v-for="(item, index) in willsay"
:key="index" :key="index"
:value="item.languageid" :value="item.value"
> >
{{ item.name }} {{ item.name }}
</a-select-option> </a-select-option>
@ -224,6 +224,7 @@ import {
checksmscode, checksmscode,
getquhaolist, getquhaolist,
getwillsay, getwillsay,
interests,
register, register,
sendsms, sendsms,
} from "@/api"; } from "@/api";
@ -262,7 +263,7 @@ export default defineComponent({
name: "中国", name: "中国",
}, },
]); ]);
getwillsay().then((res) => { interests().then((res) => {
willsay.value = res; willsay.value = res;
}); });
onMounted(async () => { onMounted(async () => {