From 932936619181c6c25c37210082d2b5bea9c309cb Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Mon, 17 Jun 2024 18:08:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 4 +-- src/api/store.js | 7 ++++ src/api/user.js | 9 ++++- src/components/pay.vue | 24 +++++++++++-- src/components/userList.vue | 4 +-- src/views/convert/component/detail.vue | 16 +++++++-- src/views/saleHome/component/order.vue | 2 +- src/views/user/component/add.vue | 10 +++--- src/views/user/component/detail.vue | 50 ++++++++++++++++++++------ src/views/user/component/order.vue | 4 ++- 10 files changed, 102 insertions(+), 28 deletions(-) diff --git a/.env.development b/.env.development index f5f48a0..fcd874a 100644 --- a/.env.development +++ b/.env.development @@ -5,10 +5,10 @@ VITE_NOW_TYPE = 'dist' # VITE_BASE_URL = 'http://192.168.1.201:8545' # VITE_PUSH_URL = 'ws://192.168.1.22:8787' -# VITE_BASE_URL = 'http://192.168.1.22:8545' +VITE_BASE_URL = 'http://192.168.1.22:8545' VITE_PUSH_URL ='wss://test-multi-store.lihaink.cn/pull' -VITE_BASE_URL = 'https://test-multi-store.lihaink.cn' +# VITE_BASE_URL = 'https://test-multi-store.lihaink.cn' # VITE_PUSH_URL ='wss://multi-store.lihaink.cn/pull' # VITE_BASE_URL = 'https://multi-store.lihaink.cn' \ No newline at end of file diff --git a/src/api/store.js b/src/api/store.js index 035a223..9e13501 100644 --- a/src/api/store.js +++ b/src/api/store.js @@ -184,3 +184,10 @@ export function merchantOrderCountApi(data) { export function storeOrderCheckSmsApi(data) { return request.post(`/store_order/StoreOrder/checkSms`, data) } + +/** + * @description 订单打印 + */ +export function storeOrderPrintApi(data) { + return request.get(`/store_order/StoreOrder/print`, { params: data }) +} diff --git a/src/api/user.js b/src/api/user.js index bd8815a..335986a 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -28,7 +28,7 @@ export function logout() { } /** - * @description 会员类型 + * @description 用户类型 */ export function userShipApi(data) { return request.get(`/user/UserShip/lists`, { params: data }) @@ -75,3 +75,10 @@ export function userAddressEditApi(data) { export function userRechangeAmountApi(data) { return request.post(`/store_order/StoreOrder/rechange_amount`, data) } + +/** +* @description 设置会员 +*/ +export function userShipUpdateApi(data) { + return request.post(`/user/user/user_ship`, data) +} diff --git a/src/components/pay.vue b/src/components/pay.vue index d771a5b..da2db40 100644 --- a/src/components/pay.vue +++ b/src/components/pay.vue @@ -4,6 +4,9 @@ import { orderCreateApi, orderStatusApi, orderPayApi, storeOrderCheckSmsApi } fr import { ElMessage } from "element-plus"; import { audioplay } from "@/utils/audio.js"; import mitt from "@/utils/mitt.js"; +import { + storeOrderPrintApi +} from "@/api/store.js"; import { useUserStore } from "@/store/user.js"; const drawer = ref(false); @@ -13,6 +16,15 @@ const codeRef = ref(""); const userStore = useUserStore(); +const onPrint = (id) => { + storeOrderPrintApi({ + id: id, + }).then(res => { + mitt.emit('letPrintReceipt', res.data); + }) +} + + const cancelClick = () => { beforeClose(); }; @@ -51,7 +63,7 @@ const setForm = (e) => { form.value = e.data; cart_id.value = e.cart_id; uid.value = e.uid; - console.log('选择了用户==', uid.value||'游客'); + console.log('选择了用户==', uid.value || '游客'); isRePay.value = e.isRePay || false; }; @@ -117,6 +129,7 @@ const handleEnter = () => { }); // if(res.data.message) audioplay(res.data.message); beforeClose(res.data); + onPrint(res.data.id); } else { if (res.msg == "用户支付中" && res.code == 1) { ElMessage.warning(res.msg); @@ -125,6 +138,7 @@ const handleEnter = () => { message: "支付成功", type: "success", }); + onPrint(res.data.id); setTimeout(() => { mitt.off("pay_success"); }, 200); @@ -167,6 +181,7 @@ const orderPay = () => { message: "支付成功", type: "success", }); + onPrint(res.data.id); // if(res.data.message) audioplay(res.data.message); beforeClose(); } else { @@ -177,6 +192,7 @@ const orderPay = () => { message: "支付成功", type: "success", }); + onPrint(res.data.id); setTimeout(() => { mitt.off("pay_success"); }, 200); @@ -327,6 +343,7 @@ const cashBnt = () => { message: res.msg, type: "success", }); + onPrint(res.data.id); changeActive(1); beforeClose(); }) @@ -401,6 +418,7 @@ const keyboard = (event) => { }; const getSms = () => { + if(!uid.value) return ElMessage.error('请先选择用户'); storeOrderCheckSmsApi({ cart_id: cart_id.value, uid: uid.value @@ -414,6 +432,7 @@ const getSms = () => { const smsCode = ref(''); // 提交验证码/支付 const handlecodeEnter = () => { + if(!uid.value) return ElMessage.error('请先选择用户'); orderCreateApi({ pay_type: 18, //余额/采购款支付 sms_code: smsCode.value, @@ -425,6 +444,7 @@ const handlecodeEnter = () => { message: res.msg, type: "success", }); + onPrint(res.data.id); changeActive(1); beforeClose(); }) @@ -522,7 +542,7 @@ onUnmounted(() => {