|
|
@@ -2,20 +2,20 @@
|
|
|
<view class="center">
|
|
|
<view class="box" v-for="(item, index) in list" :key="index">
|
|
|
<view class="box-top flex">
|
|
|
- <view class="title">上级用户收款信息(上{{ index + 1 }}级)</view>
|
|
|
- <view class="type">{{ item.status == '1' ? '成功' : item.status == '2' ? '失败' : item.status == '0' && item.voucherimages != null ? '审核中' : '' }}</view>
|
|
|
+ <view class="title">{{$t('foo.sjyhskxxs')}}{{ index + 1 }}{{$t('foo.j')}})</view>
|
|
|
+ <view class="type">{{ item.status == '1' ? $t('foo.cg') : item.status == '2' ? $t('foo.sb') : item.status == '0' && item.voucherimages != null ? $t('foo.shz') : '' }}</view>
|
|
|
</view>
|
|
|
<view class="main flex" style="border-bottom: 1px solid #F0F0F0;">
|
|
|
<view class="left flex">
|
|
|
<view class="avtor" v-if="item.system_get == 0"><image :src="item.checker.avatar || '../../static/error/missing-face.png'" mode=""></image></view>
|
|
|
<view class="main-info">
|
|
|
- <view class="name" v-if="item.system_get == 1">系统平台</view>
|
|
|
+ <view class="name" v-if="item.system_get == 1">{{$t('foo.xtpt')}}</view>
|
|
|
<view class="name" v-else>{{ item.checker.nickname || 'null' }}</view>
|
|
|
<view class="phone" v-if="item.system_get == 0">{{ item.checker.mobile }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="right" v-if="item.system_get == 0">援助金额:¥{{ item.money * 1 }}</view>
|
|
|
- <view class="right" v-if="item.system_get == 1">援助金额:{{ item.money * 1 }}U</view>
|
|
|
+ <view class="right" v-if="item.system_get == 0">{{$t('foo.yzje')}}:¥{{ item.money * 1 }}</view>
|
|
|
+ <view class="right" v-if="item.system_get == 1">{{$t('foo.yzje')}}:{{ item.money * 1 }}U</view>
|
|
|
</view>
|
|
|
<view class="main flex" v-if="item.system_get == 0">
|
|
|
<view class="left flex">
|
|
|
@@ -24,13 +24,13 @@
|
|
|
<view class="name">{{ item.checker.bank_of_deposit || '暂无' }}</view>
|
|
|
<view class="name">{{ item.checker.bank_card_no || '暂无' }}</view>
|
|
|
</view> -->
|
|
|
- <view class="right-box" @click="navTo('/pages/index/male')" style="width: 228rpx;">援助付款信息</view>
|
|
|
+ <view class="right-box" @click="navTo('/pages/index/male')" style="width: 228rpx;">{{$t('foo.yzfkxx')}}</view>
|
|
|
</view>
|
|
|
- <view class="right"><view class="right-box" @click="nav(item)">上传凭证</view></view>
|
|
|
+ <view class="right"><view class="right-box" @click="nav(item)">{{$t('foo.scpz')}}</view></view>
|
|
|
</view>
|
|
|
<view class="" v-if="item.system_get == 1">
|
|
|
<view class="change">
|
|
|
- 请选择TRC20
|
|
|
+ {{$t('foo.qxz')}}
|
|
|
</view>
|
|
|
<view class="erweima">
|
|
|
<tki-qrcode
|
|
|
@@ -50,12 +50,12 @@
|
|
|
/>
|
|
|
</view>
|
|
|
<view class="address">{{ num }}</view>
|
|
|
- <view class="btn" style="margin-top: 50rpx;" @click="setData">复制充币地址</view>
|
|
|
- <view class="btn" @click="nav(item.id)">上传凭证</view>
|
|
|
+ <view class="btn" style="margin-top: 50rpx;" @click="setData">{{$t('foo.zfcbdz')}}</view>
|
|
|
+ <view class="btn" @click="nav(item.id)">{{$t('foo.scpz')}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="tishi">*请线下援助并保存截图相关凭证并上传</view>
|
|
|
+ <view class="tishi">*{{$t('foo.qxxyzbbcjtxgpzbsc')}}</view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
@@ -112,8 +112,8 @@ export default {
|
|
|
nav(item) {
|
|
|
if (item.voucherimages) {
|
|
|
uni.showModal({
|
|
|
- title: '提示',
|
|
|
- content: '已上传凭证,是否重新上传',
|
|
|
+ title: this.$t('foo.ts'),
|
|
|
+ content: this.$t('foo.yscpzsfcxsc'),
|
|
|
success: function(res) {
|
|
|
if (res.confirm) {
|
|
|
console.log('用户点击确定');
|
|
|
@@ -142,12 +142,12 @@ export default {
|
|
|
data: this.num,
|
|
|
success: e => {
|
|
|
uni.showToast({
|
|
|
- title: '复制成功!'
|
|
|
+ title: this.$t('this.fzcg')
|
|
|
});
|
|
|
},
|
|
|
fail(e) {
|
|
|
uni.showToast({
|
|
|
- title: '复制失败',
|
|
|
+ title: this.$t('this.fzsb'),
|
|
|
icon: false
|
|
|
});
|
|
|
console.log(e);
|
|
|
@@ -220,12 +220,14 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.right {
|
|
|
+ text-align: right;
|
|
|
font-size: 30rpx;
|
|
|
font-family: PingFang SC;
|
|
|
font-weight: 500;
|
|
|
color: #fad6b0;
|
|
|
}
|
|
|
.right-box {
|
|
|
+ overflow: hidden;
|
|
|
width: 188rpx;
|
|
|
height: 56rpx;
|
|
|
background: linear-gradient(-74deg, #ce9c6d, #ffecd6);
|