Update notice-popup.vue

This commit is contained in:
huxuejian 2026-04-21 14:45:02 +08:00
parent 351b087d89
commit a6a997f079

View File

@ -2,25 +2,26 @@
<uni-popup ref="popup" type="center" :mask-click="false">
<view class="bg-white rounded overflow-hidden" style="width: 690rpx;">
<view class="px-15 py-12 text-center text-lg font-semibold text-dark">
提示
团队模式说明
</view>
<view class="mt-10 px-15">
<view class="px-15">
<scroll-view scroll-y="true" style="max-height: 60vh;">
<view v-for="(i, idx) in noticeList" :key="idx" class="text-dark text-base" :class="idx > 0 ? 'mt-5' : ''">{{
i }}
<view v-for="(i, idx) in noticeList" :key="idx" class="text-dark text-base leading-24"
:class="idx > 0 ? 'mt-5' : ''">{{
i }}
</view>
</scroll-view>
</view>
<button-footer :showShadow="false" :showCancel="false" confirmText="我已知晓" @confirm="close()" />
<view class="py-10 px-15">
<view class="py-10 bg-primary text-base text-white text-center rounded-full" @click="close()">我已知晓</view>
</view>
<!-- <button-footer :showShadow="false" :showCancel="false" confirmText="我已知晓" @confirm="close()" /> -->
</view>
</uni-popup>
</template>
<script setup>
import { ref, watch } from 'vue';
import { toast } from '@/utils/widget';
import ButtonFooter from '@/components/button-footer.vue';
const emits = defineEmits(['close'])
const props = defineProps({
@ -33,9 +34,9 @@ const popup = ref();
const noticeList = [
'团队模式支持您作为团队负责人,邀请同事或您的助理成为团队成员,协助您共同开展患者管理服务。',
'团队成员可以:',
'a、协助您回复患者的咨询问题;',
'b、协助您开展预问诊工作,整理患者档案资料信息;',
'c、根据您规划的随访路径,接收回访任务并跟进执行。'
' 1、协助您回复患者的咨询问题;',
' 2、协助您开展预问诊工作,整理患者档案资料信息;',
' 3、根据您规划的随访路径,接收回访任务并跟进执行。'
]
function close() {
@ -56,4 +57,8 @@ watch(() => props.visible, n => {
.mt-5 {
margin-top: 10rpx;
}
.leading-24 {
line-height: 48rpx;
}
</style>