3.30解决bug

This commit is contained in:
zoujiandong
2026-03-30 16:12:38 +08:00
parent e3a852cb43
commit 7180e176eb
28 changed files with 429 additions and 425 deletions
+10 -6
View File
@@ -16,7 +16,7 @@
<view class="contentbox">
<view class="form-block">
<view class="label">备注</view>
<input class="input" v-model.trim="remark" :placeholder="groupInfo.nickname || '给患者添加备注名'" placeholder-class="ph" maxlength="20"/>
<input class="input" v-model.trim="remark" :placeholder="groupInfo.nickname || '给患者添加备注名'" placeholder-class="ph" maxlength="20" />
</view>
<view class="row" v-if="nickname">
<view class="left">申请消息为:我是{{ nickname }}</view>
@@ -25,10 +25,10 @@
</view>
</view>
<view class="form-block" @click="goGroup">
<view class="label">分组</view>
<view class="label" @click.stop="goGroup">分组</view>
<view class="iptbox readonly">
<input class="input readonly-input" v-model.trim="groupName" :placeholder="groupInfo.name || '通过分组给患者分类'" placeholder-class="ph" maxlength="20" readonly disabled/>
<uni-icons type="right" size="20" color="#666"></uni-icons>
<view class="input readonly-input" :class="{'ph':!groupInfo.name}" @click.stop="goGroup">{{groupInfo.name || '通过分组给患者分类'}}</view>
<uni-icons type="right" size="20" color="#666" @click.stop="goGroup"></uni-icons>
</view>
</view>
<view class="form-block">
@@ -60,6 +60,7 @@
const noteLength = computed(() => (note.value || '').length)
const isRemarkEmpty = computed(() => !(remark.value || '').trim())
const nickname = ref('')
const tempName=ref('')
const goBack = () => {
uni.navigateBack()
@@ -88,7 +89,7 @@
patientCardData.value = res
groupInfo.value = res.group || {}
// 初始化表单数据
remark.value = res.group?.nickname || ''
remark.value = res.group?.nickname || remark.value
note.value = res.group?.note || ''
groupName.value = res.group?.name || ''
}
@@ -179,7 +180,10 @@
color: #333;
&.readonly-input {
background: transparent;
color: #999;
color: #333;
}
&.ph{
color: #808080;
}
}
.textarea{