钱包提现适配新版本

master
gongfuxiang 2025-07-07 22:32:20 +08:00
parent 0a649bdcd4
commit 72151f4977
5 changed files with 33 additions and 22 deletions

View File

@ -88,7 +88,8 @@
"unique_message": "The unique identifier is empty",
"not_supported_scan_tips": "H5 webpage does not support scanning codes",
"copy_link": "Copy link",
"multilingual": "multilingual"
"multilingual": "multilingual",
"ver_update_tips": "Your WeChat version is too low, please update to the latest version!"
},
"client": {
"weixin": "WeChat",
@ -1778,6 +1779,7 @@
"user-cash": {
"user-cash": {
"3v1gzc": "Unpay",
"678iuy": "Receive Pay",
"t7gtu0": "Paid",
"x47iu3": "Fail Pay"
}

View File

@ -88,7 +88,8 @@
"unique_message": "唯一标识为空",
"not_supported_scan_tips": "H5网页不支持扫码",
"copy_link": "复制链接",
"multilingual": "多语言"
"multilingual": "多语言",
"ver_update_tips": "你的微信版本过低,请更新至最新版本!"
},
"client": {
"weixin": "微信",
@ -1761,7 +1762,8 @@
"user-cash": {
"user-cash": {
"3v1gzc": "未打款",
"t7gtu0": "已打款",
"678iuy": "待收款",
"t7gtu0": "已打款",
"x47iu3": "打款失败"
}
},

View File

@ -1,10 +1,12 @@
<template>
<view :class="theme_view">
<!-- 导航 -->
<view class="nav-child flex-row align-c margin-bottom-lg">
<view v-for="(item, index) in nav_status_list" :key="index">
<view class="item dis-inline-block round margin-right-main tc" :class="nav_status_index == index ? 'cr-main bg-main-light' : 'cr-grey bg-grey-e'" :data-index="index" @tap="nav_event">{{ item.name }}</view>
</view>
<!-- 导航 -->
<view class="nav-child flex-row align-c margin-bottom-lg scroll-view-horizontal">
<scroll-view :scroll-x="true" :show-scrollbar="false">
<block v-for="(item, index) in nav_status_list" :key="index">
<view class="item dis-inline-block round margin-right-main tc" :class="nav_status_index == index ? 'cr-main bg-main-light' : 'cr-grey bg-grey-e'" :data-index="index" @tap="nav_event">{{ item.name }}</view>
</block>
</scroll-view>
</view>
<!-- 列表 -->
@ -12,7 +14,7 @@
<view v-for="(item, index) in data_list" :key="index" class="item padding-main border-radius-main oh bg-white spacing-mb">
<view class="base oh br-b-dashed padding-bottom-main flex-row jc-sb align-c">
<text class="cr-grey-9">{{ item.add_time }}</text>
<text :class="item.status === 0 ? 'cr-black' : item.status === 1 ? 'cr-grey-c' : 'cr-red'">{{ item.status_name }}</text>
<text :class="item.status === 0 ? 'cr-black' : (item.status === 2 ? 'cr-grey-c' : 'cr-red')">{{ item.status_name }}</text>
</view>
<view :data-value="'/pages/plugins/wallet/user-cash-detail/user-cash-detail?id=' + item.id" @tap="url_event" class="content margin-top cp">
<view v-for="(fv, fi) in content_list" :key="fi">
@ -66,9 +68,10 @@
params: null,
nav_status_list: [
{ name: this.$t('common.all'), value: '-1' },
{ name: this.$t('user-cash.user-cash.3v1gzc'), value: '0' },
{ name: this.$t('user-cash.user-cash.t7gtu0'), value: '1' },
{ name: this.$t('user-cash.user-cash.x47iu3'), value: '2' },
{ name: this.$t('user-cash.user-cash.3v1gzc'), value: '0' },
{ name: this.$t('user-cash.user-cash.678iuy'), value: '1' },
{ name: this.$t('user-cash.user-cash.t7gtu0'), value: '2' },
{ name: this.$t('user-cash.user-cash.x47iu3'), value: '3' },
],
nav_status_index: 0,
content_list: [
@ -285,7 +288,7 @@
});
} else {
uni.showModal({
content: '你的微信版本过低,请更新至最新版本。',
content: this.$t('common.ver_update_tips'),
showCancel: false,
});
}

View File

@ -1,10 +1,12 @@
<template>
<view :class="theme_view">
<!-- 导航 -->
<view class="nav-child flex-row align-c margin-bottom-lg">
<view v-for="(item, index) in nav_status_list" :key="index">
<view class="item dis-inline-block round margin-right-main tc" :class="nav_status_index == index ? 'cr-main bg-main-light' : 'cr-grey bg-grey-e'" :data-index="index" @tap="nav_event">{{ item.name }}</view>
</view>
<view class="nav-child flex-row align-c margin-bottom-lg scroll-view-horizontal">
<scroll-view :scroll-x="true" :show-scrollbar="false">
<block v-for="(item, index) in nav_status_list" :key="index">
<view class="item dis-inline-block round margin-right-main tc" :class="nav_status_index == index ? 'cr-main bg-main-light' : 'cr-grey bg-grey-e'" :data-index="index" @tap="nav_event">{{ item.name }}</view>
</block>
</scroll-view>
</view>
<!-- 列表 -->

View File

@ -1,10 +1,12 @@
<template>
<view :class="theme_view">
<!-- 导航 -->
<view class="nav-child flex-row align-c margin-bottom-lg">
<view v-for="(item, index) in nav_status_list" :key="index">
<view class="item dis-inline-block round margin-right-main tc" :class="nav_status_index == index ? 'cr-main bg-main-light' : 'cr-grey bg-grey-e'" :data-index="index" @tap="nav_event">{{ item.name }}</view>
</view>
<!-- 导航 -->
<view class="nav-child flex-row align-c margin-bottom-lg scroll-view-horizontal">
<scroll-view :scroll-x="true" :show-scrollbar="false">
<block v-for="(item, index) in nav_status_list" :key="index">
<view class="item dis-inline-block round margin-right-main tc" :class="nav_status_index == index ? 'cr-main bg-main-light' : 'cr-grey bg-grey-e'" :data-index="index" @tap="nav_event">{{ item.name }}</view>
</block>
</scroll-view>
</view>
<!-- 列表 -->