express.vue 20 KB

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