From 256135f15bad327b1d08a4093702762f2765ebac Mon Sep 17 00:00:00 2001 From: bobobobo <1055026847@qq.com> Date: Thu, 29 Jan 2026 00:57:07 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E8=A6=81=E4=B8=80=E4=B8=AA=E6=99=AE?= =?UTF-8?q?=E9=80=9A=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E8=B7=9F=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 4 +-- api/mall.js | 9 ++++++ manifest.json | 4 +-- pages/mall/confirm-order.vue | 44 +++++++++++++++++++++++---- pages/mall/styles/confirm-order.scss | 4 +++ static/images/public/pingtuan.png | Bin 0 -> 1335 bytes 6 files changed, 55 insertions(+), 10 deletions(-) create mode 100644 static/images/public/pingtuan.png diff --git a/.env b/.env index ba95087..2738c31 100644 --- a/.env +++ b/.env @@ -1,6 +1,6 @@ # API -VITE_SYSTEM_URL = "http://ea252b67.natappfree.cc" -# VITE_SYSTEM_URL = "https://dev.cqjcteach.cn/prod-api" +# VITE_SYSTEM_URL = "http://ea252b67.natappfree.cc" +VITE_SYSTEM_URL = "https://dev.cqjcteach.cn/prod-api" # 第三方客户 channelId VITE_CHANNEL_ID = "7b81ec142eca42baa045820793b821bb" diff --git a/api/mall.js b/api/mall.js index c5b8de1..eb8ef8e 100644 --- a/api/mall.js +++ b/api/mall.js @@ -53,6 +53,15 @@ export const addOrder = data => { }) } +/** 创建普通订单接口 */ +export const createOrder = data => { + return http({ + url: '/api/service/order/normal', + method: 'post', + data + }) +} + /** 我的拼团列表 */ export const getMyGroupList = data => { return http({ diff --git a/manifest.json b/manifest.json index d09a61d..4fb33f4 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "name" : "密谈IM", "appid" : "__UNI__9EFDC69", "description" : "", - "versionName" : "1.1.1", - "versionCode" : 110, + "versionName" : "1.1.2", + "versionCode" : 111, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/pages/mall/confirm-order.vue b/pages/mall/confirm-order.vue index 72d059d..830654b 100644 --- a/pages/mall/confirm-order.vue +++ b/pages/mall/confirm-order.vue @@ -1,6 +1,6 @@