caiyuqin hai 2 meses
pai
achega
dd0c956284

+ 7 - 0
src/pages-B/payment/bankCard-edit.vue

@@ -6,6 +6,13 @@ import { getImageUrl } from '@/utils/imageUtil'
 import Upload from '@/components/upload/index.vue';
 import BankCardSelector from './bankCard-select.vue';
 
+definePage({
+  style: {
+    navigationBarTitleText: "绑定银行卡",
+    navigationStyle: "custom",
+  },
+});
+
 // 域名
 const domain = ref('')
 // 审核状态:00-初始,01-签约成功, 02-拒绝, 03-待审核, 04-待签约

+ 7 - 0
src/pages-B/payment/bankCard-list.vue

@@ -3,6 +3,13 @@ import { ref, computed } from 'vue'
 import { getBankcardList } from '@/api/pay'
 import { getImageUrl } from '@/utils/imageUtil'
 
+definePage({
+  style: {
+    navigationBarTitleText: "银行卡",
+    navigationStyle: "custom",
+  },
+});
+
 // 响应式状态
 const cardList = ref<any[]>([])
 const showActions = ref(false)

+ 7 - 0
src/pages-B/payment/certification-status.vue

@@ -3,6 +3,13 @@ import { ref } from 'vue'
 // import uw from '@/utils/uni.webview.1.5.6.js'
 import { getImageUrl } from '@/utils/imageUtil'
 
+definePage({
+  style: {
+    navigationBarTitleText: "认证结果",
+    navigationStyle: "custom",
+  },
+});
+
 // 响应式状态
 const query = ref<Record<string, string>>({})
 const signStatus = ref('')

+ 1 - 0
src/pages-B/payment/detail-withdraw.vue

@@ -7,6 +7,7 @@ import { getImageUrl } from '@/utils/imageUtil'
 definePage({
 	style: {
 		navigationBarTitleText: '提现详情',
+        navigationStyle: "custom",
 	}
 })
 

+ 7 - 0
src/pages-B/payment/web-view.vue

@@ -3,6 +3,13 @@ import { ref, computed } from 'vue'
 import { onBackPress } from '@dcloudio/uni-app'
 import { updateBankCardState } from '@/api/pay'
 
+definePage({
+  style: {
+    navigationBarTitleText: "认证流程",
+    navigationStyle: "custom",
+  },
+});
+
 // 响应式状态
 const webUrl = ref('')
 const memberId = ref('')

+ 8 - 2
src/pages-B/payment/withdrawal.vue

@@ -5,6 +5,13 @@ import type { bankcardListResponse, netWithdrawResponse } from '@/api/types/pay'
 import { getImageUrl } from '@/utils/imageUtil'
 import BankCardSelector from './bankCard-select.vue';
 
+definePage({
+  style: {
+    navigationBarTitleText: "提现",
+    navigationStyle: "custom",
+  },
+});
+
 // 当前选择的银行卡
 const bankCard = ref<bankcardListResponse>({ id: '', bankName: '', bankCardNumber: '', bankImage: '' })
 // 当前可提现余额
@@ -159,8 +166,7 @@ function extractDomain(url: string): string {
 
 <template>
 	<view class="page-container new-content">
-		<up-navbar title="提现" :auto-back="true" bgColor="#ffffff" :placeholder="true" :title-style="{ fontWeight: 'bold' }"></up-navbar>
-
+        <u-navbar title="提现" :autoBack="true" :placeholder="true" :border-bottom="false" :title-style="{ fontWeight: 'bold' }"></u-navbar>
 		<view class="form-card">
 			<view class="section-item" @click="selectBankCard">
 				<view class="label">提现至</view>

+ 0 - 1
src/pages-C/home/sendWriteOff.vue

@@ -75,7 +75,6 @@ const selectValue = (selected: any) => {
     isMounted.value = true;
     return;
   }
-  debugger;
   filterParams.value = selected;
   reloadListRef();
 };