|
|
@@ -41,16 +41,21 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="wallet-actions" v-if="mode === 'customer'">
|
|
|
- <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goPages(1)" v-t="'wallet.item6'"></button>
|
|
|
- <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goPages(2)" v-t="'wallet.item7'"></button>
|
|
|
+ <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goPages(1)"
|
|
|
+ v-t="'wallet.item6'"></button>
|
|
|
+ <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goPages(2)"
|
|
|
+ v-t="'wallet.item7'"></button>
|
|
|
</view>
|
|
|
<view class="wallet-actions" v-if="mode === 'ib'">
|
|
|
- <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goIbPages(1)" v-t="'Custom.Index.Withdrawals'"></button>
|
|
|
- <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goIbPages(2)" v-t="'Home.page_ib.item4'"></button>
|
|
|
+ <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goIbPages(1)"
|
|
|
+ v-t="'Custom.Index.Withdrawals'"></button>
|
|
|
+ <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goIbPages(2)"
|
|
|
+ v-t="'Home.page_ib.item4'"></button>
|
|
|
<!-- <button class="action-btn" @click.stop="goIbPages(3)" v-t="'Ib.Transfer.CommissionIssue'"></button>-->
|
|
|
</view>
|
|
|
<view class="wallet-actions" v-if="mode === 'follow'">
|
|
|
- <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goFollow()" v-t="'Documentary.console.item17'"></button>
|
|
|
+ <button class="action-btn btn btn-outline-danger waves-effect waves-light" @click.stop="goFollow()"
|
|
|
+ v-t="'Documentary.console.item17'"></button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -111,7 +116,7 @@ import { documentaryApi } from '@/service/documentary'
|
|
|
import useGlobalStore from '@/stores/use-global-store'
|
|
|
const globalStore = useGlobalStore()
|
|
|
import { useFilters } from '@/composables/useFilters'
|
|
|
-const { numberDecimal } = useFilters()
|
|
|
+const { numberDecimal } = useFilters()
|
|
|
const isDark = computed(() => globalStore.theme === 'dark')
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
@@ -375,6 +380,7 @@ onUnmounted(() => {
|
|
|
align-items: center;
|
|
|
gap: px2rpx(4);
|
|
|
color: var(--cwg-placeholder-color);
|
|
|
+
|
|
|
.wallet-id {
|
|
|
font-size: 12px;
|
|
|
|
|
|
@@ -499,7 +505,15 @@ onUnmounted(() => {
|
|
|
gap: px2rpx(8);
|
|
|
|
|
|
.menu-label {
|
|
|
- // flex: none;
|
|
|
+ flex: none;
|
|
|
+ max-width: px2rpx(150);
|
|
|
+ white-space: normal;
|
|
|
+ word-wrap: break-word;
|
|
|
+ word-break: break-all;
|
|
|
+ text-align: center;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
}
|
|
|
}
|
|
|
}
|