修改BUG

This commit is contained in:
cbb
2026-01-15 17:22:20 +08:00
parent 220b12e945
commit cfdc2ea7b0
24 changed files with 569 additions and 83 deletions

View File

@@ -154,13 +154,7 @@
<template>
<view v-if="!stateData.loading">
<nav-bar isTopBg isPlaceholder :title="stateData.title">
<template #right>
<text class="public-navbar__right-btn" @click="onAdd">
{{ formData.id ? '修改' : '添加' }}
</text>
</template>
</nav-bar>
<nav-bar isTopBg isPlaceholder :title="stateData.title"></nav-bar>
<view
v-if="!['101', '102'].includes(stateData.state)"
@@ -208,6 +202,13 @@
></cb-file-picker>
</CardInput>
</view>
<!-- 底部按钮 -->
<bottom-view>
<cb-button @click="onAdd">
{{ formData.id ? '修改' : '添加' }}
</cb-button>
</bottom-view>
</view>
</template>

View File

@@ -94,9 +94,7 @@
<template>
<view class="edit-password">
<nav-bar isTopBg isPlaceholder title="交易密码">
<template #right>
<text class="top-right-name" @click="onEdit">确认</text>
</template>
</nav-bar>
<view v-if="formData.state === '1'" class="input-box">
@@ -123,6 +121,13 @@
type="password"
></CardInput>
</view>
<!-- 底部按钮 -->
<bottom-view>
<cb-button @click="onEdit">
确认
</cb-button>
</bottom-view>
</view>
</template>

View File

@@ -74,6 +74,7 @@
const onTop = id => {
formData.type = id
dataList.value = []
getData(1, formData.pageSize)
}