fix: 问题修复
This commit is contained in:
parent
83ca3a2ef9
commit
cd74929a41
@ -1,12 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="h-full flex flex-col">
|
<view class="h-full flex flex-col">
|
||||||
<view class="flex-shrink-0 px-10 pt-5 text-base font-semibold text-center truncate">{{ surery.name }}</view>
|
<view class="flex-shrink-0 px-10 pt-5 text-base font-semibold text-center truncate">{{ survey.name }}</view>
|
||||||
<view v-if="surery.description"
|
<view v-if="survey.description"
|
||||||
class="flex-shrink-0 px-10 mt-10 text-sm leading-normal text-gray line-clamp-2 text-center">
|
class="flex-shrink-0 px-10 mt-10 text-sm leading-normal text-gray line-clamp-2 text-center">
|
||||||
{{ surery.description }}
|
{{ survey.description }}
|
||||||
</view>
|
</view>
|
||||||
<view class="flex items-center text-gray text-sm px-10 mt-10">
|
<view class="flex items-center text-gray text-sm px-10 mt-10">
|
||||||
<view v-if="surery.enableScore">
|
<view v-if="survey.enableScore">
|
||||||
当前得分:<text class="text-primary text-base font-semibold min-w-5 inline-block">{{ allScore }}
|
当前得分:<text class="text-primary text-base font-semibold min-w-5 inline-block">{{ allScore }}
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
@ -27,7 +27,7 @@
|
|||||||
<view class="flex-grow pl-4 text-gray leading-normal"
|
<view class="flex-grow pl-4 text-gray leading-normal"
|
||||||
:class="quesiton.value && quesiton.value === opt.value ? 'text-primary' : ''">
|
:class="quesiton.value && quesiton.value === opt.value ? 'text-primary' : ''">
|
||||||
{{ opt.label }}
|
{{ opt.label }}
|
||||||
<text v-if="surery.enableScore && opt.score >= 0">
|
<text v-if="survey.enableScore && opt.score >= 0">
|
||||||
( {{ opt.score }}分)
|
( {{ opt.score }}分)
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
@ -52,7 +52,7 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
customerName: { type: String, default: '' },
|
customerName: { type: String, default: '' },
|
||||||
list: { type: Array, default: () => ([]) },
|
list: { type: Array, default: () => ([]) },
|
||||||
surery: { type: Object, default: () => ({}) }
|
survey: { type: Object, default: () => ({}) }
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
allScore() {
|
allScore() {
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
<image :show-menu-by-longpress="true" class="qrcode" src="/static/work/service.png" />
|
<image :show-menu-by-longpress="true" class="qrcode" src="/static/work/service.png" />
|
||||||
</view>
|
</view>
|
||||||
<view class="mt-10 px-15 text-base text-dark leading-normal text-center">
|
<view class="mt-10 px-15 text-base text-dark leading-normal text-center">
|
||||||
扫码或长按添加柚康企微客服
|
扫码或长按添加柚助手客服
|
||||||
</view>
|
</view>
|
||||||
<view class="mt-10 px-15 text-base text-dark leading-normal text-center">
|
<view class="mt-10 px-15 text-base text-dark leading-normal text-center">
|
||||||
我们将为您提供软件使用咨询服务,并支持补充病历、宣教、问卷、回访等多种工作模板。
|
我们将为您提供软件使用咨询服务,并支持补充病历、宣教、问卷、回访等多种工作模板。
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user