This commit is contained in:
zoujiandong
2026-03-17 18:59:46 +08:00
parent 4a22470f38
commit b5cc11ddd3
9 changed files with 600 additions and 62 deletions
+6 -6
View File
@@ -136,10 +136,10 @@
const requestPage = patientListPage.value
const res = await api.patientListByGBKPage({
page: requestPage,
pageNum: requestPage,
current: requestPage,
//pageNum: requestPage,
//current: requestPage,
pageSize: patientListPageSize.value,
size: patientListPageSize.value
//size: patientListPageSize.value
})
if (!isApiSuccess(res)) return
const { list, total, pageNum, pages, isLastPage } = parsePagedPatients(res)
@@ -175,8 +175,8 @@
title: '加载中...',
mask: true
})
if(options.from == 'chatMsg'){
from.value = 'chatMsg';
if(options.from ){
from.value =options.from;
}
// 读取已选中的成员ID
try {
@@ -257,7 +257,7 @@
}
const goBack = () => uni.navigateBack()
const confirmSelect = () => {
if(from.value == 'chatMsg'){
if(from.value == 'chatMsg' || from.value == 'videoDetail'){
if(selectedIds.value.length >200){
uni.showToast({
title: '选择人数不能超过200',