fix: 系统功能优化完善。

This commit is contained in:
2025-08-17 22:49:10 +08:00
parent 37eccfa941
commit 8525a09be3
6 changed files with 77 additions and 15 deletions

View File

@@ -63,6 +63,7 @@
</view>
<view class="operate" >
<view class="btn filling" @click="handleEdit(item)">修改</view>
<view class="btn filling" @click="handleCopy(item)">复制</view>
<view class="btn filling" @click="handleDelete(item)">删除</view>
</view>
</view>
@@ -165,6 +166,10 @@ function getList() {
uni.navigateTo({ url: `/pages/health/activity/addEdit?id=${item.id}` })
isShow.value = true
}
function handleCopy(item) {
uni.navigateTo({ url: `/pages/health/activity/addEdit?flag=copy&id=${item.id}` })
isShow.value = true
}
function handleAdd() {
uni.navigateTo({ url: `/pages/health/activity/addEdit` })
isShow.value = true