diff --git a/uni-app/src/app/components/diy/addon-list/index.vue b/uni-app/src/app/components/diy/addon-list/index.vue
index 1fc3b9aff..75eb436bd 100644
--- a/uni-app/src/app/components/diy/addon-list/index.vue
+++ b/uni-app/src/app/components/diy/addon-list/index.vue
@@ -83,7 +83,7 @@
}
if (diyComponent.value.list.length == 0) {
- getWapIndexList().then((res) => {
+ getWapIndexList({}).then((res) => {
list.value = res.data;
})
} else {
diff --git a/uni-app/src/app/components/diy/rubik-cube/index.vue b/uni-app/src/app/components/diy/rubik-cube/index.vue
index 69e689dc4..cdbde903b 100644
--- a/uni-app/src/app/components/diy/rubik-cube/index.vue
+++ b/uni-app/src/app/components/diy/rubik-cube/index.vue
@@ -387,7 +387,6 @@
diyComponent.value.list.forEach((item, index) => {
item.imgWidth += 'px';
- item.imgHeight;
});
}
});
diff --git a/uni-app/src/app/pages/auth/bind.vue b/uni-app/src/app/pages/auth/bind.vue
index 13d87e932..a6460ffb5 100644
--- a/uni-app/src/app/pages/auth/bind.vue
+++ b/uni-app/src/app/pages/auth/bind.vue
@@ -87,7 +87,6 @@
const rules = {
'mobile': [
{
-
type: 'string',
required: true,
message: t('mobilePlaceholder'),
diff --git a/uni-app/src/app/pages/member/apply_cash_out.vue b/uni-app/src/app/pages/member/apply_cash_out.vue
index c496621ce..cdd2b6c9f 100644
--- a/uni-app/src/app/pages/member/apply_cash_out.vue
+++ b/uni-app/src/app/pages/member/apply_cash_out.vue
@@ -132,8 +132,7 @@
const cashOutMoney = computed(() => {
return memberStore.info ? memberStore.info[ applyData.account_type ] : 0
})
-
-
+
watch(() => applyData.transfer_type, (nval) => {
switch (nval) {
case 'bank':
diff --git a/uni-app/src/app/pages/member/commission.vue b/uni-app/src/app/pages/member/commission.vue
index f060bbaf2..e6ec917ec 100644
--- a/uni-app/src/app/pages/member/commission.vue
+++ b/uni-app/src/app/pages/member/commission.vue
@@ -41,6 +41,7 @@
import { t } from '@/locale'
import { moneyFormat, redirect, img } from '@/utils/common';
import useMemberStore from '@/stores/member'
+
const memberStore = useMemberStore();
const applyCashOut = ()=> {
uni.setStorageSync('cashOutAccountType', 'commission')
diff --git a/uni-app/src/app/pages/member/detailed_account.vue b/uni-app/src/app/pages/member/detailed_account.vue
index 1472818a9..a290488bd 100644
--- a/uni-app/src/app/pages/member/detailed_account.vue
+++ b/uni-app/src/app/pages/member/detailed_account.vue
@@ -22,6 +22,7 @@
import useMescroll from '@/components/mescroll/hooks/useMescroll.js';
import { getBalanceList, getMoneyList, getCommissionList} from '@/app/api/member';
import { onPageScroll, onReachBottom, onLoad, onShow } from '@dcloudio/uni-app';
+
const { mescrollInit, downCallback, getMescroll } = useMescroll(onPageScroll, onReachBottom);
const type = ref('')
diff --git a/uni-app/src/app/pages/member/location_address_edit.vue b/uni-app/src/app/pages/member/location_address_edit.vue
index 1370b79ed..b5ecdb4e8 100644
--- a/uni-app/src/app/pages/member/location_address_edit.vue
+++ b/uni-app/src/app/pages/member/location_address_edit.vue
@@ -61,7 +61,7 @@
lat: '',
lng: '',
address: '',
- address_name: '学府街学府街学府街',
+ address_name: '学府街',
full_address: '',
is_default: 0,
area: '',
@@ -151,8 +151,6 @@
}
});
}
-
-
\ No newline at end of file
diff --git a/uni-app/src/app/pages/member/point.vue b/uni-app/src/app/pages/member/point.vue
index 4d575bba0..3565c4ae2 100644
--- a/uni-app/src/app/pages/member/point.vue
+++ b/uni-app/src/app/pages/member/point.vue
@@ -21,6 +21,7 @@ import MescrollBody from '@/components/mescroll/mescroll-body/mescroll-body.vue'
import MescrollEmpty from '@/components/mescroll/mescroll-empty/mescroll-empty.vue';
import useMescroll from '@/components/mescroll/hooks/useMescroll.js';
import { onPageScroll, onReachBottom } from '@dcloudio/uni-app';
+
const { mescrollInit, downCallback, getMescroll } = useMescroll(onPageScroll, onReachBottom);
let pointList = ref>([]);
diff --git a/uni-app/src/components/tabbar/tabbar.vue b/uni-app/src/components/tabbar/tabbar.vue
index 545dfc41c..dd5461243 100644
--- a/uni-app/src/components/tabbar/tabbar.vue
+++ b/uni-app/src/components/tabbar/tabbar.vue
@@ -1,6 +1,7 @@
-
+
{
- redirect({ url: `${name}` })
+ redirect({
+ url: `${name}`,
+ mode: 'reLaunch'
+ })
}