123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934 |
- <template>
- <div class="page">
- <div class="card">
- <div class="row head-row">
- <div class="l">商品总额</div>
- <div class="r">{{ totalPrice }}</div>
- </div>
- <!-- 优惠券 -->
- <div class="row" v-if="discount.show">
- <div class="l">折扣</div>
- <div class="r">
- {{ (totalPrice - discount.value) | plusMinus }}
- <span class="close" @click="removeDiscount">
- <my-image
- class="img"
- src="/static/icon/close2.png"
- ></my-image>
- </span>
- </div>
- </div>
- <!-- 支付方式 -->
- <div class="row" v-if="curPayType">
- <div class="l">{{ curPayType | payStr }}</div>
- <div class="r">
- -{{ payType[curPayType] }}
- <span class="close" @click="closePayType">
- <my-image
- class="img"
- src="/static/icon/close2.png"
- ></my-image>
- </span>
- </div>
- </div>
- <!-- 信息 -->
- <div class="info" v-if="surplusPrice > 0 && !payErr">
- <div class="tools">
- <span @click="discountShow">折扣</span>
- </div>
- <div class="money">
- <span>应收(元)</span>
- <span class="price"> {{ surplusPrice }} </span>
- </div>
- </div>
- <div class="success" v-if="surplusPrice <= 0 && !payErr">
- <my-image
- v-if="surplusPrice === 0"
- class="img"
- src="/static/icon/ok1.png"
- ></my-image>
- <my-image
- v-if="surplusPrice < 0"
- class="img"
- src="/static/icon/ok2.png"
- ></my-image>
- <div class="text" :class="{ text2: surplusPrice < 0 }">
- {{ successText }}
- </div>
- </div>
- <div class="success" v-if="orderId && payErr">
- <my-image class="img" src="/static/icon/error.png"></my-image>
- <div class="text err-text">结算成功,支付失败,请重新支付</div>
- </div>
- </div>
- <div
- class="submit-btn"
- v-if="!payErr && surplusPrice <= 0"
- @click="submit"
- >
- 结算
- </div>
- <div class="submit-btn" v-if="orderId && payErr" @click="payModal">
- 继续支付
- </div>
- <ul class="pay-list" v-if="surplusPrice > 0">
- <li class="item" @click="showPay('1')">现金</li>
- <li class="item" @click="showPay('2')">刷卡</li>
- <li class="item" @click="showPay('3')">扫码</li>
- </ul>
- <div class="modal" v-if="cashVisibile">
- <div class="bg" @click="cashHide"></div>
- <div class="modal-body">
- <div class="modal-head">
- <div>现金</div>
- <div @click="cashHide">
- <my-image
- class="close"
- src="/static/icon/close3.png"
- ></my-image>
- </div>
- </div>
- <div class="modal-main">
- <div class="collection">
- <section class="l">
- <div class="name">实收</div>
- <!-- <input type="d" class="digit"> -->
- <div
- class="input"
- :class="{ focus: inputType === 3 }"
- >
- {{ payType[1] }}
- </div>
- <div class="surplus">剩余应收{{ actualPrice }}</div>
- </section>
- <section class="r">
- <div class="name">找零</div>
- <div class="input">{{ remnant }}</div>
- </section>
- </div>
- </div>
- <keyboard-package
- @onInput="onInput($event, 'cash')"
- @onDelete="onDelete('cash')"
- @onConfirm="onConfirm('cash')"
- ></keyboard-package>
- </div>
- </div>
- <!-- 折扣 -->
- <div class="modal" v-if="discountVisibile">
- <div class="bg" @click="discountVisibile = false"></div>
- <div class="modal-body">
- <div class="modal-head">
- <div>折扣</div>
- <div @click="discountVisibile = false">
- <my-image
- class="close"
- src="/static/icon/close3.png"
- ></my-image>
- </div>
- </div>
- <div class="modal-main">
- <div class="collection">
- <section class="l" @click="inputType = 0">
- <div class="name">折后总额</div>
- <!-- <input type="d" class="digit"> -->
- <div
- class="input"
- :class="{ focus: inputType === 0 }"
- >
- {{ discount.value }}
- </div>
- </section>
- <section class="r" @click="inputType = 1">
- <div class="name">折扣率</div>
- <div
- class="input"
- :class="{ focus: inputType === 1 }"
- >
- {{ discount.ratio }}
- </div>
- %
- </section>
- </div>
- <ul
- class="dis-list"
- v-if="discountList && discountList.length"
- >
- <li v-for="item of discountList" :key="item">
- <div class="box" @click="disItemClick(item)">
- {{ item }}折
- </div>
- </li>
- </ul>
- </div>
- <keyboard-package
- :disableDot="inputType === 1"
- @onInput="onInput($event, 'discount')"
- @onDelete="onDelete('discount')"
- @onConfirm="onConfirm('discount')"
- ></keyboard-package>
- </div>
- </div>
- <uni-popup ref="popup" type="dialog">
- <uni-popup-dialog-pay
- mode="input"
- :title="'付款码'"
- :content="false"
- :inputType="'number'"
- :beforeClose="true"
- placeholder="请输入付款码"
- @confirm="popupConfirm"
- @scan="seanCode"
- @close="popupClose"
- ></uni-popup-dialog-pay>
- </uni-popup>
- </div>
- </template>
- <script>
- import MyImage from "../../../components/image/index";
- import KeyboardPackage from "../../../components/keyboard-package/keyboard-package";
- import uniPopup from "../../../components/uni-popup/uni-popup";
- import uniPopupDialogPay from "../../../components/uni-popup/uni-popup-dialog-pay";
- export default {
- name: "",
- components: { MyImage, KeyboardPackage, uniPopup, uniPopupDialogPay },
- filters: {
- plusMinus(v) {
- if (v > 0) {
- return "-" + +v.toFixed(2);
- } else {
- v = 0 - v;
- return "+" + v.toFixed(2);
- }
- },
- payStr(v) {
- switch (v) {
- case "1":
- return "现金";
- case "2":
- return "刷卡";
- case "3":
- return "扫码";
- }
- },
- },
- // 数据
- data() {
- return {
- goods: [],
- inputType: 0, // 0 折扣总额。 1 折扣率 3 现金
- cashVisibile: false, // 输入现金显示
- payShow: "",
- curPayType: "",
- payType: {
- 1: "", // 现金
- 2: "", // 刷卡
- 3: "", // 扫码
- },
- // 折扣
- discountList: [], // 折扣列表
- discountVisibile: false,
- discount: {
- show: false,
- ratio: "",
- value: "",
- },
- btnLoading: false,
- orderId: "",
- payErr: false,
- };
- },
- onLoad() {
- this.goods = this.$store.state.common.cashierGoodList;
- if (!this.goods) {
- this.router.back();
- }
- this.getConfig();
- },
- async onShow() {
- this.$store.commit("common/update", {
- closeSelectList: false,
- });
- },
- // 函数
- methods: {
- getConfig() {
- this.api
- .get("/Store/GetStoreConfig", {
- id: this.user.storeId,
- })
- .then((res) => {
- let data = res.data;
- if (data.orderConfig && data.orderConfig.discountList) {
- this.discountList = data.orderConfig.discountList;
- }
- });
- },
- showPay(type) {
- this.curPayType = type;
- if (type === "1") {
- // 现金
- this.cashVisibile = true;
- this.cacheCashVal = this.payType[1];
- if (!this.payType[1]) {
- this.payType[1] = this.actualPrice;
- }
- } else {
- this.payType[type] = this.actualPrice;
- }
- },
- onInput(v, name) {
- switch (name) {
- case "discount":
- this.discount.show = true;
- // 折扣
- if (this.inputType === 0) {
- this.discount.value += v;
- this.computeDiscountRatio();
- } else {
- this.discount.ratio += v;
- this.computeDiscountValue();
- }
- break;
- case "cash":
- // 现金
- console.log(this.payType[1], v);
- this.payType[1] = String(this.payType[1]) + v;
- break;
- default:
- break;
- }
- },
- onDelete(name) {
- switch (name) {
- case "discount":
- // 折扣
- if (this.inputType === 0) {
- this.discount.value = this.discount.value.replace(
- /.$/,
- ""
- );
- this.computeDiscountRatio();
- if (this.discount.value === "") {
- this.discount.show = false;
- }
- } else {
- this.discount.ratio = String(
- this.discount.ratio
- ).replace(/.$/, "");
- if (this.discount.ratio === "") {
- this.discount.show = false;
- }
- this.computeDiscountValue();
- }
- break;
- case "cash":
- // 现金
- let str = String(this.payType[1]).replace(/.$/, "");
- this.payType[1] = str;
- break;
- default:
- break;
- }
- },
- onConfirm(name) {
- switch (name) {
- case "discount":
- // 折扣
- this.discountVisibile = false;
- break;
- case "cash":
- // 现金
- if (this.payType[1] < this.actualPrice) {
- this.fn.showToast("收款金额不能小于应收金额");
- return;
- }
- this.cashVisibile = false;
- break;
- default:
- break;
- }
- },
- cashHide() {
- if (this.cacheCashVal !== this.payType[1]) {
- this.payType[1] = this.cacheCashVal;
- }
- this.cashVisibile = false;
- },
- // 删除折扣
- removeDiscount() {
- this.discount.show = false;
- this.discount.ratio = "";
- this.discount.value = "";
- this.orderId = "";
- this.payErr = false;
- },
- // 折扣显示
- discountShow() {
- this.discountVisibile = true;
- this.inputType = 0;
- },
- // 计算折扣后值
- computeDiscountValue() {
- let ratioV = (
- (this.totalPrice * this.discount.ratio) /
- 100
- ).toFixed(2);
- this.discount.value = ratioV;
- },
- // 计算折扣率
- computeDiscountRatio() {
- this.discount.ratio = Math.round(
- (this.discount.value / this.totalPrice) * 100
- );
- },
- // 打折点击
- disItemClick(val) {
- this.discount.show = true;
- this.discount.ratio = val;
- this.computeDiscountValue();
- },
- closePayType() {
- this.curPayType = "";
- this.payErr = false;
- },
- submit() {
- if (this.btnLoading) {
- return;
- }
- let sendData = {
- totalAmount: parseInt(this.totalPrice * 100),
- payAmount: parseInt(this.payAmount * 100),
- discount: this.discount.show
- ? Number(this.discount.ratio)
- : 100, // 折扣
- payMethod: Number(this.curPayType), // 支付方式,1-现金支付,2-刷卡支付,3-扫码
- orderItems: [],
- };
- for (let item of this.goods) {
- sendData.orderItems.push({
- productId: item.id,
- // skuId:item.id,
- skuId: item._sku ? item._sku.skuId : "",
- count: item.isWeightGood
- ? parseInt(item.select_num * 1000)
- : item.select_num,
- remark: "",
- });
- }
- console.log(sendData);
- this.submitLoading = true;
- uni.showLoading({
- title: "提交中...",
- mask: true,
- });
- // 扫码失败后的现金支付
- if (this.orderId && sendData.payMethod !== 3) {
- this.api
- .post(
- "/Order/CashPay",
- {
- orderId: this.orderId,
- payMethod: sendData.payMethod,
- query: true,
- },
- { pass: true }
- )
- .then((res) => {
- this.btnLoading = false;
- uni.hideLoading();
- if (res.success) {
- this.fn.showToast("保存成功");
- this.$store.commit("common/update", {
- closeSelectList: true,
- });
- this.router.back();
- } else {
- this.fn.showModal({
- content: res.message,
- showCancel: false,
- });
- }
- });
- } else {
- this.api
- .post("/Order/Settle", sendData, { pass: true })
- .then((res) => {
- this.btnLoading = false;
- uni.hideLoading();
- if (res.success) {
- // 微信 支付宝支付
- if (
- this.curPayType === "4" ||
- this.curPayType === "3"
- ) {
- this.orderId = res.data;
- this.payModal();
- } else {
- this.fn.showToast("保存成功");
- this.$store.commit("common/update", {
- closeSelectList: true,
- });
- this.router.back();
- }
- } else {
- this.fn.showModal({
- content: res.message,
- showCancel: false,
- });
- }
- });
- }
- },
- payModal() {
- this.$refs.popup.open({
- type: "dialog",
- });
- },
- seanCode(done) {
- let self = this;
- uni.scanCode({
- scanType: "barCode",
- success(res) {
- console.log("扫码", res);
- if (
- res.scanType === "CODE_128" ||
- res.scanType === "QR_CODE"
- ) {
- uni.showLoading({
- title: "支付中...",
- mask: true,
- });
- self.api
- .post(
- "/order/BarcodePay",
- {
- query: true,
- orderId: self.orderId,
- barcode: res.result,
- },
- { pass: true }
- )
- .then((res) => {
- uni.hideLoading();
- if (res.success) {
- self.fn.showToast("支付成功");
- done();
- self.router.back();
- self.$store.commit("common/update", {
- closeSelectList: true,
- });
- } else {
- self.fn.showToast(
- "支付失败:" + res.message
- );
- self.payErr = true;
- }
- });
- } else {
- self.fn.showToast("扫码失败");
- self.payErr = true;
- }
- },
- fail(res) {
- self.fn.showToast("扫码失败");
- console.log("扫码失败:", res);
- self.payErr = true;
- },
- });
- },
- popupConfirm(done, value) {
- let self = this;
- uni.showLoading({
- title: "支付中...",
- mask: true,
- });
- self.api
- .post(
- "/order/BarcodePay",
- {
- query: true,
- orderId: self.orderId,
- barcode: value,
- },
- { pass: true }
- )
- .then((res) => {
- uni.hideLoading();
- if (res.success) {
- self.fn.showToast("支付成功");
- self.router.back();
- this.$store.commit("common/update", {
- closeSelectList: true,
- });
- } else {
- self.fn.showToast("支付失败:" + res.message);
- self.payErr = true;
- }
- });
- },
- popupClose(done) {
- this.fn.showToast("扫码支付失败");
- this.payErr = true;
- done();
- },
- },
- // 数据计算
- computed: {
- user() {
- return this.$store.state.user.user;
- },
- // 总金额
- totalPrice() {
- let n = 0;
- for (let item of this.goods) {
- // 是否为称重
- if (item.isWeightGood) {
- let m = (item.price / 100) * item.select_num;
- m = Number(m.toFixed(2));
- n += m;
- } else {
- if (item._sku) {
- n += (item._sku.price / 100) * item.select_num;
- } else {
- n += (item.price / 100) * item.select_num;
- }
- }
- }
- n = n.toFixed(2);
- return parseFloat(n);
- // return 100;
- },
- // 打折 优惠 后价格
- actualPrice() {
- let price = this.totalPrice;
- if (this.discount.show) {
- price = this.discount.value;
- }
- return price;
- },
- // 收款金额
- payAmount() {
- let v = 0;
- console.log(this.payType, this.curPayType);
- if (this.payType[this.curPayType]) {
- v += Number(this.payType[this.curPayType]);
- }
- return v;
- },
- // 收款后还差多少
- surplusPrice() {
- let v = this.actualPrice;
- if (this.payAmount) {
- v = v - this.payAmount;
- }
- return v;
- },
- // 成功显示文字
- successText() {
- if (this.surplusPrice === 0) {
- return `实收 ¥${this.actualPrice}`;
- } else {
- return `实收 ¥${this.actualPrice - this.surplusPrice},找零¥${
- 0 - this.surplusPrice
- }`;
- }
- },
- // 找零
- remnant() {
- if (
- this.payType[1] &&
- Number(this.payType[1]) > Number(this.actualPrice)
- ) {
- let num = Number(this.payType[1]) - Number(this.actualPrice);
- return num.toFixed(2);
- } else {
- return 0;
- }
- },
- },
- // 数据监听
- watch: {},
- };
- </script>
- <style lang="scss" scoped>
- .page {
- background-color: #0399ce;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- padding-bottom: px(40);
- }
- .card {
- background-color: #fff;
- margin: px(35);
- border-radius: px(8);
- .row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 px(30);
- font-size: px(38);
- height: px(110);
- color: #333;
- .close {
- width: px(40);
- height: px(40);
- border-radius: 50%;
- background-color: #d1d1d1;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- margin-left: px(20);
- .img {
- width: px(25);
- height: px(25);
- /deep/ img {
- width: px(25);
- height: px(25);
- }
- }
- }
- }
- .head-row {
- height: px(120);
- font-size: px(44);
- border-bottom: 1px solid #f1f1f1;
- }
- .row ~ .row {
- border-top: 1px solid #f1f1f1;
- }
- .info {
- padding: px(50);
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .tools {
- display: flex;
- align-items: center;
- span {
- border-radius: px(8);
- height: px(66);
- padding: 0 px(20);
- background-color: #ebdcbb;
- color: #4f3912;
- font-size: px(34);
- display: inline-flex;
- justify-content: center;
- align-items: center;
- & ~ span {
- margin-left: px(20);
- }
- }
- }
- .money {
- display: flex;
- flex-direction: column;
- font-size: px(40);
- .price {
- font-size: px(74);
- margin-top: px(15);
- color: #049dd7;
- }
- }
- }
- .pay-list {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 px(35);
- .item {
- width: 32%;
- height: px(150);
- border-radius: px(8);
- background-color: #fff;
- font-size: px(40);
- display: flex;
- align-items: center;
- justify-content: center;
- padding: px(30);
- box-sizing: border-box;
- }
- }
- .modal {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 100;
- .bg {
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.3);
- }
- .modal-body {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: 1;
- }
- .modal-head {
- height: px(130);
- background-color: #f4f4f4;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 px(35);
- .close {
- width: px(40);
- height: px(40);
- /deep/ img {
- width: px(40);
- height: px(40);
- }
- }
- }
- .modal-main {
- padding: px(35);
- background-color: #fff;
- }
- }
- .collection {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- .l,
- .r {
- width: 49%;
- }
- .name {
- font-size: px(38);
- color: #666;
- }
- .input {
- font-size: px(70);
- color: #333;
- margin-top: px(30);
- min-height: px(80);
- line-height: px(80);
- position: relative;
- display: inline-block;
- min-width: 2px;
- max-width: 100%;
- word-break: break-all;
- &.focus {
- &::after {
- content: "";
- position: absolute;
- right: -3px;
- height: 1em;
- bottom: 3px;
- z-index: 1;
- width: 1px;
- background-color: #666;
- animation: focusLine 0.8s linear alternate infinite;
- }
- }
- }
- .surplus {
- font-size: px(38);
- color: #666;
- margin-top: px(30);
- }
- }
- @keyframes focusLine {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
- }
- .success {
- height: px(500);
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- .img {
- width: px(140);
- height: px(140);
- /deep/ img {
- width: px(140);
- height: px(140);
- }
- }
- .text {
- margin-top: px(40);
- font-size: px(50);
- text-align: center;
- color: #06cd58;
- }
- .text2 {
- color: #3c9ec5;
- }
- }
- .submit-btn {
- height: px(120);
- margin: 0 px(35);
- border-radius: px(8);
- background-color: #fff;
- color: #3c9ec5;
- font-size: px(40);
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .dis-list {
- display: flex;
- background-color: #eee;
- flex-wrap: wrap;
- padding: px(20) px(10) px(1);
- margin: px(30) px(-35) 0;
- li {
- width: 25%;
- padding: 0 px(10);
- margin-bottom: px(20);
- }
- .box {
- display: flex;
- align-items: center;
- justify-content: center;
- height: px(90);
- border-radius: px(8);
- background-color: #fff;
- }
- }
- .err-text {
- color: #f00 !important;
- }
- </style>
|