123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792 |
- <template>
- <navBar title="ETC开户新办申请-个人" :scrollTop="scrollTop"></navBar>
- <navBgCar></navBgCar>
- <view class="content-wrap">
- <view @click="tabChange(true)">
- <view :class="state.isMyPeopple ? 'big' : 'nomal'"> 本人车辆 </view>
- <view :class="state.isMyPeopple ? 'tip' : ''"> </view>
- </view>
- <view @click="tabChange(false)" style="margin-left: 60rpx" class="" v-if="state.isEnableOther">
- <view :class="state.isMyPeopple ? 'nomal' : 'big'"> 他人车辆 </view>
- <view :class="state.isMyPeopple ? '' : 'tip'"> </view>
- </view>
- </view>
- <view v-if="state.isMyPeopple" class="content">
- <view class="item-tips">
- <view class="title"> 上传后请核对识别信息 </view>
- <view class="tip"> 如有错误请及时手动修改 </view>
- </view>
- <view class="picture-wrapper" @click="cardImageOcr('1')">
- <view class="bg">
- <view class="">
- <view class="name"> 人像面 </view>
- <view class="value"> 上传身份证的人像面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image v-if="!state.form.userPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/renxiang.png`">
- </image>
- <image v-else class="icon" :src="strReplace(state.form.userPosImgUrl)"></image>
- </view>
- </view>
- <view class="picture-wrapper" @click="cardImageOcr('2')">
- <view class="bg">
- <view class="">
- <view class="name"> 国徽面 </view>
- <view class="value"> 上传身份证的国徽面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image v-if="!state.form.userNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/guohui.png`">
- </image>
- <image v-else class="icon" :src="strReplace(state.form.userNegImgUrl)"></image>
- </view>
- </view>
- <view class="shibie-wrapper">
- <view class="title"> 识别内容如下 </view>
- <u-form label-width="200" :model="state.form" ref="uForm">
- <u-form-item label="姓名">
- <u-input v-model="state.form.userName" placeholder='请输入姓名' :disabled="state.isEnableOCRData"/>
- </u-form-item>
-
- <!-- <u-form-item label="性别">
- <u-input placeholder='请选择性别' v-model="state.form.gender" @click="userGenderAction()"
- type="select" />
- </u-form-item> -->
- <u-form-item label="身份证号">
- <u-input placeholder='请输入身份证' type="idcard" v-model="state.form.userIdNum" :disabled="state.isEnableOCRData"/>
- </u-form-item>
- <u-form-item label="地址">
- <u-input placeholder='请输入地址' height='38' type='textarea' :autoHeight='true'
- v-model="state.form.address" :disabled="state.isEnableOCRData"/>
- </u-form-item>
- <!-- <u-form-item label="证件有效期">
- <u-input v-model="state.form.begindate" type="select" />
- </u-form-item> -->
- <u-form-item label="联系方式">
- <u-input placeholder='请输入联系方式' type="number" v-model="state.form.tel" />
- </u-form-item>
- </u-form>
- </view>
-
- <view class="green-tip">
- 如识别信息有误,请手动修改,确认无误后,点击下一步!
- </view>
-
- <view class="action">
- <button type="default" class="button" @click="savaHandle()">
- 下一步
- </button>
- </view>
- </view>
-
- <view v-else class="content">
- <view class="title"> 车主信息 </view>
- <view class="item-tips">
- <view class="title"> 上传后请核对识别信息 </view>
- <view class="tip"> 如有错误请及时手动修改 </view>
- </view>
- <view class="picture-wrapper" @click="cardImageOcr('1')">
- <view class="bg">
- <view class="">
- <view class="name"> 人像面 </view>
- <view class="value"> 上传身份证的人像面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image v-if="!state.form.userPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/renxiang.png`">
- </image>
- <image v-else class="icon" :src="state.form.userPosImgUrl"></image>
- </view>
- </view>
- <view class="picture-wrapper" @click="cardImageOcr('2')">
- <view class="bg">
- <view class="">
- <view class="name"> 国徽面 </view>
- <view class="value"> 上传身份证的国徽面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image v-if="!state.form.userNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/guohui.png`">
- </image>
- <image v-else class="icon" :src="state.form.userNegImgUrl"></image>
- </view>
- </view>
-
- <view class="shibie-wrapper">
- <view class="title"> 识别内容如下 </view>
- <u-form label-width="200" :model="state.form" ref="uForm">
- <u-form-item label="姓名">
- <u-input inputAlign="right" placeholder='请输入姓名' v-model="state.form.userName" :disabled="state.isEnableOCRData"/>
- </u-form-item>
- <!-- <u-form-item label="性别">
- <u-input inputAlign="right" placeholder='请选择性别' v-model="state.form.gender" type="select" />
- </u-form-item> -->
- <u-form-item label="身份证号">
- <u-input inputAlign="right" placeholder='请输入身份证号' v-model="state.form.userIdNum" :disabled="state.isEnableOCRData"/>
- </u-form-item>
- <!-- <u-form-item label="">
- <u-input v-model="state.form.userIdNum" />
- </u-form-item> -->
- <!-- <u-form-item label="证件有效期">
- <u-input v-model="state.form.begindate" type="select" />
- </u-form-item> -->
- <u-form-item label="联系方式">
- <u-input inputAlign="right" placeholder='请输入联系方式' v-model="state.form.tel" />
- </u-form-item>
- </u-form>
- </view>
- <view style="margin-top: 30rpx" class="title"> 代办人信息 </view>
- <view class="item-tips">
- <view class="title"> 上传后请核对识别信息 </view>
- <view class="tip"> 如有错误请及时手动修改 </view>
- </view>
- <view class="picture-wrapper" @click="cardDbImageOcr('1')">
- <view class="bg">
- <view class="">
- <view class="name"> 人像面 </view>
- <view class="value"> 上传身份证的人像面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image v-if="!state.form.agentPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/renxiang.png`">
- </image>
- <image v-else class="icon" :src="state.form.agentPosImgUrl"></image>
- </view>
- </view>
- <view class="picture-wrapper" @click="cardDbImageOcr('2')">
- <view class="bg">
- <view class="">
- <view class="name"> 国徽面 </view>
- <view class="value"> 上传身份证的国徽面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image v-if="!state.form.agentNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/guohui.png`">
- </image>
- <image v-else class="icon" :src="state.form.agentNegImgUrl"></image>
- </view>
- </view>
- <view class="picture-wrapper" @click="cardFileImageUpdate()" v-if='state.isEnableBook'>
- <view class="bg">
- <view class="">
- <view class="name"> 委托书 </view>
- <view class="value"> 上传文字清晰的委托书 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image v-if="!state.form.proxyUrl" class="icon" :src="`${$imgUrl}applyCard/weituoshu.png`">
- </image>
- <image v-else class="icon" :src="state.form.proxyUrl"></image>
- </view>
- </view>
- <view class="shibie-wrapper">
- <view class="title"> 识别内容如下 </view>
- <u-form label-width="200" :model="state.form" ref="uForm">
- <u-form-item label="经办人姓名">
- <u-input inputAlign="right" placeholder='请输入经办人姓名' v-model="state.form.agentName" :disabled="state.isEnableOCRData"/>
- </u-form-item>
- <!-- <u-form-item label="性别">
- <u-input v-model="state.form.agentGender" type="select" />
- </u-form-item> -->
- <u-form-item label="身份证号">
- <u-input inputAlign="right" placeholder='请输入身份证号' v-model="state.form.agentIdNum" :disabled="state.isEnableOCRData"/>
- </u-form-item>
- <!-- <u-form-item label="证件有效期">
- <u-input v-model="state.form.begindate" type="select" />
- </u-form-item> -->
- <u-form-item label="联系方式">
- <u-input inputAlign="right" placeholder='请输入联系方式' v-model="state.form.agentTel" />
- </u-form-item>
- </u-form>
- </view>
-
- <view class="green-tip">
- 如识别信息有误,请手动修改,确认无误后,点击下一步!
- </view>
-
- <view class="action">
- <button type="default" class="button" @click="savaHandle()">
- 下一步
- </button>
- </view>
- </view>
- <u-select mode="single-column" :list="state.genderList" v-model="state.genderShow" @confirm="genderSelectConfirm">
- </u-select>
- </template>
-
- <script setup lang="ts">
- import navBgCar from "./components/nav-bg-car3";
- import {
- pathToBase64
- } from "@/utils/image-tools/index.js";
- import {
- reactive,
- ref,
- } from "vue";
- import {
- msg,
- checkStr
- } from "@/utils/utils";
- import {
- onLoad,
- onPageScroll,
- } from "@dcloudio/uni-app";
- import {
- etcOcrCard,
- etcUserCardInfoSubmit,
- fileUpload,
- register,
- envs,
- getUserMsg
- } from "@/utils/network/api.js";
-
- import {
- request
- } from "@/utils/network/request.js";
-
- import {
- stringToJson
- } from "@/utils/network/encryption";
- import {
- setItem,
- getItem,
- } from "@/utils/storage";
- import {
- getCodeName
- } from "@/datas/queryKey.js";
- import navBar from "@/components/nav-bar/nav-bar2.vue";
- const scrollTop = ref(0)
- const state = reactive({
- genderList: [{
- value: '男',
- label: '男'
- },
- {
- value: '女',
- label: '女'
- }
- ],
- form: {
- orderId: "", //订单ID
- userName: "", //开户人姓名
- userIdType: "101", //用户证件类型 101//身份证
- userIdNum: "", //用户证件号码
- userPosImgUrl: "", //身份证正面
- userNegImgUrl: "", //身份证反面
- tel: "", //开户人手机号
- address: "", //开户人地址
- sceneType: "", //用户协议支撑服务场景(发行服务机构和用户签订的协议)
- channelId: "", //渠道id
- gender: "",
- customerIdVld: "",
- agentName: "",
- agentGender: "",
- agentTel: '',
- agentPhone: "",
- agentIdType: "101",
- agentIdNum: "",
- agentPosImgUrl: "",
- agentNegImgUrl: "",
- proxyUrl: "",
- agentAddress: "",
- agentIdVld: '',
- opId: '',
- orderSource: 'WECHAT',
- },
-
- genderShow: false,
- orderId: "",
- vehiclePlateColor: undefined,
- isMyPeopple: true,
- isSign:'',
- isEnableOther:true, //小程序是否支持他人办理
- isEnableBook:true, //他人办理时是否上传委托书
- isEnableInfo:true, //小程序信息带出
- isEnableOCRData:true, //允许修改OCR识别出来的数据
- });
-
- const userGenderAction = () => {
- state.genderShow = true;
- };
-
- const genderSelectConfirm = (e) => {
- state.form.gender = ''
- e.map((val, index) => {
- state.form.gender = val.label;
- })
- };
-
- const savaHandle = () => {
- if (!checkStr(state.form.userIdNum, 'card')) {
- msg('请输入正确身份证');
- return;
- }
- if (!checkStr(state.form.tel, 'mobile')) {
- msg('请输入正确手机号');
- return;
- }
-
- //如果未登录||新用户
- // if (!getItem('openId')) {
-
- let data = {
- userType: "PERSONAL",
- idNum: state.form.userIdNum,
- idType: state.form.userIdType,
- mobile: state.form.tel,
- name: state.form.userName,
- gender: state.form.gender == '男' ? 'MALE' : 'FEMALE',
- certifyChannel: "BAIDUOCR",
- address: state.form.address,
- agentIdNum: state.form.agentIdNum,
- agentIdType: state.form.agentIdType,
- agentName: state.form.agentName,
- department: "",
- userIdImgUrl: state.form.userPosImgUrl,
- userIdImgBase64: "",
- }
- const options = {
- type: 2,
- data: data,
- method: "POST",
- showLoading: true,
- };
- request(register, options).then((res) => {
- let result = stringToJson(res.bizContent);
- if (result.accessToken && result.openId) {
- setItem('token', result.accessToken)
- setItem('openId', result.openId)
-
- state.form.opId = result.openId;
- let data = state.form;
- const options = {
- type: 2,
- data: data,
- method: "POST",
- showLoading: true,
- };
- request(etcUserCardInfoSubmit, options).then((res) => {
- // let result = stringToJson(res.bizContent);
- console.log(res);
- uni.redirectTo({
- url: `/subpackage/applyCard/car-release?orderId=${state.orderId}&vehiclePlateColor=${state.vehiclePlateColor}&type=1&isSign=${state.isSign}`,
- });
- });
- }
- })
-
- // } else {
- //已经登录
- // let data = state.form;
- // const options = {
- // type: 2,
- // data: data,
- // method: "POST",
- // showLoading: true,
- // };
- // request(etcUserCardInfoSubmit, options).then((res) => {
- // // let result = stringToJson(res.bizContent);
- // console.log(res);
- // uni.redirectTo({
- // url: `/subpackage/applyCard/car-release?orderId=${state.orderId}&vehiclePlateColor=${state.vehiclePlateColor}&isSign=${state.isSign}`,
- // });
- // });
- // }
- };
- const cardFileImageUpdate = () => {
- uni.chooseImage({
- count: 1, //只能选取一张照片
- sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
- sourceType: ["camera", "album"], //从相册选择
- success: function (res) {
- pathToBase64(res.tempFilePaths[0])
- .then((path) => {
- var data = {
- fileBase64: path,
- };
-
- const options = {
- type: 2,
- data: data,
- method: "POST",
- showLoading: true,
- };
- request(fileUpload, options).then((res) => {
- const data = stringToJson(res.bizContent);
- console.log(data);
- state.form.proxyUrl = data.data.url;
- });
- })
- .catch((error) => { });
- },
- });
- };
-
- //tab切换
- const tabChange = (val : any) => {
- if (val) {
- state.isMyPeopple = true;
- } else {
- state.isMyPeopple = false;
- }
- state.form = {
- orderId: state.orderId, //订单ID
- userName: "", //开户人姓名
- userIdType: "101", //用户证件类型 101//身份证
- userIdNum: "", //用户证件号码
- userPosImgUrl: "", //身份证正面
- userNegImgUrl: "", //身份证反面
- tel: "", //开户人手机号
- address: "", //开户人地址
- sceneType: "", //用户协议支撑服务场景(发行服务机构和用户签订的协议)
- channelId: "", //渠道id
- gender: "",
- customerIdVld: "",
- agentName: "",
- agentGender: "",
- agentTel: '',
- agentPhone: "",
- agentIdType: "101",
- agentIdNum: "",
- agentPosImgUrl: "",
- agentNegImgUrl: "",
- proxyUrl: "",
- agentAddress: "",
- agentIdVld: '',
- };
- };
- onLoad((option : any) => {
- state.form.orderId = option.orderId;
- state.orderId = option.orderId;
- state.vehiclePlateColor = option.vehiclePlateColor;
- state.form.opId = getItem('openId')??'';
- state.isSign=option.isSign;
- //state.fromOrder = option.fromOrder //是否来自订单-修改资料
- getGlobalParam(); //全局配置数据
- });
-
- //监听页面滚动
- onPageScroll((e) => {
- scrollTop.value = e.scrollTop;
- });
-
- const cardDbImageOcr = (val : any) => {
- var imageType = val;
- uni.chooseImage({
- count: 1, //只能选取一张照片
- sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
- sourceType: ["camera", "album"], //从相册选择
- success: function (res) {
- pathToBase64(res.tempFilePaths[0])
- .then((path) => {
- var data = {
- source: "1",
- agencyId: "52010106004",
- imageType: imageType,
- fileName: res.tempFilePaths[0],
- imageBase64: path,
- };
-
- const options = {
- type: 2,
- data: data,
- method: "POST",
- showLoading: true,
- };
- request(etcOcrCard, options).then((res) => {
- const data = stringToJson(res.bizContent);
- if (val === "1") {
- state.form.agentName = data.name;
- state.form.agentGender = data.gender;
- state.form.agentIdNum = data.idno;
- state.form.agentPosImgUrl = data.imageUrl;
- state.form.agentAddress = data.address;
- } else {
- state.form.agentIdVld = data.enddate;
- state.form.agentNegImgUrl = data.imageUrl;
- }
- });
- })
- .catch((error) => { });
- },
- });
- };
- //orc接口调用
- const cardImageOcr = (val : any) => {
- if(state.isEnableOCRData){
- return;
- }
- console.log("点击了");
- var imageType = val;
- uni.chooseImage({
- count: 1, //只能选取一张照片
- sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
- sourceType: ["camera", "album"], //从相册选择
- success: function (res) {
- pathToBase64(res.tempFilePaths[0])
- .then((path) => {
- var data = {
- source: "1",
- agencyId: "52010106004",
- imageType: imageType,
- fileName: res.tempFilePaths[0],
- imageBase64: path,
- };
-
- const options = {
- type: 2,
- data: data,
- method: "POST",
- showLoading: true,
- };
- request(etcOcrCard, options).then((res) => {
- const data = stringToJson(res.bizContent);
- if (val === "1") {
- state.form.userName = data.name;
- state.form.gender = data.gender;
- state.form.userIdNum = data.idno;
- state.form.userPosImgUrl = data.imageUrl;
- state.form.address = data.address;
- } else {
- state.form.customerIdVld = data.enddate;
- state.form.userNegImgUrl = data.imageUrl;
- }
- });
- })
- .catch((error) => { });
- },
- });
- };
- //替换图片地址
- const strReplace = (str : string) => {
- return str.replace('192.168.101.145:9000', envs[process.env.NODE_ENV].baseUrl)
- }
- const getGlobalParam=()=>{
- const data=getItem('globalParam')
- console.log("全局配置数据",getCodeName('IS_ENABLE',data.miniSupportOther),getCodeName('IS_ENABLE',data.otherUploadProxy),getCodeName('IS_ENABLE',data.miniInfoShow),getCodeName('IS_ENABLE',data.changeOCRData))
- // 小程序是否支持他人办理
- if(getCodeName('IS_ENABLE',data.miniSupportOther)=='启用'){
- state.isEnableOther=true;
- }else{
- state.isEnableOther=false;
- }
- // 他人办理时是否上传委托书
- if(getCodeName('IS_ENABLE',data.otherUploadProxy)=='启用'){
- state.isEnableBook=true;
- }else{
- state.isEnableBook=false;
- }
- // 小程序信息带出
- if(getCodeName('IS_ENABLE',data.miniInfoShow)=='启用'){
- state.isEnableInfo=true;
- queryUserMsg(); //通过opneId查询用户信息
- }else{
- state.isEnableInfo=false;
- }
- // 允许修改OCR识别出来的数据
- if(getCodeName('IS_ENABLE',data.changeOCRData)=='启用'){
- state.isEnableOCRData=false;
- }else{
- state.isEnableOCRData=true;
- }
-
- }
- // 通过opneId查询用户信息
- const queryUserMsg=()=>{
- const options = {
- type: 2,
- data: {
- "openId":getItem('openId')
- },
- method: "POST",
- showLoading: true,
- };
- request(getUserMsg, options).then((res) => {
- console.log("通过opneId查询用户信息",stringToJson(res.bizContent))
- const data=stringToJson(res.bizContent);
- state.form.userPosImgUrl=data.customerPosImgUrl;
- state.form.userNegImgUrl=data.customerNegImgUrl;
- state.form.userName=data.customerName;
- state.form.userIdNum=data.customerIdNum;
- state.form.address=data.customerAddress;
- state.form.tel=data.customerTel;
- })
- }
- </script>
-
- <style lang="scss" scoped>
- .title {
- font-size: 35rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 80rpx;
- margin-bottom: 10rpx;
- }
-
- .content-wrap {
- position: relative;
- margin-top: -50rpx;
- padding: 0rpx 30rpx;
- display: flex;
-
- .big {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 24rpx;
- }
-
- .nomal {
- font-size: 26rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 24rpx;
- }
-
- .tip {
- margin-top: -5px;
- width: 117rpx;
- height: 16rpx;
- background: #00b38b;
- opacity: 0.3;
- }
- }
-
- .content {
- padding: 50rpx 30rpx 50rpx 30rpx;
-
- .action {
- padding-left: 20rpx;
- padding-right: 20rpx;
- padding-bottom: 30rpx;
-
- .button {
- height: 80rpx;
- background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
- border-radius: 40rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #ffffff;
- line-height: 80rpx;
- }
- }
-
- .item-tips {
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 24rpx;
- }
-
- .tip {
- margin-top: 16rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24rpx;
- }
- }
-
- .picture-wrapper {
- margin-top: 40rpx;
-
- .bg {
- background: #ffffff;
- box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
- border-radius: 20rpx;
- padding: 40rpx;
- display: flex;
- // align-items: center;
- justify-content: space-between;
-
- .name {
- font-size: 34rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 34rpx;
- }
-
- .value {
- margin-top: 20rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24rpx;
- }
-
- .tip {
- margin-top: 20rpx;
- text-align: center;
- width: 110rpx;
- height: 40rpx;
- background: rgba(33, 190, 177, 0.2);
- border-radius: 6rpx;
-
- .tip-value {
- font-size: 20rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #0a8f8a;
- line-height: 40rpx;
- opacity: 1;
- }
- }
- }
-
- .icon {
- width: 294rpx;
- height: 188rpx;
- }
- }
-
- .shibie-wrapper {
- margin-top: 60rpx;
-
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 30rpx;
- }
- }
-
- .buchong-wrapper {
- margin-top: 60rpx;
-
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 30rpx;
- }
- }
-
- .green-tip {
- margin-top: 50rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #00b38b;
- line-height: 24rpx;
- margin-bottom: 60rpx;
- }
- }
- </style>
|