|
|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
|
<cwg-page-wrapper class="create-page" :isHeaderFixed="true">
|
|
|
<cwg-header :title="t('Home.page_customer.item5')" />
|
|
|
- <view id="custom_Transfer" class="transfer-page">
|
|
|
+ <uni-loading v-if="loading" />
|
|
|
+ <view id="custom_Transfer" class="transfer-page" v-else>
|
|
|
<view class="main-content">
|
|
|
<!-- 步骤1:选择转出账户 -->
|
|
|
<view class="box box-step1">
|
|
|
@@ -385,7 +386,9 @@ function isDepositDisabled(item) {
|
|
|
if (transferType.value === 'system' && closeFunc.indexOf('7') !== -1) return true
|
|
|
return false
|
|
|
}
|
|
|
+const loading = ref(false)
|
|
|
const getDateList = async () => {
|
|
|
+ loading.value = true
|
|
|
let res = await customApi.CustomDropdown({ platform: '' })
|
|
|
if (res.code == Code.StatusOK) {
|
|
|
loginOptions.value = res.data
|
|
|
@@ -395,6 +398,7 @@ const getDateList = async () => {
|
|
|
} else {
|
|
|
$pigeon?.MessageError(res.msg)
|
|
|
}
|
|
|
+ loading.value = false
|
|
|
}
|
|
|
|
|
|
// 获取代理列表
|
|
|
@@ -565,17 +569,35 @@ watch(transferType, (newVal) => {
|
|
|
margin-bottom: px2rpx(0) !important;
|
|
|
}
|
|
|
|
|
|
- .tit {
|
|
|
- font-size: px2rpx(16);
|
|
|
- margin-bottom: px2rpx(12) !important;
|
|
|
- font-weight: 600;
|
|
|
+ .tit {
|
|
|
+ font-size: px2rpx(16);
|
|
|
+ font-weight: 600;
|
|
|
+ margin-bottom: px2rpx(16);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ color: var(--color-navy-900);
|
|
|
+ position: relative;
|
|
|
+ padding-left: 20px;
|
|
|
+
|
|
|
+ &:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ width: 0;
|
|
|
+ height: 0;
|
|
|
+ border-top: 6px solid transparent;
|
|
|
+ border-bottom: 6px solid transparent;
|
|
|
+ border-left: 8px solid currentColor;
|
|
|
+ }
|
|
|
|
|
|
- .iconfont {
|
|
|
- font-size: px2rpx(18);
|
|
|
- margin-right: px2rpx(8);
|
|
|
- color: #409eff;
|
|
|
- }
|
|
|
+ .iconfont {
|
|
|
+ margin-right: px2rpx(8);
|
|
|
+ color: var(--color-primary);
|
|
|
+ font-size: px2rpx(18);
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
.title-wrapper {
|
|
|
display: flex;
|