需要开发 IM

This commit is contained in:
cbb
2025-12-30 17:52:19 +08:00
parent 8fe2079446
commit d0cf491201
23 changed files with 515 additions and 61 deletions

View File

@@ -20,6 +20,16 @@
// 图片链接
img: ''
})
const onAdd = () => {
console.log(formData)
const data = {
bankName: formData.name,
cardNumber: formData.cardNum,
bankName: formData.khName
}
}
onLoad(e => {
const titltData = {
0: '添加银行卡',
@@ -33,7 +43,11 @@
<template>
<view>
<nav-bar isTopBg isPlaceholder :title="stateData.title"></nav-bar>
<nav-bar isTopBg isPlaceholder :title="stateData.title">
<template #right>
<text class="public-navbar__right-btn" @click="onAdd">添加</text>
</template>
</nav-bar>
<view
v-if="!['101', '102'].includes(stateData.state)"

View File

@@ -1,5 +1,7 @@
<script setup>
import { navigateTo } from '@/utils/router'
import { onShow } from '@dcloudio/uni-app'
import { getUserPayPwd } from '@/api/my-index'
const itemList = [
{
@@ -15,6 +17,15 @@
},
{ title: '实名认证', key: '4', url: '/pages/my-index/wallet/real-id' }
]
const getData = async () => {
const res = await getUserPayPwd()
console.log(res, '===')
}
onShow(() => {
getData()
})
</script>
<template>