settlement.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934
  1. <template>
  2. <div class="page">
  3. <div class="card">
  4. <div class="row head-row">
  5. <div class="l">商品总额</div>
  6. <div class="r">{{ totalPrice }}</div>
  7. </div>
  8. <!-- 优惠券 -->
  9. <div class="row" v-if="discount.show">
  10. <div class="l">折扣</div>
  11. <div class="r">
  12. {{ (totalPrice - discount.value) | plusMinus }}
  13. <span class="close" @click="removeDiscount">
  14. <my-image
  15. class="img"
  16. src="/static/icon/close2.png"
  17. ></my-image>
  18. </span>
  19. </div>
  20. </div>
  21. <!-- 支付方式 -->
  22. <div class="row" v-if="curPayType">
  23. <div class="l">{{ curPayType | payStr }}</div>
  24. <div class="r">
  25. -{{ payType[curPayType] }}
  26. <span class="close" @click="closePayType">
  27. <my-image
  28. class="img"
  29. src="/static/icon/close2.png"
  30. ></my-image>
  31. </span>
  32. </div>
  33. </div>
  34. <!-- 信息 -->
  35. <div class="info" v-if="surplusPrice > 0 && !payErr">
  36. <div class="tools">
  37. <span @click="discountShow">折扣</span>
  38. </div>
  39. <div class="money">
  40. <span>应收(元)</span>
  41. <span class="price"> {{ surplusPrice }} </span>
  42. </div>
  43. </div>
  44. <div class="success" v-if="surplusPrice <= 0 && !payErr">
  45. <my-image
  46. v-if="surplusPrice === 0"
  47. class="img"
  48. src="/static/icon/ok1.png"
  49. ></my-image>
  50. <my-image
  51. v-if="surplusPrice < 0"
  52. class="img"
  53. src="/static/icon/ok2.png"
  54. ></my-image>
  55. <div class="text" :class="{ text2: surplusPrice < 0 }">
  56. {{ successText }}
  57. </div>
  58. </div>
  59. <div class="success" v-if="orderId && payErr">
  60. <my-image class="img" src="/static/icon/error.png"></my-image>
  61. <div class="text err-text">结算成功,支付失败,请重新支付</div>
  62. </div>
  63. </div>
  64. <div
  65. class="submit-btn"
  66. v-if="!payErr && surplusPrice <= 0"
  67. @click="submit"
  68. >
  69. 结算
  70. </div>
  71. <div class="submit-btn" v-if="orderId && payErr" @click="payModal">
  72. 继续支付
  73. </div>
  74. <ul class="pay-list" v-if="surplusPrice > 0">
  75. <li class="item" @click="showPay('1')">现金</li>
  76. <li class="item" @click="showPay('2')">刷卡</li>
  77. <li class="item" @click="showPay('3')">扫码</li>
  78. </ul>
  79. <div class="modal" v-if="cashVisibile">
  80. <div class="bg" @click="cashHide"></div>
  81. <div class="modal-body">
  82. <div class="modal-head">
  83. <div>现金</div>
  84. <div @click="cashHide">
  85. <my-image
  86. class="close"
  87. src="/static/icon/close3.png"
  88. ></my-image>
  89. </div>
  90. </div>
  91. <div class="modal-main">
  92. <div class="collection">
  93. <section class="l">
  94. <div class="name">实收</div>
  95. <!-- <input type="d" class="digit"> -->
  96. <div
  97. class="input"
  98. :class="{ focus: inputType === 3 }"
  99. >
  100. {{ payType[1] }}
  101. </div>
  102. <div class="surplus">剩余应收{{ actualPrice }}</div>
  103. </section>
  104. <section class="r">
  105. <div class="name">找零</div>
  106. <div class="input">{{ remnant }}</div>
  107. </section>
  108. </div>
  109. </div>
  110. <keyboard-package
  111. @onInput="onInput($event, 'cash')"
  112. @onDelete="onDelete('cash')"
  113. @onConfirm="onConfirm('cash')"
  114. ></keyboard-package>
  115. </div>
  116. </div>
  117. <!-- 折扣 -->
  118. <div class="modal" v-if="discountVisibile">
  119. <div class="bg" @click="discountVisibile = false"></div>
  120. <div class="modal-body">
  121. <div class="modal-head">
  122. <div>折扣</div>
  123. <div @click="discountVisibile = false">
  124. <my-image
  125. class="close"
  126. src="/static/icon/close3.png"
  127. ></my-image>
  128. </div>
  129. </div>
  130. <div class="modal-main">
  131. <div class="collection">
  132. <section class="l" @click="inputType = 0">
  133. <div class="name">折后总额</div>
  134. <!-- <input type="d" class="digit"> -->
  135. <div
  136. class="input"
  137. :class="{ focus: inputType === 0 }"
  138. >
  139. {{ discount.value }}
  140. </div>
  141. </section>
  142. <section class="r" @click="inputType = 1">
  143. <div class="name">折扣率</div>
  144. <div
  145. class="input"
  146. :class="{ focus: inputType === 1 }"
  147. >
  148. {{ discount.ratio }}
  149. </div>
  150. %
  151. </section>
  152. </div>
  153. <ul
  154. class="dis-list"
  155. v-if="discountList && discountList.length"
  156. >
  157. <li v-for="item of discountList" :key="item">
  158. <div class="box" @click="disItemClick(item)">
  159. {{ item }}折
  160. </div>
  161. </li>
  162. </ul>
  163. </div>
  164. <keyboard-package
  165. :disableDot="inputType === 1"
  166. @onInput="onInput($event, 'discount')"
  167. @onDelete="onDelete('discount')"
  168. @onConfirm="onConfirm('discount')"
  169. ></keyboard-package>
  170. </div>
  171. </div>
  172. <uni-popup ref="popup" type="dialog">
  173. <uni-popup-dialog-pay
  174. mode="input"
  175. :title="'付款码'"
  176. :content="false"
  177. :inputType="'number'"
  178. :beforeClose="true"
  179. placeholder="请输入付款码"
  180. @confirm="popupConfirm"
  181. @scan="seanCode"
  182. @close="popupClose"
  183. ></uni-popup-dialog-pay>
  184. </uni-popup>
  185. </div>
  186. </template>
  187. <script>
  188. import MyImage from "../../../components/image/index";
  189. import KeyboardPackage from "../../../components/keyboard-package/keyboard-package";
  190. import uniPopup from "../../../components/uni-popup/uni-popup";
  191. import uniPopupDialogPay from "../../../components/uni-popup/uni-popup-dialog-pay";
  192. export default {
  193. name: "",
  194. components: { MyImage, KeyboardPackage, uniPopup, uniPopupDialogPay },
  195. filters: {
  196. plusMinus(v) {
  197. if (v > 0) {
  198. return "-" + +v.toFixed(2);
  199. } else {
  200. v = 0 - v;
  201. return "+" + v.toFixed(2);
  202. }
  203. },
  204. payStr(v) {
  205. switch (v) {
  206. case "1":
  207. return "现金";
  208. case "2":
  209. return "刷卡";
  210. case "3":
  211. return "扫码";
  212. }
  213. },
  214. },
  215. // 数据
  216. data() {
  217. return {
  218. goods: [],
  219. inputType: 0, // 0 折扣总额。 1 折扣率 3 现金
  220. cashVisibile: false, // 输入现金显示
  221. payShow: "",
  222. curPayType: "",
  223. payType: {
  224. 1: "", // 现金
  225. 2: "", // 刷卡
  226. 3: "", // 扫码
  227. },
  228. // 折扣
  229. discountList: [], // 折扣列表
  230. discountVisibile: false,
  231. discount: {
  232. show: false,
  233. ratio: "",
  234. value: "",
  235. },
  236. btnLoading: false,
  237. orderId: "",
  238. payErr: false,
  239. };
  240. },
  241. onLoad() {
  242. this.goods = this.$store.state.common.cashierGoodList;
  243. if (!this.goods) {
  244. this.router.back();
  245. }
  246. this.getConfig();
  247. },
  248. async onShow() {
  249. this.$store.commit("common/update", {
  250. closeSelectList: false,
  251. });
  252. },
  253. // 函数
  254. methods: {
  255. getConfig() {
  256. this.api
  257. .get("/Store/GetStoreConfig", {
  258. id: this.user.storeId,
  259. })
  260. .then((res) => {
  261. let data = res.data;
  262. if (data.orderConfig && data.orderConfig.discountList) {
  263. this.discountList = data.orderConfig.discountList;
  264. }
  265. });
  266. },
  267. showPay(type) {
  268. this.curPayType = type;
  269. if (type === "1") {
  270. // 现金
  271. this.cashVisibile = true;
  272. this.cacheCashVal = this.payType[1];
  273. if (!this.payType[1]) {
  274. this.payType[1] = this.actualPrice;
  275. }
  276. } else {
  277. this.payType[type] = this.actualPrice;
  278. }
  279. },
  280. onInput(v, name) {
  281. switch (name) {
  282. case "discount":
  283. this.discount.show = true;
  284. // 折扣
  285. if (this.inputType === 0) {
  286. this.discount.value += v;
  287. this.computeDiscountRatio();
  288. } else {
  289. this.discount.ratio += v;
  290. this.computeDiscountValue();
  291. }
  292. break;
  293. case "cash":
  294. // 现金
  295. console.log(this.payType[1], v);
  296. this.payType[1] = String(this.payType[1]) + v;
  297. break;
  298. default:
  299. break;
  300. }
  301. },
  302. onDelete(name) {
  303. switch (name) {
  304. case "discount":
  305. // 折扣
  306. if (this.inputType === 0) {
  307. this.discount.value = this.discount.value.replace(
  308. /.$/,
  309. ""
  310. );
  311. this.computeDiscountRatio();
  312. if (this.discount.value === "") {
  313. this.discount.show = false;
  314. }
  315. } else {
  316. this.discount.ratio = String(
  317. this.discount.ratio
  318. ).replace(/.$/, "");
  319. if (this.discount.ratio === "") {
  320. this.discount.show = false;
  321. }
  322. this.computeDiscountValue();
  323. }
  324. break;
  325. case "cash":
  326. // 现金
  327. let str = String(this.payType[1]).replace(/.$/, "");
  328. this.payType[1] = str;
  329. break;
  330. default:
  331. break;
  332. }
  333. },
  334. onConfirm(name) {
  335. switch (name) {
  336. case "discount":
  337. // 折扣
  338. this.discountVisibile = false;
  339. break;
  340. case "cash":
  341. // 现金
  342. if (this.payType[1] < this.actualPrice) {
  343. this.fn.showToast("收款金额不能小于应收金额");
  344. return;
  345. }
  346. this.cashVisibile = false;
  347. break;
  348. default:
  349. break;
  350. }
  351. },
  352. cashHide() {
  353. if (this.cacheCashVal !== this.payType[1]) {
  354. this.payType[1] = this.cacheCashVal;
  355. }
  356. this.cashVisibile = false;
  357. },
  358. // 删除折扣
  359. removeDiscount() {
  360. this.discount.show = false;
  361. this.discount.ratio = "";
  362. this.discount.value = "";
  363. this.orderId = "";
  364. this.payErr = false;
  365. },
  366. // 折扣显示
  367. discountShow() {
  368. this.discountVisibile = true;
  369. this.inputType = 0;
  370. },
  371. // 计算折扣后值
  372. computeDiscountValue() {
  373. let ratioV = (
  374. (this.totalPrice * this.discount.ratio) /
  375. 100
  376. ).toFixed(2);
  377. this.discount.value = ratioV;
  378. },
  379. // 计算折扣率
  380. computeDiscountRatio() {
  381. this.discount.ratio = Math.round(
  382. (this.discount.value / this.totalPrice) * 100
  383. );
  384. },
  385. // 打折点击
  386. disItemClick(val) {
  387. this.discount.show = true;
  388. this.discount.ratio = val;
  389. this.computeDiscountValue();
  390. },
  391. closePayType() {
  392. this.curPayType = "";
  393. this.payErr = false;
  394. },
  395. submit() {
  396. if (this.btnLoading) {
  397. return;
  398. }
  399. let sendData = {
  400. totalAmount: parseInt(this.totalPrice * 100),
  401. payAmount: parseInt(this.payAmount * 100),
  402. discount: this.discount.show
  403. ? Number(this.discount.ratio)
  404. : 100, // 折扣
  405. payMethod: Number(this.curPayType), // 支付方式,1-现金支付,2-刷卡支付,3-扫码
  406. orderItems: [],
  407. };
  408. for (let item of this.goods) {
  409. sendData.orderItems.push({
  410. productId: item.id,
  411. // skuId:item.id,
  412. skuId: item._sku ? item._sku.skuId : "",
  413. count: item.isWeightGood
  414. ? parseInt(item.select_num * 1000)
  415. : item.select_num,
  416. remark: "",
  417. });
  418. }
  419. console.log(sendData);
  420. this.submitLoading = true;
  421. uni.showLoading({
  422. title: "提交中...",
  423. mask: true,
  424. });
  425. // 扫码失败后的现金支付
  426. if (this.orderId && sendData.payMethod !== 3) {
  427. this.api
  428. .post(
  429. "/Order/CashPay",
  430. {
  431. orderId: this.orderId,
  432. payMethod: sendData.payMethod,
  433. query: true,
  434. },
  435. { pass: true }
  436. )
  437. .then((res) => {
  438. this.btnLoading = false;
  439. uni.hideLoading();
  440. if (res.success) {
  441. this.fn.showToast("保存成功");
  442. this.$store.commit("common/update", {
  443. closeSelectList: true,
  444. });
  445. this.router.back();
  446. } else {
  447. this.fn.showModal({
  448. content: res.message,
  449. showCancel: false,
  450. });
  451. }
  452. });
  453. } else {
  454. this.api
  455. .post("/Order/Settle", sendData, { pass: true })
  456. .then((res) => {
  457. this.btnLoading = false;
  458. uni.hideLoading();
  459. if (res.success) {
  460. // 微信 支付宝支付
  461. if (
  462. this.curPayType === "4" ||
  463. this.curPayType === "3"
  464. ) {
  465. this.orderId = res.data;
  466. this.payModal();
  467. } else {
  468. this.fn.showToast("保存成功");
  469. this.$store.commit("common/update", {
  470. closeSelectList: true,
  471. });
  472. this.router.back();
  473. }
  474. } else {
  475. this.fn.showModal({
  476. content: res.message,
  477. showCancel: false,
  478. });
  479. }
  480. });
  481. }
  482. },
  483. payModal() {
  484. this.$refs.popup.open({
  485. type: "dialog",
  486. });
  487. },
  488. seanCode(done) {
  489. let self = this;
  490. uni.scanCode({
  491. scanType: "barCode",
  492. success(res) {
  493. console.log("扫码", res);
  494. if (
  495. res.scanType === "CODE_128" ||
  496. res.scanType === "QR_CODE"
  497. ) {
  498. uni.showLoading({
  499. title: "支付中...",
  500. mask: true,
  501. });
  502. self.api
  503. .post(
  504. "/order/BarcodePay",
  505. {
  506. query: true,
  507. orderId: self.orderId,
  508. barcode: res.result,
  509. },
  510. { pass: true }
  511. )
  512. .then((res) => {
  513. uni.hideLoading();
  514. if (res.success) {
  515. self.fn.showToast("支付成功");
  516. done();
  517. self.router.back();
  518. self.$store.commit("common/update", {
  519. closeSelectList: true,
  520. });
  521. } else {
  522. self.fn.showToast(
  523. "支付失败:" + res.message
  524. );
  525. self.payErr = true;
  526. }
  527. });
  528. } else {
  529. self.fn.showToast("扫码失败");
  530. self.payErr = true;
  531. }
  532. },
  533. fail(res) {
  534. self.fn.showToast("扫码失败");
  535. console.log("扫码失败:", res);
  536. self.payErr = true;
  537. },
  538. });
  539. },
  540. popupConfirm(done, value) {
  541. let self = this;
  542. uni.showLoading({
  543. title: "支付中...",
  544. mask: true,
  545. });
  546. self.api
  547. .post(
  548. "/order/BarcodePay",
  549. {
  550. query: true,
  551. orderId: self.orderId,
  552. barcode: value,
  553. },
  554. { pass: true }
  555. )
  556. .then((res) => {
  557. uni.hideLoading();
  558. if (res.success) {
  559. self.fn.showToast("支付成功");
  560. self.router.back();
  561. this.$store.commit("common/update", {
  562. closeSelectList: true,
  563. });
  564. } else {
  565. self.fn.showToast("支付失败:" + res.message);
  566. self.payErr = true;
  567. }
  568. });
  569. },
  570. popupClose(done) {
  571. this.fn.showToast("扫码支付失败");
  572. this.payErr = true;
  573. done();
  574. },
  575. },
  576. // 数据计算
  577. computed: {
  578. user() {
  579. return this.$store.state.user.user;
  580. },
  581. // 总金额
  582. totalPrice() {
  583. let n = 0;
  584. for (let item of this.goods) {
  585. // 是否为称重
  586. if (item.isWeightGood) {
  587. let m = (item.price / 100) * item.select_num;
  588. m = Number(m.toFixed(2));
  589. n += m;
  590. } else {
  591. if (item._sku) {
  592. n += (item._sku.price / 100) * item.select_num;
  593. } else {
  594. n += (item.price / 100) * item.select_num;
  595. }
  596. }
  597. }
  598. n = n.toFixed(2);
  599. return parseFloat(n);
  600. // return 100;
  601. },
  602. // 打折 优惠 后价格
  603. actualPrice() {
  604. let price = this.totalPrice;
  605. if (this.discount.show) {
  606. price = this.discount.value;
  607. }
  608. return price;
  609. },
  610. // 收款金额
  611. payAmount() {
  612. let v = 0;
  613. console.log(this.payType, this.curPayType);
  614. if (this.payType[this.curPayType]) {
  615. v += Number(this.payType[this.curPayType]);
  616. }
  617. return v;
  618. },
  619. // 收款后还差多少
  620. surplusPrice() {
  621. let v = this.actualPrice;
  622. if (this.payAmount) {
  623. v = v - this.payAmount;
  624. }
  625. return v;
  626. },
  627. // 成功显示文字
  628. successText() {
  629. if (this.surplusPrice === 0) {
  630. return `实收 ¥${this.actualPrice}`;
  631. } else {
  632. return `实收 ¥${this.actualPrice - this.surplusPrice},找零¥${
  633. 0 - this.surplusPrice
  634. }`;
  635. }
  636. },
  637. // 找零
  638. remnant() {
  639. if (
  640. this.payType[1] &&
  641. Number(this.payType[1]) > Number(this.actualPrice)
  642. ) {
  643. let num = Number(this.payType[1]) - Number(this.actualPrice);
  644. return num.toFixed(2);
  645. } else {
  646. return 0;
  647. }
  648. },
  649. },
  650. // 数据监听
  651. watch: {},
  652. };
  653. </script>
  654. <style lang="scss" scoped>
  655. .page {
  656. background-color: #0399ce;
  657. min-height: 100vh;
  658. display: flex;
  659. flex-direction: column;
  660. justify-content: flex-end;
  661. padding-bottom: px(40);
  662. }
  663. .card {
  664. background-color: #fff;
  665. margin: px(35);
  666. border-radius: px(8);
  667. .row {
  668. display: flex;
  669. justify-content: space-between;
  670. align-items: center;
  671. padding: 0 px(30);
  672. font-size: px(38);
  673. height: px(110);
  674. color: #333;
  675. .close {
  676. width: px(40);
  677. height: px(40);
  678. border-radius: 50%;
  679. background-color: #d1d1d1;
  680. display: inline-flex;
  681. align-items: center;
  682. justify-content: center;
  683. margin-left: px(20);
  684. .img {
  685. width: px(25);
  686. height: px(25);
  687. /deep/ img {
  688. width: px(25);
  689. height: px(25);
  690. }
  691. }
  692. }
  693. }
  694. .head-row {
  695. height: px(120);
  696. font-size: px(44);
  697. border-bottom: 1px solid #f1f1f1;
  698. }
  699. .row ~ .row {
  700. border-top: 1px solid #f1f1f1;
  701. }
  702. .info {
  703. padding: px(50);
  704. display: flex;
  705. justify-content: space-between;
  706. align-items: center;
  707. }
  708. .tools {
  709. display: flex;
  710. align-items: center;
  711. span {
  712. border-radius: px(8);
  713. height: px(66);
  714. padding: 0 px(20);
  715. background-color: #ebdcbb;
  716. color: #4f3912;
  717. font-size: px(34);
  718. display: inline-flex;
  719. justify-content: center;
  720. align-items: center;
  721. & ~ span {
  722. margin-left: px(20);
  723. }
  724. }
  725. }
  726. .money {
  727. display: flex;
  728. flex-direction: column;
  729. font-size: px(40);
  730. .price {
  731. font-size: px(74);
  732. margin-top: px(15);
  733. color: #049dd7;
  734. }
  735. }
  736. }
  737. .pay-list {
  738. display: flex;
  739. justify-content: space-between;
  740. align-items: center;
  741. padding: 0 px(35);
  742. .item {
  743. width: 32%;
  744. height: px(150);
  745. border-radius: px(8);
  746. background-color: #fff;
  747. font-size: px(40);
  748. display: flex;
  749. align-items: center;
  750. justify-content: center;
  751. padding: px(30);
  752. box-sizing: border-box;
  753. }
  754. }
  755. .modal {
  756. position: fixed;
  757. top: 0;
  758. left: 0;
  759. width: 100%;
  760. height: 100%;
  761. z-index: 100;
  762. .bg {
  763. width: 100%;
  764. height: 100%;
  765. background-color: rgba(0, 0, 0, 0.3);
  766. }
  767. .modal-body {
  768. position: absolute;
  769. bottom: 0;
  770. left: 0;
  771. width: 100%;
  772. z-index: 1;
  773. }
  774. .modal-head {
  775. height: px(130);
  776. background-color: #f4f4f4;
  777. display: flex;
  778. align-items: center;
  779. justify-content: space-between;
  780. padding: 0 px(35);
  781. .close {
  782. width: px(40);
  783. height: px(40);
  784. /deep/ img {
  785. width: px(40);
  786. height: px(40);
  787. }
  788. }
  789. }
  790. .modal-main {
  791. padding: px(35);
  792. background-color: #fff;
  793. }
  794. }
  795. .collection {
  796. display: flex;
  797. justify-content: space-between;
  798. align-items: flex-start;
  799. .l,
  800. .r {
  801. width: 49%;
  802. }
  803. .name {
  804. font-size: px(38);
  805. color: #666;
  806. }
  807. .input {
  808. font-size: px(70);
  809. color: #333;
  810. margin-top: px(30);
  811. min-height: px(80);
  812. line-height: px(80);
  813. position: relative;
  814. display: inline-block;
  815. min-width: 2px;
  816. max-width: 100%;
  817. word-break: break-all;
  818. &.focus {
  819. &::after {
  820. content: "";
  821. position: absolute;
  822. right: -3px;
  823. height: 1em;
  824. bottom: 3px;
  825. z-index: 1;
  826. width: 1px;
  827. background-color: #666;
  828. animation: focusLine 0.8s linear alternate infinite;
  829. }
  830. }
  831. }
  832. .surplus {
  833. font-size: px(38);
  834. color: #666;
  835. margin-top: px(30);
  836. }
  837. }
  838. @keyframes focusLine {
  839. from {
  840. opacity: 1;
  841. }
  842. to {
  843. opacity: 0;
  844. }
  845. }
  846. .success {
  847. height: px(500);
  848. display: flex;
  849. align-items: center;
  850. justify-content: center;
  851. flex-direction: column;
  852. .img {
  853. width: px(140);
  854. height: px(140);
  855. /deep/ img {
  856. width: px(140);
  857. height: px(140);
  858. }
  859. }
  860. .text {
  861. margin-top: px(40);
  862. font-size: px(50);
  863. text-align: center;
  864. color: #06cd58;
  865. }
  866. .text2 {
  867. color: #3c9ec5;
  868. }
  869. }
  870. .submit-btn {
  871. height: px(120);
  872. margin: 0 px(35);
  873. border-radius: px(8);
  874. background-color: #fff;
  875. color: #3c9ec5;
  876. font-size: px(40);
  877. display: flex;
  878. justify-content: center;
  879. align-items: center;
  880. }
  881. .dis-list {
  882. display: flex;
  883. background-color: #eee;
  884. flex-wrap: wrap;
  885. padding: px(20) px(10) px(1);
  886. margin: px(30) px(-35) 0;
  887. li {
  888. width: 25%;
  889. padding: 0 px(10);
  890. margin-bottom: px(20);
  891. }
  892. .box {
  893. display: flex;
  894. align-items: center;
  895. justify-content: center;
  896. height: px(90);
  897. border-radius: px(8);
  898. background-color: #fff;
  899. }
  900. }
  901. .err-text {
  902. color: #f00 !important;
  903. }
  904. </style>