express.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796
  1. <template>
  2. <div class="content">
  3. <backindex :title="titlename"></backindex>
  4. <!--运单号-->
  5. <div v-show="wayShow" class="sm" style="padding-top: 10px;height: 50px;">
  6. <div>
  7. <van-field style="background-color: rgb(0, 196, 184);" maxlength="50" v-model="waybillNo" name="运单号"
  8. label="运单号" placeholder="运单号" />
  9. <img @click="wxScanCode(1)" src="../assets/images/sm.png" alt="">
  10. </div>
  11. </div>
  12. <!-- 寄件地址 -->
  13. <div class="jjinfo">
  14. <div>
  15. <div class="jj">
  16. <div class="jjaddress">
  17. <p>寄</p>
  18. <div>
  19. <van-field readonly v-model="SendInfoValue.address" label="地址" name="pattern"
  20. placeholder="请输入正确的地址" />
  21. <van-field v-model="SendInfoValue.phone" label="手机号" name="pattern"
  22. placeholder="请输入正确的手机号" />
  23. </div>
  24. </div>
  25. <!-- <div class="dzb" @click="link(1)">
  26. <img src="../assets/images/addlist.png" alt="">
  27. <p>地址簿</p>
  28. </div> -->
  29. </div>
  30. <div class="jj" style="border-top:.01rem solid #ededed">
  31. <div class="jjaddress">
  32. <p style="background: #fa9c22;">收</p>
  33. <div>
  34. <van-field v-model="transmitMessageVlaue.addresseeName" name="" label="姓名"
  35. placeholder="用户名" />
  36. <van-field v-model="transmitMessageVlaue.addresseePhone" label="手机号" name="pattern"
  37. placeholder="请输入正确的手机号" />
  38. </div>
  39. </div>
  40. <div class="dzb" @click="link(2)">
  41. <img src="../assets/images/addlist.png" alt="">
  42. <p>地址簿</p>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. <!-- 快递公司 -->
  48. <div class="kdshow">
  49. <van-field readonly clickable name="picker" :value="expressInfoShow" label="快递公司" placeholder="请选择快递公司"
  50. @click="showPicker = true" />
  51. <van-popup v-model="showPicker" position="bottom">
  52. <van-picker show-toolbar :columns="columns" @confirm="onConfirm" @cancel="showPicker = false">
  53. <template v-slot:option="slotProps">
  54. {{ slotProps.expressCompany }}
  55. </template>
  56. </van-picker>
  57. </van-popup>
  58. </div>
  59. <!-- 寄件属性 -->
  60. <div class="choose">
  61. <div>
  62. <div class="type_wp">
  63. <div>
  64. <p>物品类型</p>
  65. <p v-if="wptype == ''" @click="wpshow = true">请选择</p>
  66. <p v-else @click="wpshow = true">{{ wptype }}</p>
  67. </div>
  68. <div>
  69. <p>
  70. <template>重量(公斤)</template>
  71. </p>
  72. <p>
  73. <van-field name="Kilogram" style="padding: 0px;">
  74. <template #input>
  75. <van-stepper v-model="Kilogram" max="10"></van-stepper>
  76. </template>
  77. </van-field>
  78. </p>
  79. </div>
  80. <div>
  81. <p>
  82. <template>数量(件数)</template>
  83. </p>
  84. <p>
  85. <van-field name="stepper" style="padding: 0px;">
  86. <template #input>
  87. <van-stepper v-model="stepper" max="10"></van-stepper>
  88. </template>
  89. </van-field>
  90. </p>
  91. </div>
  92. </div>
  93. <div class="type_price">
  94. <div>
  95. <p>付款方式</p>
  96. <p v-if="pricetype == ''" @click="priceshow = true">请选择</p>
  97. <p v-else @click="priceshow = true">{{ pricetype }}</p>
  98. </div>
  99. <div>
  100. <p>声明价值</p>
  101. <p style="display: flex;justify-content: center;"><input
  102. style="width: 1rem;border: none;text-align: center;" v-model="declaredValue"
  103. type="number" />元
  104. </p>
  105. </div>
  106. </div>
  107. <div class="type_price" v-show="this.accountType == 1">
  108. <div>
  109. <p>邮购类型</p>
  110. <p v-if="addresstype == ''" @click="addressshow = true">请选择</p>
  111. <p v-else @click="addressshow = true">{{ addresstype }}</p>
  112. </div>
  113. </div>
  114. </div>
  115. </div>
  116. <!-- 备注 -->
  117. <div class="bz">
  118. <div>
  119. <van-field style="font-size: 16px;" v-model="bz" name="备注" label="备注" placeholder="包装运输等要求" />
  120. </div>
  121. </div>
  122. <!-- 授权码 -->
  123. <div class="az" v-if="SendInfoValue.isVerification == 1">
  124. <van-field style="font-size: 16px;" v-model="authorization" name="authorization" label="授权码"
  125. placeholder="请输入授权码" />
  126. <img @click="vxSearchIcon" src="../assets/images/sm.png" alt="">
  127. </div>
  128. <!-- 我同意 -->
  129. <div class="check">
  130. <van-checkbox icon-size=".24rem" v-model="check" shape="">我同意《电子运单契约条款》</van-checkbox>
  131. </div>
  132. <!-- 寄件 -->
  133. <div class="btn-jj">
  134. <van-button type="info" color="#00c4b8" @click="save()">立即寄件</van-button>
  135. </div>
  136. <!-- 弹窗物品类型 -->
  137. <van-popup v-model="wpshow" position="bottom">
  138. <van-picker title="物品类型" show-toolbar :columns="wplist" @confirm="onConfirm1" @cancel="wpshow = false" />
  139. </van-popup>
  140. <!-- 弹窗付款方式 -->
  141. <van-popup v-model="priceshow" position="bottom">
  142. <van-picker title="付款方式" show-toolbar :columns="pricelist" @confirm="onConfirm2"
  143. @cancel="priceshow = false" />
  144. </van-popup>
  145. <!-- 弹窗地址类型类型 -->
  146. <van-popup v-model="addressshow" position="bottom">
  147. <van-picker title="邮购类型" show-toolbar :columns="addlist" @confirm="onConfirm8"
  148. @cancel="addressshow = false" />
  149. </van-popup>
  150. </div>
  151. </template>
  152. <script>
  153. import areaList from "@/script/areas.js"
  154. import { Toast } from 'vant';
  155. import { saveMailDo, getSendInfo, geLogisticsList } from '../api/index'
  156. export default {
  157. data() {
  158. return {
  159. titlename: "寄件",
  160. wptype: "物品",//物品类型
  161. addresstype: "顾客邮购",//地址类型
  162. youGouType: "",//邮购类型
  163. addressshow: false,//地址类型弹窗显示
  164. addlist: ['顾客邮购', '非顾客邮购'],//
  165. wpshow: false,//物品类型弹窗显示
  166. wplist: ["物品", "文件"],
  167. pricetype: "月结(公司件)",//付款类型
  168. stepper: '',//件数
  169. Kilogram: '',//公斤
  170. max: '',//最大数
  171. priceshow: false,//付款类型弹窗显示
  172. pricelist: ["到付", "自费(个人件)", "月结(公司件)",],
  173. index: "",
  174. title: "",
  175. check: false,//契约条款
  176. bz: '',//快递备注
  177. showPicker: false,//快递
  178. expressInfoShow: "顺丰快递",//快递公司展示
  179. expressPhone: "",//快递公司电话传值
  180. expressInfo: "1",//快递公司传值
  181. columns: [],//快递公司列表
  182. columns2: ["个人件", "公司件"],
  183. // transmitMessageVlaue: {},
  184. declaredValue: '0', //声明价值
  185. showPicker2: false,
  186. goodOrderNo: '',//商品订单编号
  187. waybillNo: '',//运单号
  188. wayShow: true,
  189. accountType: '',//账号类型
  190. showPicker9: false,
  191. costCenterList: [],//成本中心列表
  192. costCenterInfoShow: "",
  193. costCenterName: "",//成本中心展示
  194. costCenterId: "",//成本中心展示
  195. elvenPhone: '',//收件人输入的手机号
  196. pattern: /^\d{11}$/,
  197. SendInfoValue: {},//寄件人信息
  198. authorization: '',//授权码
  199. }
  200. },
  201. created: function () {
  202. this.accountType = localStorage.getItem("accountType")
  203. this.geLogisticsListAPIList()
  204. },
  205. async mounted() {
  206. const res = await getSendInfo({ userId: localStorage.getItem("userId") })
  207. if (res.code == 444) {
  208. Toast(res.msg)
  209. } else {
  210. this.SendInfoValue = res
  211. }
  212. console.log(this.SendInfoValue, 'this.SendInfoValue')
  213. },
  214. methods: {
  215. // 运单号扫描
  216. wxScanCode(type) {
  217. let wx = this.$wx;
  218. this.$http.post(this.$store.state.host + "/weixin/getWxConfig", {
  219. url: window.location.href.split('#')[0]
  220. }, {
  221. emulateJSON: true
  222. })
  223. .then(res => {
  224. //发送成功
  225. var timestamp = res.body.wxConfig.timestamp;
  226. var noncestr = res.body.wxConfig.nonceStr;
  227. var signature = res.body.wxConfig.signature;
  228. var appId = res.body.wxConfig.appId;
  229. wx.config({
  230. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  231. // debug : true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  232. appId: appId, // 必填,公众号的唯一标识
  233. timestamp: timestamp, // 必填,生成签名的时间戳
  234. nonceStr: noncestr, // 必填,生成签名的随机串
  235. signature: signature, // 必填,签名,见附录1
  236. jsApiList: [
  237. "scanQRCode",
  238. ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  239. });
  240. wx.ready(() => {
  241. wx.scanQRCode({
  242. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  243. scanType: ["qrCode", "barCode"], // 可以指定扫二维码还是一维码,默认二者都有
  244. success: (res) => {
  245. var result = res.resultStr; // 当needResult 为 1 时,扫码返回的结果
  246. if (result.indexOf(",") != -1) {
  247. let result1 = res.resultStr.split(",");
  248. result = result1[result1.length - 1];
  249. }
  250. if (type == 1) {
  251. this.waybillNo = result;
  252. } else {
  253. this.goodOrderNo = result;
  254. }
  255. },
  256. error: function (res) {
  257. console.log(res);
  258. }
  259. });
  260. });
  261. }, res => {
  262. //发送失败
  263. Toast("网络错误!")
  264. })
  265. },
  266. // 授权码哦icon扫描
  267. vxSearchIcon() {
  268. console.log('123')
  269. wx.scanQRCode({
  270. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  271. scanType: ["qrCode", "barCode"], // 可以指定扫二维码还是一维码,默认二者都有
  272. success: (res) => {
  273. //alert(res)
  274. console.log(res, '==============')
  275. var result = res.resultStr; // 当needResult 为 1 时,扫码返回的结果
  276. if (result.indexOf(",") != -1) {
  277. let result1 = res.resultStr.split(",");
  278. result = result1[result1.length - 1];
  279. }
  280. this.authorization = value
  281. },
  282. error: function (res) {
  283. console.log(res, 'error++++++++++');
  284. }
  285. });
  286. },
  287. // 快递公司
  288. async geLogisticsListAPIList() {
  289. const res = await geLogisticsList({ page: 1, limit: 30 })
  290. this.columns = res.data.map((item) => {
  291. return {
  292. id: item.id,
  293. expressCompany: item.expressCompany
  294. }
  295. })
  296. },
  297. // 选择快递公司
  298. onConfirm(e) {
  299. console.log(e, '=============')
  300. this.expressInfoShow = e.expressCompany
  301. this.expressInfo = e.id
  302. this.showPicker = false
  303. },
  304. // 选择成本中心
  305. onConfirm9(e) {
  306. this.costCenterInfoShow = e.text
  307. this.costCenterId = e.id
  308. this.costCenterName = e.costCenterName
  309. this.showPicker9 = false
  310. console.log("costCenterId:" + this.costCenterId)
  311. console.log("costCenterName:" + this.costCenterName)
  312. },
  313. onConfirm0(e) {
  314. this.mainType = e
  315. this.showPicker2 = false
  316. },
  317. // 选择物品确定
  318. onConfirm1(e) {//确定
  319. this.wptype = e
  320. // if (this.wptype == '文件') {
  321. // this.max = '10'
  322. // } else {
  323. // this.max = '1'
  324. // }
  325. this.wpshow = false
  326. },
  327. // 选择付款方式确定
  328. onConfirm2(e) {//确定
  329. this.pricetype = e
  330. this.priceshow = false
  331. },
  332. // 填写地址类型确定
  333. onConfirm8(e) {//确定
  334. this.addresstype = e
  335. this.addressshow = false
  336. },
  337. // 地址簿跳转
  338. link(obj) {
  339. this.$router.push({ path: '/Myaddressbook', query: { active: obj } })
  340. },
  341. //立即寄件交互
  342. async save() {
  343. if (this.SendInfoValue.phone == '' || this.SendInfoValue.phone == undefined) {
  344. Toast('寄件人手机号不能为空')
  345. return
  346. }
  347. if (!this.pattern.test(this.SendInfoValue.phone)) {
  348. Toast('寄件人手机号码不正确')
  349. return
  350. }
  351. if (this.transmitMessageVlaue.addresseeName == '' || this.transmitMessageVlaue.addresseeName == undefined) {
  352. Toast('收件人姓名不能为空')
  353. return
  354. }
  355. if (this.transmitMessageVlaue.addresseePhone == '' || this.transmitMessageVlaue.addresseePhone == undefined) {
  356. Toast('手机号码不能为空')
  357. return
  358. }
  359. if (!this.pattern.test(this.transmitMessageVlaue.addresseePhone)) {
  360. Toast('收件人手机号码不正确')
  361. return
  362. }
  363. if (this.expressInfo == '' || this.expressInfo == undefined) {
  364. Toast('请选择快递公司')
  365. return
  366. }
  367. if (this.wptype == '' || this.wptype == undefined) {
  368. Toast('请选择物品类型')
  369. return
  370. }
  371. if (this.stepper == '' || this.stepper == undefined) {
  372. Toast('请选择重量')
  373. return
  374. }
  375. if (this.pricetype == '' || this.pricetype == undefined) {
  376. Toast('请选择付款方式')
  377. return
  378. }
  379. if (this.authorization == '' & this.SendInfoValue.isVerification == 1) {
  380. Toast('请填写授权码')
  381. return
  382. }
  383. let payWay = ''
  384. let mainType = ''
  385. if (this.pricetype == "自费(个人件)") {
  386. payWay = '自费'
  387. mainType = '个人件'
  388. }
  389. if (this.pricetype == "月结(公司件)") {
  390. payWay = '月结'
  391. mainType = '公司件'
  392. }
  393. if (this.check == false) {
  394. Toast('请点击同意《电子运单契约条款》')
  395. return
  396. }
  397. Toast.loading({
  398. message: '保存中...',
  399. forbidClick: true,
  400. duration: 0
  401. });
  402. let pricetypeValue = ''
  403. if (this.pricetype == '月结(公司件)') {
  404. pricetypeValue = 3
  405. } else if (this.pricetype == '自费(个人件)') {
  406. pricetypeValue = 2
  407. } else if (this.pricetype == '到付') {
  408. pricetypeValue = 1
  409. }
  410. let wptypeValue = ''
  411. if (this.wptype == "物品") {
  412. wptypeValue = 2
  413. } else {
  414. wptypeValue = 1
  415. }
  416. let parmas = {
  417. expressInfo: this.expressInfo,//快递公司1-顺丰
  418. userAddressId: this.transmitMessageVlaue.id,
  419. // userAddressId: 'ede4f065286a406dbb82064ec7524b4e',
  420. expressType: wptypeValue,//快件类型 1-文件 2-物品
  421. expressNum: this.stepper, //快递数量
  422. payInfo: pricetypeValue,//付费信息 1-到付 2-自付 3-月付
  423. expressRemark: this.bz,//快递备注
  424. expressWeight: this.Kilogram,//公斤
  425. expressPrice: this.declaredValue,//价值
  426. phone: this.SendInfoValue.phone,//寄件人手机号
  427. addresseeName: this.transmitMessageVlaue.addresseeName,//寄件人姓名
  428. addresseePhone: this.transmitMessageVlaue.addresseePhone,//收件人手机号
  429. verificationCode: this.authorization, //授权码
  430. }
  431. const res = await saveMailDo({ ...parmas })
  432. if (res.msg == 'success') {
  433. Toast('寄件成功')
  434. this.$router.push('/')
  435. }
  436. Toast.clear()
  437. }
  438. },
  439. computed: {
  440. areaList() {
  441. return areaList
  442. },
  443. transmitMessageVlaue() {
  444. return this.$store.state.transmitMessageVlaue;
  445. },
  446. }
  447. }
  448. </script>
  449. <style scoped lang="less">
  450. .content {
  451. .sm {
  452. display: flex;
  453. padding: .33rem;
  454. padding-bottom: 0;
  455. font-size: .3rem;
  456. justify-content: space-between;
  457. /deep/.van-field {
  458. width: 6.2rem;
  459. height: .76rem;
  460. .van-search__content {
  461. background-color: white;
  462. }
  463. input {
  464. text-align: right;
  465. }
  466. }
  467. img {
  468. width: .4rem;
  469. height: .4rem;
  470. position: relative;
  471. top: -.58rem;
  472. right: -6.38rem;
  473. }
  474. }
  475. .jjinfo {
  476. font-size: .24rem;
  477. color: #999999;
  478. padding: .33rem;
  479. padding-top: 0;
  480. word-break: break-word;
  481. >div {
  482. background: white;
  483. border-radius: .05rem;
  484. padding: 0rem .3rem;
  485. .jj {
  486. display: flex;
  487. justify-content: space-between;
  488. padding: .2rem 0rem;
  489. .jjaddress {
  490. display: flex;
  491. padding: .1rem 0rem;
  492. .van-cell {
  493. padding: 0;
  494. margin: 0;
  495. .van-field__label.van-cell__title {
  496. width: 0.2em !important;
  497. }
  498. }
  499. >p {
  500. font-size: .24rem;
  501. font-weight: bold;
  502. display: inline-block;
  503. width: .5rem;
  504. height: .5rem;
  505. background: #00c4b8;
  506. text-align: center;
  507. line-height: .5rem;
  508. color: white;
  509. border-radius: 50%;
  510. margin-right: .3rem;
  511. }
  512. div {
  513. //font-weight: bold;
  514. max-width: 4.2rem;
  515. p:nth-of-type(1) {
  516. font-size: .24rem;
  517. color: #333;
  518. margin-bottom: .2rem;
  519. }
  520. p:nth-of-type(2) {
  521. font-size: .3rem;
  522. }
  523. }
  524. }
  525. .dzb {
  526. text-align: center;
  527. border-left: .01rem solid #ededed;
  528. padding-left: .3rem;
  529. img {
  530. width: .39rem;
  531. height: .42rem;
  532. padding-top: .2rem;
  533. }
  534. p {
  535. font-size: .2rem;
  536. }
  537. }
  538. }
  539. }
  540. }
  541. .kdshow {
  542. font-size: .3rem;
  543. padding: .3rem 0px;
  544. width: 6.84rem;
  545. background: white;
  546. border-radius: .05rem;
  547. margin: 0rem auto .2rem;
  548. /deep/.van-cell {
  549. padding: 0px .3rem;
  550. overflow: unset;
  551. input {
  552. text-align: right;
  553. height: .5rem;
  554. padding-right: .25rem;
  555. }
  556. }
  557. /deep/.van-cell::after {
  558. content: "";
  559. display: inline-block;
  560. border-right: .01rem solid #b0b0b0;
  561. border-bottom: .01rem solid #b0b0b0;
  562. transform: rotate(-45deg);
  563. left: unset;
  564. position: absolute;
  565. right: .3rem;
  566. bottom: .15rem;
  567. width: .2rem;
  568. height: .2rem;
  569. }
  570. }
  571. .choose {
  572. font-size: .3rem;
  573. color: #999999;
  574. font-weight: bold;
  575. padding: 0rem .33rem;
  576. >div {
  577. background: white;
  578. padding: .3rem .3rem;
  579. border-radius: .05rem;
  580. .type_wp {
  581. display: flex;
  582. justify-content: center;
  583. div {
  584. flex: 1;
  585. text-align: center;
  586. p:nth-of-type(2) {
  587. color: #333;
  588. margin-top: .2rem;
  589. font-size: .36rem;
  590. //position: relative;
  591. }
  592. }
  593. div:nth-of-type(1) {
  594. border-right: .01rem solid #ededed;
  595. p:nth-of-type(2):after {
  596. content: "";
  597. display: inline-block;
  598. width: .15rem;
  599. height: .15rem;
  600. border-bottom: .01rem solid #999;
  601. border-right: .01rem solid #999;
  602. transform: rotate(45deg);
  603. margin-left: .15rem;
  604. position: relative;
  605. top: -.08rem;
  606. }
  607. }
  608. }
  609. .type_price {
  610. display: flex;
  611. justify-content: center;
  612. border-top: .01rem solid #ededed;
  613. margin-top: .3rem;
  614. padding-top: .3rem;
  615. div {
  616. flex: 1;
  617. text-align: center;
  618. p:nth-of-type(2) {
  619. color: #333;
  620. margin-top: .2rem;
  621. font-size: .36rem;
  622. }
  623. }
  624. div:nth-of-type(1) {
  625. border-right: .01rem solid #ededed;
  626. p:nth-of-type(2):after {
  627. content: "";
  628. display: inline-block;
  629. width: .15rem;
  630. height: .15rem;
  631. border-bottom: .01rem solid #999;
  632. border-right: .01rem solid #999;
  633. transform: rotate(45deg);
  634. margin-left: .15rem;
  635. position: relative;
  636. top: -.08rem;
  637. }
  638. }
  639. }
  640. }
  641. }
  642. .bz {
  643. // margin-top: -0.53rem;
  644. padding: 0 .33rem;
  645. font-size: 16px;
  646. /deep/.van-field__value {
  647. input {
  648. text-align: right;
  649. }
  650. }
  651. }
  652. .az {
  653. margin: 0px .33rem;
  654. font-size: 16px;
  655. display: flex;
  656. align-items: center;
  657. background-color: #fff;
  658. // position: absolute;
  659. /deep/.van-field__value {
  660. input {
  661. text-align: right;
  662. }
  663. }
  664. img {
  665. width: .4rem;
  666. height: .4rem;
  667. margin-right: 6px;
  668. }
  669. }
  670. .check {
  671. font-size: .24rem;
  672. text-align: center;
  673. /deep/.van-checkbox {
  674. justify-content: center;
  675. .van-checkbox__label {
  676. color: #999;
  677. }
  678. }
  679. }
  680. .btn-jj {
  681. padding: 0 .33rem .33rem;
  682. button {
  683. width: 100%;
  684. }
  685. }
  686. }
  687. .whrite_add {
  688. width: 6.6rem;
  689. padding: .4rem .2rem;
  690. /deep/.van-field__value {
  691. input {
  692. text-align: right;
  693. }
  694. }
  695. /deep/.van-popup__close-icon--top-right {
  696. top: 5px;
  697. right: 10px;
  698. }
  699. }
  700. </style>