新增服务增加描述及单位的持久化;实名处增加用途说明

This commit is contained in:
donqi 2022-07-24 11:06:21 +08:00
parent ca67a097a1
commit 3c3a7cba82
3 changed files with 15 additions and 8 deletions

View File

@ -5,7 +5,7 @@
<view class="cu-dialog">
<view class="padding-xl">
<view class="cuIcon-profile big-icon padding-tb text-main-color"></view>
<view>您还未进行实名认证</view>
<view>您还未进行实名认证因涉及上门家政服务需完成实名认证填写并通过审核以保证用户安全</view>
</view>
<view class="cu-bar bg-white solid-top">
<view class="action margin-0 flex-sub text-black" data-modal="showTakeCertifiedModal"

View File

@ -17,6 +17,9 @@
</view>
<form v-if="curStep === 0">
<view class="margin-bottom-with-bar">
<view class="bg-white margin-top-sm text-red padding">
因涉及上门家政服务需完成实名认证填写并通过审核以保证用户安全
</view>
<view class="bg-white margin-top-sm">
<view class="cu-bar padding-lr solid-bottom">
<view class="text-lg">
@ -233,6 +236,9 @@
</view>
<!-- 认证过的展示认证内容及结果 -->
<view v-else>
<view class="bg-white margin-top-sm text-red padding">
因涉及上门家政服务需完成实名认证填写并通过审核以保证用户安全
</view>
<view class="margin-lr-sm margin-top padding margin-bottom-lg bg-white">
<view class="padding-bottom-sm">
<text class="text-black text-bold">姓名</text>
@ -256,17 +262,17 @@
<view class="padding-sm option-card" :class="curCertifyInfo.companySize === 0 ? 'border-main-color' : ''">
<view class="text-black text-lg margin-tb-xs">社区服务</view>
<view class="text-gray option-content margin-tb-xs">个体或公司经营执照认证服务团队1-3</view>
<radio style="transform:scale(1)" class="main-color flex justify-end" :checked="curCertifyInfo.companySize === 0"></radio>
<radio style="transform:scale(1)" class="main-color flex justify-end" :checked="curCertifyInfo.companySize === 0" disabled></radio>
</view>
<view class="padding-sm option-card" :class="curCertifyInfo.companySize === 1 ? 'border-main-color' : ''">
<view class="text-black text-lg margin-tb-xs">区域服务</view>
<view class="text-gray option-content margin-tb-xs">个体或公司经营执照认证服务团队3-10</view>
<radio style="transform:scale(1)" class="main-color flex justify-end" :checked="curCertifyInfo.companySize === 1"></radio>
<radio style="transform:scale(1)" class="main-color flex justify-end" :checked="curCertifyInfo.companySize === 1" disabled></radio>
</view>
<view class="padding-sm option-card" :class="curCertifyInfo.companySize === 2 ? 'border-main-color' : ''">
<view class="text-black text-lg margin-tb-xs">城市服务</view>
<view class="text-gray option-content margin-tb-xs">个体或公司经营执照认证服务团队10-50</view>
<radio style="transform:scale(1)" class="main-color flex justify-end" :checked="curCertifyInfo.companySize === 2"></radio>
<radio style="transform:scale(1)" class="main-color flex justify-end" :checked="curCertifyInfo.companySize === 2" disabled></radio>
</view>
</radio-group>
<view class="padding-bottom-sm">
@ -303,7 +309,7 @@
<view class="text-black text-bold">其他服务</view>
<checkbox-group class="padding-bottom-sm padding-top-xs">
<label class="margin-right-sm" v-for="(item, index) in additionalServ">
<checkbox style="transform:scale(0.7)" class="round main-color" :checked="checkIfInArray(item.id, curCertifyInfo.otherServArr)" :value="item.id"/>
<checkbox disabled style="transform:scale(0.7)" class="round main-color" :checked="checkIfInArray(item.id, curCertifyInfo.otherServArr)" :value="item.id"/>
<text class="margin-left-xs">{{item.name}}</text>
</label>
</checkbox-group>

View File

@ -58,8 +58,8 @@
</view> -->
<!-- <view class="flex-sub margin-left-xs"> -->
<view class="flex-sub">
<input class="radius-input" @input="inputSpecs($event, index, 'unit')"
:value="item.unit" placeholder="单位"></input>
<input class="radius-input" @input="inputSpecs($event, index, 'goodsUnit')"
:value="item.goodsUnit" placeholder="单位"></input>
<!-- <my-uni-combox :candidates="productUnits" placeholder="请选择" v-model="formData.productUnit">
</my-uni-combox> -->
</view>
@ -551,6 +551,7 @@
let params = {
goodsName: this.formData.servName,
goodsDesc: this.formData.servDesc,
deptGoodsCategoryId: this.formData.category[2].goodsCategoryId,
goodsStandardList: goodsStandardList,
goodsAreaList: goodsAreaList,