no message

This commit is contained in:
2025-09-09 18:22:27 +08:00
parent 7a5f0ff247
commit 39b854f67f
4 changed files with 22 additions and 12 deletions
@@ -191,7 +191,7 @@
>
<view style="background-color: #fff;">
<view class="money">
<text>{{orderInfo.amount}}</text>
<text style="color:#000;position: relative;top:40rpx">¥{{orderInfo.amount}}</text>
<text class="text-40 " style="margin-left:20rpx"></text>
<view class="text-28 close" data-flag="false" @tap="showPop(false)">
<u-icon name="close" color="#333333" size="20"></u-icon>
@@ -200,11 +200,12 @@
<view class="mid-tips">
<u-code-input v-model="password"
:dot="true"
borderColor="#EAEAEA"
:maxlength="6"
@finish="finish"
></u-code-input>
</view>
<view class="tips text-28">请输入支付密码</view>
<view class="tips text-28" style="color:#999">请输入支付密码</view>
</view>
</u-keyboard>
@@ -729,6 +730,7 @@ export default {
color: #ff9918;
position: relative;
background-color: #fff;
height:180rpx;
.close{
position: absolute;
top: 20rpx;
@@ -24,7 +24,7 @@
</view>
<view class="_content_item">
<view class="_content_item_title">交易密码<text class="_content_item_setting_pwd"
@click="jumpSettingPwd">(前往设置交易密码)</text></view>
@click="jumpSettingPwd">《股权交割同意书》</text></view>
<up-input placeholder="请输入交易密码" border="surround" v-model="form.password" :customStyle="inputCss"></up-input>
</view>
<view class="_content_item">
@@ -36,6 +36,12 @@
提交
</view>
</view>
<DownPopup :show="tipsShow"
title="股权交割同意书"
articleTitle="给个文案懂不懂"
contentText="我不要doc"
ok="给文案"
></DownPopup>
<up-picker :show="accountShow" :columns="accountOption" keyName="account" itemHeight="34" @confirm="accountConfirm"
:loading="accountLoading" @close="accountShowCheck(false)" @cancel="accountShowCheck(false)"></up-picker>
<up-toast ref="uToastRef"></up-toast>
@@ -46,9 +52,9 @@
import Header from '@/components/header.vue';
import { getSupportBank } from '@/api/common.js';
import { getAcctBalance, exchTransfer, getExchUsers } from '@/api/finance.js';
import DownPopup from '@/components/common/down-popup.vue'
export default {
components: { Header },
components: { Header,DownPopup },
data() {
return {
categotyObj: {},// 可提现金额
@@ -70,6 +76,7 @@ export default {
accountShow: false,
accountOption: [],
accountLoading: false,
tipsShow:false
};
},
onShow() {
@@ -169,9 +176,10 @@ export default {
},
// 设置交易密码
jumpSettingPwd() {
uni.navigateTo({
url: '/pages/mine_package/mine_transaction_password/mine_transaction_password',
})
this.tipsShow = true;
// uni.navigateTo({
// url: '/pages/mine_package/mine_transaction_password/mine_transaction_password',
// })
}
}
}