editpersonalinformation.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. <template>
  2. <view class="content">
  3. <view class="content2 content-other">
  4. <view class="title">上传身份证人像面</view>
  5. <view @click.stop="uploadImg(1,index)" class="picture picture1" v-if="!dataDetails.cardAddressUrl">
  6. <image class="xj-image" src="@/static/mine/ic_shanchuan@2x.png"></image>
  7. <view class="text">上传身份证人像面</view>
  8. </view>
  9. <view v-if="dataDetails.cardAddressUrl" @click.stop="uploadImg(1,index)" class="preview-card-img picture">
  10. <view @click.stop="delCard(1)">
  11. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  12. </image>
  13. </view>
  14. <image class="" :src="dataDetails.cardAddressUrl" mode="aspectFit" style=""></image>
  15. </view>
  16. <view class="title">上传身份证国徽面</view>
  17. <view @click="uploadImg(2,index)" class="picture picture2" v-if="!dataDetails.cardBackAddressUrl">
  18. <image class="xj-image" src="@/static/mine/ic_shanchuan@2x.png"></image>
  19. <view class="text">上传身份证国徽面</view>
  20. </view>
  21. <view v-if="dataDetails.cardBackAddressUrl" @click.stop="uploadImg(2,index)"
  22. class="preview-card-img picture">
  23. <!-- <image class="card-img" :src="dataDetails.cardAddressUrl"></image> -->
  24. <view @click.stop="delCard(2)">
  25. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  26. </image>
  27. </view>
  28. <image class="" :src="dataDetails.cardBackAddressUrl" mode="aspectFit"></image>
  29. </view>
  30. <view style='border-bottom:1px solid #eee;' class="flex row flex-space-between width100">
  31. <view class="left-text" style='font-size:14px;'>姓名</view>
  32. <view style='padding-right:10px;' class="flex">
  33. <u--input @input='nameinput' placeholder="输入姓名" inputAlign='right' border="none"
  34. v-model="dataDetails.name">
  35. </u--input>
  36. </view>
  37. </view>
  38. <view class="flex row flex-space-between" style='border-bottom:1px solid #eee;'>
  39. <view class="left-text" style='font-size:14px;'>性别</view>
  40. <view>
  41. <u-radio-group v-model="dataDetails.sex" placement="row">
  42. <u-radio :customStyle="radioCustomStyle" v-for="(item, index) in radiolist1" :key="index"
  43. :label="item.name" :name="item.name" @change="radioChange">
  44. </u-radio>
  45. </u-radio-group>
  46. </view>
  47. </view>
  48. <view style='margin-top:10px;padding-bottom:11px;' class="flex row flex-space-between">
  49. <view class="left-text" style='font-size:14px;'>称呼</view>
  50. <view style='padding-right:10px;' class='flex flex-space-between'>
  51. <view style="width: 160rpx;">
  52. <u--input style='padding-right:4px;' placeholder="输入姓氏" class="ch-style" inputAlign='right'
  53. border="none" v-model="dataDetails.call">
  54. </u--input>
  55. </view>
  56. <view style='position:relative;top:0px;font-size:15px;' class="flex align-center"
  57. v-if="dataDetails.sex=='男'">先生</view>
  58. <view style='position:relative;top:0px;font-size:15px;' class="flex align-center" v-else>女士</view>
  59. </view>
  60. </view>
  61. <view style='border-bottom:1px solid #eee;margin-top:10px;padding-bottom:11px;'
  62. class="flex row width100 flex-space-between">
  63. <view class="left-text" style='font-size:14px;'>联系电话</view>
  64. <view style='padding-right:10px;' class="flex">
  65. <u--input disabledColor='#fff' disabled placeholder="输入联系电话" inputAlign='right' border="none"
  66. v-model="dataDetails.phone" maxlength="11">
  67. </u--input>
  68. </view>
  69. </view>
  70. <view style='padding-right:10px;margin-top:10px;padding-bottom:11px;' class="flex row">
  71. <view class="left-text">身份证号</view>
  72. <u--input :disabled='dataDetails.id&&firstAuthentication.passOnce?true:false' placeholder="请输入身份证号"
  73. inputAlign='right' border="none" v-model="dataDetails.cardNumber" maxlength="18">
  74. </u--input>
  75. </view>
  76. <view style='padding-right:10px;' class="flex flex-space-between row noborder">
  77. <view class="left-text">身份证截止日期</view>
  78. <view style='font-size:16px;align-items: center;' class='flex' @click="selectValidityPeriod">
  79. <view :style="{'color':dataDetails.cardValidityDate ? '#000':'#C6CBD5'}">
  80. {{dataDetails.cardValidityDate?dataDetails.cardValidityDate:'选择身份证截止日期'}}
  81. </view>
  82. <!-- <image class='right' src="@/static/mine/right.png" mode=""></image> -->
  83. <u-icon name="arrow-right" color="#333333" size="16"></u-icon>
  84. </view>
  85. </view>
  86. <view class="bz">注:个人信息审核通过后自动认证成为个人货主。</view>
  87. <itmister-date-picker :overdueContent="'身份证已过期'" :dateStatus="1" :periodOfValidity="true" :futureYear="30"
  88. :checkYear="year" :checkMonth="month" :checkDay="day" ref="dateValidityPeriod"
  89. @dateConfirm="confirmValidityPeriod"></itmister-date-picker>
  90. </view>
  91. <view class="content4">
  92. <view style='margin:0 0 18px;font-size:12px;color:#999;' class='flex items-center'>
  93. <u--image style='margin-right:5px;margin-top: 4rpx;' @click='consent'
  94. :src="checked?'../../../static/mine/duihao@2x.png':'../../../static/mine/wxz.png'" width="12px"
  95. height="12px"></u--image>
  96. 我已阅读并同意全部细则
  97. </view>
  98. <view class='line'></view>
  99. <view class="next-btn" @click="$u.throttle(submit(), 1000)">
  100. 提交
  101. </view>
  102. </view>
  103. <!-- <view class="flex flex-space-between width100">
  104. <view>收款人</view>
  105. <view class="flex">
  106. <u--input placeholder="输入收款人姓名" inputAlign='right' border="none" v-model="dataDetails.name">
  107. </u--input>
  108. </view>
  109. </view> -->
  110. <u-action-sheet :actions="$helper.imgTypeList" :title="$helper.imgType" :show="isShowimgType"
  111. @select="imgTypeSelect" @cancel='isShowimgType=false' :closeOnClickOverlay="true" :closeOnClickAction="true"
  112. @close="isShowimgType=false">
  113. </u-action-sheet>
  114. <u-toast ref="uToast"></u-toast>
  115. </view>
  116. </template>
  117. <script>
  118. import {
  119. mapState
  120. } from 'vuex';
  121. import upload from '@/components/upload.vue';
  122. import permision from "@/js_sdk/wa-permission/permission.js"
  123. import uploadImage from '@/components/ossutil/uploadFile.js';
  124. var _this;
  125. export default {
  126. components: {},
  127. data() {
  128. return {
  129. radioCustomStyle: {
  130. margin: '0 20rpx 0 0'
  131. },
  132. submitstatus: false,
  133. radiolist1: [{
  134. name: '男',
  135. disabled: false
  136. },
  137. {
  138. name: '女',
  139. disabled: false
  140. },
  141. ],
  142. year: '',
  143. month: '',
  144. day: '',
  145. uploadType: '',
  146. isShowimgType: false,
  147. dataDetails: {
  148. name: '',
  149. phone: '',
  150. sex: '男',
  151. commonId: '',
  152. cardNumber: '',
  153. cardAddressUrl: '',
  154. cardBackAddressUrl: '',
  155. cardValidityDate: '',
  156. driverSex: '男',
  157. cardValidityDate: "",
  158. },
  159. checked: false,
  160. isShowcardValidity: false,
  161. imagesrc: '',
  162. validityPeriod: [],
  163. isShowimgType: false,
  164. index: '',
  165. firstAuthentication: {}
  166. };
  167. },
  168. onLoad(options) {
  169. // this.get_camera_permission()
  170. var _this = this;
  171. // console.log(options)
  172. if (JSON.stringify(options) != "{}") {
  173. this.dataDetails = options
  174. if (this.dataDetails.cardValidityDate && this.dataDetails.cardValidityDate != '长期') {
  175. const arr = this.dataDetails.cardValidityDate.split('-')
  176. this.year = arr[0]
  177. this.month = arr[1]
  178. this.day = arr[2]
  179. }
  180. if (this.dataDetails.cardValidityDate == '长期') {
  181. this.year = '长期'
  182. }
  183. }
  184. this.dataDetails.phone = this.userInfo.phone
  185. this.dataDetails.commonId = this.userInfo.id
  186. },
  187. onShow() {
  188. this.$request.baseRequest('get', '/cargoOwnerInfo/firstAuthentication', {
  189. phone: this.userInfo.phone
  190. }).then(res => {
  191. uni.setStorageSync("firstAuthentication", res.data)
  192. this.firstAuthentication = res.data
  193. })
  194. },
  195. computed: {
  196. ...mapState(['hasLogin', 'userInfo']),
  197. },
  198. methods: {
  199. async get_camera_permission() {
  200. var photol = await permision.requestAndroidPermission("android.permission.CAMERA")
  201. if (photol == false) {
  202. uni.showModal({
  203. title: '提示',
  204. content: '您已经关闭相机权限,去设置',
  205. success: function(res) {
  206. if (res.confirm) {
  207. permision.gotoAppPermissionSetting()
  208. // plus.runtime.openURL("app-settings:");
  209. } else if (res.cancel) {
  210. console.log('用户点击取消');
  211. }
  212. }
  213. });
  214. }
  215. },
  216. nameinput() {
  217. this.dataDetails.call = this.dataDetails.name[0]
  218. },
  219. // 性别切换
  220. radioChange(n) {
  221. console.log('radioChange', n);
  222. this.dataDetails.sex = n
  223. this.$forceUpdate()
  224. console.log(this.dataDetails.sex)
  225. },
  226. consent() {
  227. this.checked = !this.checked
  228. },
  229. selectValidityPeriod() {
  230. this.$refs.dateValidityPeriod.show();
  231. // this.isShowcardValidity = true
  232. },
  233. //设置图片
  234. setImage(e) {
  235. //
  236. console.log(e);
  237. //显示在页面
  238. //this.imagesrc = e.path;
  239. if (e.dotype == 'idphoto') {
  240. _this.zjzClipper(e.path);
  241. } else if (e.dotype == 'watermark') {
  242. _this.watermark(e.path);
  243. } else {
  244. _this.savePhoto(e.path);
  245. }
  246. },
  247. delCard(status) {
  248. if (status == 1) {
  249. this.dataDetails.cardAddressUrl = ''
  250. this.$forceUpdate()
  251. } else {
  252. this.dataDetails.cardBackAddressUrl = ''
  253. this.$forceUpdate()
  254. }
  255. },
  256. //保存图片到相册,方便核查
  257. savePhoto(path) {
  258. //
  259. this.imagesrc = path;
  260. uploadImage(path, 'appData/',
  261. result => {
  262. // 上传成功
  263. console.log('图片地址', result)
  264. }
  265. )
  266. //保存到相册
  267. // uni.saveImageToPhotosAlbum({
  268. // filePath: path,
  269. // success: () => {
  270. // uni.showToast({
  271. // title: '已保存至相册',
  272. // duration: 2000
  273. // });
  274. // }
  275. // });
  276. },
  277. changeHandler(e) {
  278. const {
  279. columnIndex,
  280. value,
  281. values,
  282. index,
  283. picker = this.$refs.uPicker
  284. } = e
  285. // if (columnIndex === 0) {
  286. //
  287. // if (e.index != 0) {
  288. // picker.setColumnValues(1, this.validityPeriod[1].shift())
  289. // }
  290. // } else if (columnIndex === 1) {
  291. // if (e.index != 0) {
  292. // picker.setColumnValues(2, this.validityPeriod[2].shift())
  293. // }
  294. // }
  295. },
  296. confirmValidityPeriod(date) {
  297. this.dataDetails.cardValidityDate = date.date
  298. },
  299. uploadImg(type, index) {
  300. this.get_camera_permission()
  301. this.uploadType = type
  302. this.index = index
  303. this.imgTypeSelect()
  304. // this.isShowimgType = true
  305. },
  306. validate() {
  307. if (uni.$u.test.isEmpty(this.dataDetails.name)) {
  308. this.$refs.uToast.show({
  309. type: 'error',
  310. message: "姓名不能为空!",
  311. })
  312. return true
  313. }
  314. if (this.dataDetails.name.length < 2 || this.dataDetails.name.length > 10) {
  315. this.$refs.uToast.show({
  316. type: 'error',
  317. message: "姓名输入错误!",
  318. })
  319. return true
  320. }
  321. if (this.dataDetails.call.length == 0) {
  322. this.$refs.uToast.show({
  323. type: 'error',
  324. message: "称呼不能为空!",
  325. })
  326. return true
  327. }
  328. if (this.dataDetails.call.length > 4) {
  329. this.$refs.uToast.show({
  330. type: 'error',
  331. message: "称呼输入错误!",
  332. })
  333. return true
  334. }
  335. if (uni.$u.test.isEmpty(this.dataDetails.cardValidityDate)) {
  336. this.$refs.uToast.show({
  337. type: 'error',
  338. message: "请选择身份证截止日期!",
  339. })
  340. return true
  341. }
  342. if (this.dataDetails.cardValidityDate != '长期') {
  343. var arr = this.dataDetails.cardValidityDate.split('-')
  344. if (!this.$helper.periodOfValidity(arr[0], arr[1], arr[2])) {
  345. this.$refs.uToast.show({
  346. type: 'error',
  347. message: "身份证已过期!",
  348. })
  349. return true
  350. }
  351. }
  352. if (uni.$u.test.isEmpty(this.dataDetails.cardNumber)) {
  353. this.$refs.uToast.show({
  354. type: 'error',
  355. message: "身份证号不能为空!",
  356. })
  357. return true
  358. }
  359. if (uni.$u.test.isEmpty(this.dataDetails.cardAddressUrl)) {
  360. this.$refs.uToast.show({
  361. type: 'error',
  362. message: "请上传身份证人像面!",
  363. })
  364. return true
  365. }
  366. if (uni.$u.test.isEmpty(this.dataDetails.cardBackAddressUrl)) {
  367. this.$refs.uToast.show({
  368. type: 'error',
  369. message: "请上传身份证国徽面!",
  370. })
  371. return true
  372. }
  373. if (this.dataDetails.cardNumber.length != 18) {
  374. this.$refs.uToast.show({
  375. type: 'error',
  376. message: "身份证号输入错误!",
  377. })
  378. return true
  379. }
  380. if (!this.checked) {
  381. this.$refs.uToast.show({
  382. type: 'error',
  383. message: "请勾选细则!",
  384. })
  385. return true
  386. }
  387. },
  388. submit() {
  389. if (this.validate()) return
  390. uni.showLoading({
  391. title: '加载中',
  392. mask: true
  393. })
  394. var _this = this
  395. delete _this.dataDetails.hyCargoOwnerCompInfoList
  396. _this.dataDetails.accountNumber = uni.getStorageSync("userInfo").phone
  397. _this.$request.baseRequest('post', '/cargoOwnerInfo/api/editCargoOwner', _this.dataDetails).then(res => {
  398. // console.log(res)
  399. // uni.$u.route('/pages/mine/cargoowner/cargoowner')
  400. uni.hideLoading()
  401. uni.$u.toast('提交成功')
  402. uni.navigateBack({
  403. delta: 1
  404. })
  405. })
  406. .catch(res => {
  407. console.log(res)
  408. uni.hideLoading()
  409. uni.showToast({
  410. title: res.message,
  411. icon: 'none',
  412. duration: 2000
  413. })
  414. });
  415. },
  416. photograph() {
  417. console.log('拍照')
  418. let that = this;
  419. uni.chooseImage({
  420. sizeType: ['compressed'],
  421. count: 1,
  422. success: function(res) {
  423. console.log(JSON.stringify(res.tempFilePaths));
  424. uploadImage(res.tempFilePaths[0], 'appData/',
  425. result => {
  426. // 上传成功
  427. console.log('图片地址', result)
  428. }
  429. )
  430. }
  431. });
  432. },
  433. imgTypeSelect(val) {
  434. let that = this
  435. uni.chooseImage({
  436. count: 1,
  437. success: function(res) {
  438. console.log(JSON.stringify(res.tempFilePaths));
  439. uploadImage("image", res.tempFilePaths[0], 'appData/',
  440. result => {
  441. // 上传成功回调函数
  442. console.log('图片地址', result)
  443. switch (that.uploadType) {
  444. // 身份正面
  445. case 1:
  446. that.dataDetails.cardAddressUrl = result
  447. // 识别
  448. that.$request.baseRequest('get',
  449. '/driverInfo/personShibie', {
  450. personImg: result,
  451. flag: 1
  452. }).then(res => {
  453. // if(!that.dataDetails.id){
  454. if (res.data.recPersonNo) {
  455. that.dataDetails.cardNumber = res.data.recPersonNo
  456. .replace(/\s*/g, "")
  457. if (that.dataDetails.cardNumber[16] % 2 == 0) {
  458. that.dataDetails.sex = '女'
  459. } else {
  460. that.dataDetails.sex = '男'
  461. }
  462. }
  463. if (res.data.recPerson) {
  464. that.dataDetails.name = res.data.recPerson
  465. that.dataDetails.call = that.dataDetails.name[0]
  466. }
  467. // }
  468. that.$forceUpdate()
  469. })
  470. .catch(res => {
  471. uni.$u.toast(res.message);
  472. });
  473. break
  474. // 身份反面
  475. case 2:
  476. that.dataDetails.cardBackAddressUrl = result
  477. // 识别
  478. that.$request.baseRequest('get',
  479. '/driverInfo/personShibie', {
  480. personImg: result,
  481. flag: 2
  482. }).then(res => {
  483. if (res.data.idCardValidity) {
  484. let date = res.data.idCardValidity.split("-")[1]
  485. that.dataDetails.cardValidityDate = date.replace(
  486. '.', '-').replace('.', '-')
  487. }
  488. that.$forceUpdate()
  489. })
  490. .catch(res => {
  491. uni.$u.toast(res.message);
  492. });
  493. break
  494. }
  495. }
  496. )
  497. }
  498. });
  499. // switch (this.uploadType) {
  500. // case 1:
  501. // uni.$u.route('/pages/mine/camera/idcard/idcard?dotype=idcardface');
  502. // console.log('身份正面')
  503. // break
  504. // case 2:
  505. // uni.$u.route('/pages/mine/camera/idcard/idcard?dotype=badge');
  506. // console.log('身份反面')
  507. // break
  508. },
  509. //身份证正面
  510. getImgUrl1(src) {
  511. // console.log(src)
  512. // console.log('------------res-----------')
  513. // let that = this;
  514. // that.id[0] = src
  515. // that.id1 = src
  516. // that.certificates = false
  517. // that.personImgs.personImg = that.id[0]
  518. // that.$api.doRequest('get', '/driverViewInfo/personShibie', that
  519. // .personImgs).then(res => {
  520. // if (res.data.data.recPerson != null) {
  521. // if (res.data.data.recPerson != "") {
  522. // that.$set(that.DriverViewInfo, 'driverName', res
  523. // .data.data.recPerson)
  524. // }
  525. // }
  526. // if (res.data.data.recPersonNo != null) {
  527. // if (res.data.data.recPersonNo != "") {
  528. // that.$set(that.DriverViewInfo, 'numberCard', res
  529. // .data.data.recPersonNo)
  530. // }
  531. // }
  532. // }).catch(res => {
  533. // uni.showToast({
  534. // title: res.data.message,
  535. // icon: 'none',
  536. // duration: 2000
  537. // })
  538. // })
  539. },
  540. },
  541. };
  542. </script>
  543. <style lang="scss" scoped>
  544. // .preview-card-img {
  545. // /deep/uni-image>div, uni-image>img {
  546. // transform: scale(1.5) rotate(-90deg);
  547. // }
  548. // }
  549. /deep/.uni-input-input:disabled {
  550. background: #fff;
  551. }
  552. .picture {
  553. margin-top: 20rpx;
  554. background: #F5F6FA;
  555. width: 212rpx;
  556. height: 212rpx;
  557. border-radius: 20rpx;
  558. display: flex;
  559. flex-direction: column;
  560. justify-content: center;
  561. align-items: center;
  562. color: #6A7282;
  563. }
  564. .content1 {
  565. background: white;
  566. margin: 20rpx;
  567. padding: 20rpx;
  568. border-radius: 20rpx;
  569. .row-ch {
  570. padding-right: 180rpx;
  571. box-sizing: border-box;
  572. // background-color: red;
  573. }
  574. }
  575. .content2 {
  576. margin: 10px 0 95px 0;
  577. .left-text {
  578. // background: red;
  579. width: 290rpx;
  580. color: #333333;
  581. display: flex;
  582. align-items: center;
  583. font-size: 14px;
  584. }
  585. .row {
  586. border-bottom: 1px solid #EEEEEE;
  587. padding-bottom: 28rpx;
  588. margin-top: 26rpx;
  589. .ch-style {
  590. text-align: left;
  591. }
  592. }
  593. .row-ch {
  594. padding-right: 180rpx;
  595. box-sizing: border-box;
  596. // background-color: red;
  597. }
  598. }
  599. .content2,
  600. .content3 {
  601. .del-bank {
  602. position: absolute;
  603. top: 0;
  604. right: 0;
  605. width: 80rpx;
  606. height: 80rpx;
  607. }
  608. .picture {
  609. width: 100%;
  610. height: 440rpx;
  611. position: relative;
  612. .text {
  613. margin-top: 20rpx;
  614. }
  615. }
  616. .picture1 {
  617. background: url(../../../static/mine/zm.png);
  618. background-size: 100% 100%;
  619. }
  620. .picture2 {
  621. background: url(../../../static/mine/gh.png);
  622. background-size: 100% 100%;
  623. }
  624. .picture3 {
  625. background: url(../../../static/mine/yhkzm.png);
  626. background-size: 100% 100%;
  627. }
  628. .xj-image {
  629. width: 100rpx;
  630. height: 100rpx;
  631. }
  632. .title {
  633. color: #999999;
  634. margin: 20rpx 0;
  635. font-size: 14px;
  636. }
  637. }
  638. .u-input {
  639. font-size: 16px;
  640. }
  641. .content4 {
  642. position: fixed;
  643. bottom: 0;
  644. background: white;
  645. width: 100%;
  646. text-align: center;
  647. left: 0;
  648. box-sizing: border-box;
  649. ;
  650. padding: 10px 15px;
  651. .line {
  652. position: absolute;
  653. left: 0;
  654. margin-top: -9px;
  655. border-top: 1px solid #eee;
  656. width: 100%;
  657. }
  658. .next-btn {
  659. background: #2772FB;
  660. width: 85%;
  661. padding: 20rpx 20rpx;
  662. text-align: center;
  663. color: white;
  664. border-radius: 50rpx;
  665. margin: 0 auto;
  666. margin-top: 10px;
  667. }
  668. }
  669. .del-card {
  670. position: absolute;
  671. top: -10rpx;
  672. right: -6rpx;
  673. width: 80rpx;
  674. height: 80rpx;
  675. z-index: 9;
  676. }
  677. .bz {
  678. font-size: 28rpx;
  679. }
  680. .right {
  681. width: 16px;
  682. height: 16px;
  683. position: relative;
  684. top: 1px;
  685. }
  686. </style>