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
@@ -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',
// })
}
}
}