init 初始化
This commit is contained in:
parent
a304e80684
commit
a0a9638f24
Binary file not shown.
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 23 KiB |
@ -32,7 +32,6 @@
|
||||
<script setup>
|
||||
import { reactive, ref, watch, nextTick } from 'vue';
|
||||
import { ElMessage } from 'element-plus'
|
||||
import { getUserWithOutBindList } from '@/api/business/ShopManager/Shops/shop.js';
|
||||
|
||||
// 业务参数
|
||||
const total = ref(0)
|
||||
@ -64,13 +63,13 @@ const openDialog = async () => {
|
||||
|
||||
const getUserListFun = async () => {
|
||||
loading.value = true
|
||||
await getUserWithOutBindList(queryParams).then((res) => {
|
||||
if (res.code == 200) {
|
||||
usersList.value = res.data.result
|
||||
total.value = res.data.totalNum
|
||||
loading.value = false
|
||||
}
|
||||
})
|
||||
// await getUserWithOutBindList(queryParams).then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// usersList.value = res.data.result
|
||||
// total.value = res.data.totalNum
|
||||
// loading.value = false
|
||||
// }
|
||||
// })
|
||||
}
|
||||
|
||||
watch(props, (v) => {
|
||||
|
Loading…
Reference in New Issue
Block a user