init 初始化

This commit is contained in:
Abbh1 2023-11-20 21:50:17 +08:00
parent a304e80684
commit a0a9638f24
3 changed files with 8 additions and 9 deletions

2
.env
View File

@ -1,3 +1,3 @@
# 页面标题
VITE_APP_TITLE = '小程序模板'
VITE_APP_TITLE = 'KY1Road标讯'

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -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) => {