From ce787c5f9214cbe3b0585533b3989969dadb0627 Mon Sep 17 00:00:00 2001
From: "1054425342@qq.com" <1054425342@qq.com>
Date: Thu, 18 Sep 2025 17:30:36 +0800
Subject: [PATCH 1/6] =?UTF-8?q?feat:=E8=B4=AD=E7=89=A9=E8=BD=A6=E5=85=A8?=
=?UTF-8?q?=E9=80=89=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
subPackages/user/gwc.vue | 163 +++++++++++++++++++++++++++++++++++----
1 file changed, 146 insertions(+), 17 deletions(-)
diff --git a/subPackages/user/gwc.vue b/subPackages/user/gwc.vue
index 654c910..6622bcd 100644
--- a/subPackages/user/gwc.vue
+++ b/subPackages/user/gwc.vue
@@ -1,8 +1,15 @@
- {{
- operate
- }}
+
- {{ supplierGroup.supplierName }}
+
{
+ item.is_select = !isAllSelected;
+ });
+ this.updateAllSelectStatus();
+ this.$forceUpdate();
+ },
+ // 检查供应商是否全选
+ isSupplierAllSelected(supplierGroup) {
+ if (!supplierGroup.goods || supplierGroup.goods.length === 0) {
+ return false;
+ }
+ return supplierGroup.goods.every(item => item.is_select);
+ },
+ // 更新全选状态
+ updateAllSelectStatus() {
+ let allSelected = true;
+ for (let supplierGroup of this.list) {
+ for (let goods of supplierGroup.goods) {
+ if (!goods.is_select) {
+ allSelected = false;
+ break;
+ }
+ }
+ if (!allSelected) break;
+ }
+ this.allSelect = allSelected;
},
// 删除失效商品
delLoseGood(id, index) {
@@ -478,6 +515,57 @@ export default {
background-color: #f8f8f8;
}
+.header-box {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ height: 76rpx;
+ padding: 0 20rpx;
+ margin-bottom: 20rpx;
+}
+
+.all-select-box {
+ display: flex;
+ align-items: center;
+
+ .noSelect {
+ width: 37rpx;
+ height: 37rpx;
+ border-radius: 50%;
+ border: 2rpx solid #666666;
+ box-sizing: border-box;
+ margin-right: 15rpx;
+ transition: all 0.3s ease;
+
+ &:active {
+ transform: scale(0.9);
+ }
+ }
+
+ .selectBox {
+ width: 37rpx;
+ height: 37rpx;
+ margin-right: 15rpx;
+ transition: all 0.3s ease;
+
+ &:active {
+ transform: scale(0.9);
+ }
+
+ img {
+ width: 100%;
+ height: 100%;
+ }
+ }
+
+ .all-select-text {
+ font-size: 32rpx;
+ font-family: PingFang SC;
+ font-weight: 500;
+ color: #6ca5aa;
+ }
+}
+
.guanli {
height: 76rpx;
text-align: right;
@@ -505,10 +593,51 @@ export default {
padding: 25rpx 20rpx;
box-sizing: border-box;
- .title {
+ .supplier-header {
+ margin-bottom: 20rpx;
+
+ .supplier-title-box {
+ display: flex;
+ align-items: center;
+
+ .supplier-select-box {
+ margin-right: 15rpx;
+
+ .noSelect {
+ width: 37rpx;
+ height: 37rpx;
+ border-radius: 50%;
+ border: 2rpx solid #666666;
+ box-sizing: border-box;
+ transition: all 0.3s ease;
+
+ &:active {
+ transform: scale(0.9);
+ }
+ }
+
+ .selectBox {
+ width: 37rpx;
+ height: 37rpx;
+ transition: all 0.3s ease;
+
+ &:active {
+ transform: scale(0.9);
+ }
+
+ img {
+ width: 100%;
+ height: 100%;
+ }
+ }
+ }
+
+ .title {
font-size: 30rpx;
font-weight: 600;
color: #333333;
+ }
+ }
}
.goodItem {
From 7dfdd2b122356a6610d7d1a994d04cc5670003ad Mon Sep 17 00:00:00 2001
From: "1054425342@qq.com" <1054425342@qq.com>
Date: Fri, 19 Sep 2025 11:04:30 +0800
Subject: [PATCH 2/6] =?UTF-8?q?=E5=AD=97=E6=AE=B5=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
components/DynamicIsland.vue | 15 +++++++-------
static/js/request.js | 4 ++--
subPackages/points/index.vue | 1 +
subPackages/techan/order.vue | 39 ++++++++++++++++++++++++++++++++----
4 files changed, 46 insertions(+), 13 deletions(-)
diff --git a/components/DynamicIsland.vue b/components/DynamicIsland.vue
index ea474c4..1fcce26 100644
--- a/components/DynamicIsland.vue
+++ b/components/DynamicIsland.vue
@@ -88,7 +88,7 @@
时间奖励
{{
- userInfo && userInfo.token ? userInfo.hourValue||0:0
+ userInfo && userInfo.token ? (userInfo.hourValue||0):0
}}
点
@@ -112,7 +112,7 @@
style="display: flex;align-items: center;font-size: 26rpx;font-weight: bold;display: flex;align-items: center;margin-top: 20rpx;">
时长:{{
- userInfo && userInfo.token ? userInfo.hour: 0
+ userInfo && userInfo.token ? userInfo.hour||0: 0
}}h
@@ -360,12 +360,13 @@
// 更新标题显示用户昵称
if (this.userInfo && this.userInfo.nickname) {
this.currentTitle = `Hi!${this.userInfo.nickname},欢迎回来~`;
+ this.Post({}, '/framework/points/getLastBalance', 'DES').then(res => {
+ if (res.code === 200) {
+ this.totalPoints = res.data.balance || 0;
+ }
+ })
}
- this.Post({}, '/framework/points/getLastBalance', 'DES').then(res => {
- if (res.code === 200) {
- this.totalPoints = res.data.balance || 0;
- }
- })
+
} catch (e) {
console.warn("获取用户信息失败:", e);
this.userInfo = {};
diff --git a/static/js/request.js b/static/js/request.js
index dc5df2c..662f684 100644
--- a/static/js/request.js
+++ b/static/js/request.js
@@ -8,11 +8,11 @@ const DEV_API_URL = 'http://1.13.193.49';
// const PROD_API_URL = 'https://epic.js-dyyj.com';
const PROD_API_URL = 'http://1.13.193.49';
const NEWAPIURL = process.env.NODE_ENV === 'development' ? DEV_API_URL : PROD_API_URL;
-const DEV_API_URL_DES = 'http://192.168.124.118:8083/xcx';
+const DEV_API_URL_DES = 'https://des.dayunyuanjian.cn/xcx';
// const DEV_API_URL_DES = 'https://des.js-dyyj.com/xcx';
// const DEV_API_URL_DES = 'http://1.13.193.49:8083/xcx';
// const PROD_API_URL_DES = 'https://des.js-dyyj.com/xcx';
-const PROD_API_URL_DES = 'http://1.13.193.49:8083/xcx';
+const PROD_API_URL_DES = 'https://des.dayunyuanjian.cn/xcx';
const NEWAPIURL_DES = process.env.NODE_ENV === 'development' ? DEV_API_URL_DES : PROD_API_URL_DES;
const getToken = () => {
const userInfoFromStorage = uni.getStorageSync('userInfo');
diff --git a/subPackages/points/index.vue b/subPackages/points/index.vue
index 37daba0..0a8af3d 100644
--- a/subPackages/points/index.vue
+++ b/subPackages/points/index.vue
@@ -211,6 +211,7 @@ export default {
// 获取总积分
async getTotalPoints() {
try {
+ if(!uni.getStorageSync("userInfo") )return
this.Post({}, "/framework/points/getLastBalance", "DES").then((res) => {
if (res.code === 200) {
this.pointInfo = res.data;
diff --git a/subPackages/techan/order.vue b/subPackages/techan/order.vue
index e503d26..73b9337 100644
--- a/subPackages/techan/order.vue
+++ b/subPackages/techan/order.vue
@@ -474,6 +474,7 @@ export default {
// 获取总积分
async getTotalPoints() {
try {
+ if(!uni.getStorageSync("userInfo") )return
this.Post({}, "/framework/points/getLastBalance", "DES").then((res) => {
if (res.code === 200) {
this.userPoints = res.data.balance || 0;
@@ -964,10 +965,11 @@ export default {
onSuccess: (data) => {
this.isOrderLoading = false; // 结束加载
// 处理成功逻辑
- uni.showToast({
- title: "订单创建成功",
- icon: "success",
- });
+ // uni.showToast({
+ // title: "订单创建成功",
+ // icon: "success",
+ // });
+ this.orderPay(res.msg)
},
onFailure: (data) => {
this.isOrderLoading = false; // 结束加载
@@ -1002,6 +1004,35 @@ export default {
});
});
},
+ orderPay(token){
+ this.Post(
+ {
+ method: "POST",
+ orderNo:token,
+ fromType:1,
+ payAmount:this.allprice,
+ userId:124
+ },
+ "/framework/wxPay/submitShopPurOrder",
+ "DES"
+ ).then(res =>{
+ uni.requestPayment({
+ nonceStr: res.data.nonceStr,
+ package: res.data.package,
+ paySign: res.data.paySign,
+ signType: res.data.signType,
+ timeStamp: res.data.timeStamp,
+ success: () => {
+ this.getSubscribeMessage()
+ },
+ fail() {
+ uni.navigateTo({
+ url: '/subPackages/order/trades'
+ })
+ }
+ });
+ })
+ },
// ---------------自提-----------------------
changPopShow(e) {
From a7fdf12ff1253a83a07983048abb8d32ab781ac9 Mon Sep 17 00:00:00 2001
From: "1054425342@qq.com" <1054425342@qq.com>
Date: Fri, 19 Sep 2025 14:44:15 +0800
Subject: [PATCH 3/6] =?UTF-8?q?feat:=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages.json | 24 +
subPackages/haveFeeling/aftersale.vue | 878 ++++++++++++++++++++
subPackages/haveFeeling/detail.vue | 1107 +++++++++++++++++++++++++
subPackages/haveFeeling/list.vue | 810 ++++++++++++++++++
subPackages/haveFeeling/logistics.vue | 592 +++++++++++++
subPackages/techan/order.vue | 20 +-
6 files changed, 3422 insertions(+), 9 deletions(-)
create mode 100644 subPackages/haveFeeling/aftersale.vue
create mode 100644 subPackages/haveFeeling/detail.vue
create mode 100644 subPackages/haveFeeling/list.vue
create mode 100644 subPackages/haveFeeling/logistics.vue
diff --git a/pages.json b/pages.json
index fd09af9..4bd0e80 100644
--- a/pages.json
+++ b/pages.json
@@ -260,6 +260,30 @@
"navigationBarTitleText": "核销码"
}
},
+ {
+ "path": "haveFeeling/list",
+ "style": {
+ "navigationBarTitleText": "有感商品订单"
+ }
+ },
+ {
+ "path": "haveFeeling/detail",
+ "style": {
+ "navigationBarTitleText": "订单详情"
+ }
+ },
+ {
+ "path": "haveFeeling/logistics",
+ "style": {
+ "navigationBarTitleText": "物流详情"
+ }
+ },
+ {
+ "path": "haveFeeling/aftersale",
+ "style": {
+ "navigationBarTitleText": "申请售后"
+ }
+ },
{
"path": "memorialAlbum/index",
diff --git a/subPackages/haveFeeling/aftersale.vue b/subPackages/haveFeeling/aftersale.vue
new file mode 100644
index 0000000..5ff3490
--- /dev/null
+++ b/subPackages/haveFeeling/aftersale.vue
@@ -0,0 +1,878 @@
+
+
+
+
+ 订单信息
+
+
+
+ 供应商:{{ orderInfo.supplierName }}
+
+
+
+
+
+
+ 选择售后商品
+
+
+
+
+ ✓
+
+
+
+
+
+
+ {{ goods.goodsTitle }}
+ {{ goods.skuName }}
+
+ ¥{{ goods.price }}
+ ×{{ goods.num }}
+
+
+
+
+
+
+
+
+ 售后类型
+
+
+
+
+
+
+
+
+ {{ type.name }}
+ {{ type.desc }}
+
+
+
+
+
+
+
+ 售后原因
+
+
+ {{ reason.name }}
+ ✓
+
+
+
+
+
+
+ 问题描述
+
+ {{ aftersaleForm.description.length }}/500
+
+
+
+
+ 上传凭证(选填)
+
+
+
+
+ ×
+
+
+ +
+ 添加图片
+
+
+ 最多可上传6张图片,支持jpg、png格式
+
+
+
+
+
+ 联系方式
+
+
+ 联系人
+
+
+
+ 联系电话
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subPackages/haveFeeling/detail.vue b/subPackages/haveFeeling/detail.vue
new file mode 100644
index 0000000..1663eb0
--- /dev/null
+++ b/subPackages/haveFeeling/detail.vue
@@ -0,0 +1,1107 @@
+
+
+
+
+
+
+
+ 收货地址
+
+
+ {{ orderDetail.receiverProvince }}{{ orderDetail.receiverCity
+ }}{{ orderDetail.receiverArea }}{{ orderDetail.receiverAddress }}
+
+
+ {{ orderDetail.receiverName }}
+ {{ orderDetail.receiverPhone }}
+
+
+
+
+
+
+ 商品信息
+
+
+
+
+
+
+ {{ goods.goodsName || "-" }}
+
+
+ {{ goods.specValueOne }}-{{ goods.specValueTwo }}
+
+
+
+ 数量:{{ goods.quantity || 1 }}
+ ¥{{ goods.price }}
+
+
+
+
+
+
+
+
+ 运费
+ ¥{{ orderDetail.shippingFee || "0.00" }}
+
+
+ 应付金额
+ ¥{{ orderDetail.totalAmount || "0.00" }}
+
+
+ 积分抵扣
+ -¥{{ orderDetail.pointsDeductAmount || "0.00" }}
+
+
+ 实付金额
+ ¥{{ orderDetail.payAmount || "0.00" }}
+
+
+
+
+
+
+ 物流信息
+
+
+
+ {{
+ orderDetail.expressCompany || "待发货"
+ }}
+ {{
+ orderDetail.expressNo
+ }}
+
+
+ {{ getLogisticsStatusText(orderDetail.logisticsStatus) }}
+
+
+
+
+
+
+
+
+
+
+ 订单信息
+
+ 订单编号
+ {{
+ orderDetail.orderNo
+ }}
+
+
+ 下单时间
+ {{ orderDetail.createTime }}
+
+
+ 支付时间
+ {{ orderDetail.payTime }}
+
+
+ 发货时间
+ {{ orderDetail.shippingTime }}
+
+
+ 完成时间
+ {{ orderDetail.completeTime }}
+
+
+ 支付方式
+ {{
+ orderDetail.payMethod || "在线支付"
+ }}
+
+
+ 订单备注
+ {{ orderDetail.remark }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/subPackages/haveFeeling/list.vue b/subPackages/haveFeeling/list.vue
new file mode 100644
index 0000000..5a20dae
--- /dev/null
+++ b/subPackages/haveFeeling/list.vue
@@ -0,0 +1,810 @@
+
+
+
+
+
+ {{ tab.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ goods.goodsName }}
+
+
+ {{ goods.specValueOne }}-{{ goods.specValueTwo }}
+
+
+
+ ¥{{ goods.price }}
+ ×{{ goods.quantity || 1 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂无订单
+
+
+
+
+ {{
+ loading ? "加载中..." : "上拉加载更多"
+ }}
+
+
+
+
+ 没有更多数据了
+
+
+
+
+
+
+
+
diff --git a/subPackages/haveFeeling/logistics.vue b/subPackages/haveFeeling/logistics.vue
new file mode 100644
index 0000000..eb51d72
--- /dev/null
+++ b/subPackages/haveFeeling/logistics.vue
@@ -0,0 +1,592 @@
+
+
+
+
+
+
+
+ 快递信息
+
+
+ 快递公司
+ {{ logisticsInfo.expressCompany || '--' }}
+
+
+ 快递单号
+ {{ logisticsInfo.expressNo || '--' }}
+
+
+ 发货时间
+ {{ logisticsInfo.shippingTime || '--' }}
+
+
+ 预计送达
+ {{ logisticsInfo.estimatedTime || '--' }}
+
+
+
+
+
+
+ 收货地址
+
+
+
+ {{ addressInfo.linkName }}
+ {{ addressInfo.phone }}
+
+
+ {{ addressInfo.province }}{{ addressInfo.city }}{{ addressInfo.area }}{{ addressInfo.address }}
+
+
+
+
+
+
+
+ 物流轨迹
+
+
+ {{ trace.time }}
+
+ {{ trace.status }}
+ {{ trace.location }}
+
+
+
+
+
+
+
+
+ 暂无物流轨迹信息
+
+
+
+
+
+ 联系供应商
+
+
+ {{ supplierInfo.name || '默认供应商' }}
+ 联系电话:{{ supplierInfo.phone || '暂无' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/subPackages/techan/order.vue b/subPackages/techan/order.vue
index 73b9337..162f69b 100644
--- a/subPackages/techan/order.vue
+++ b/subPackages/techan/order.vue
@@ -964,6 +964,7 @@ export default {
interval: 2000,
onSuccess: (data) => {
this.isOrderLoading = false; // 结束加载
+ this.getTotalPoints();
// 处理成功逻辑
// uni.showToast({
// title: "订单创建成功",
@@ -1011,23 +1012,24 @@ export default {
orderNo:token,
fromType:1,
payAmount:this.allprice,
- userId:124
},
"/framework/wxPay/submitShopPurOrder",
"DES"
).then(res =>{
uni.requestPayment({
- nonceStr: res.data.nonceStr,
- package: res.data.package,
- paySign: res.data.paySign,
- signType: res.data.signType,
- timeStamp: res.data.timeStamp,
+ nonceStr: res.data.wxInfo.nonceStr,
+ package: res.data.wxInfo.package,
+ paySign: res.data.wxInfo.paySign,
+ signType: res.data.wxInfo.signType,
+ timeStamp: res.data.wxInfo.timeStamp,
success: () => {
- this.getSubscribeMessage()
+ uni.redirectTo({
+ url:'/subPackages/haveFeeling/list'
+ })
},
fail() {
- uni.navigateTo({
- url: '/subPackages/order/trades'
+ uni.redirectTo({
+ url:'/subPackages/haveFeeling/list'
})
}
});
From 53264cb6e428e2bf37cd27a25c5ad7efef446e07 Mon Sep 17 00:00:00 2001
From: "1054425342@qq.com" <1054425342@qq.com>
Date: Fri, 19 Sep 2025 16:54:31 +0800
Subject: [PATCH 4/6] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E6=89=AD=E8=BD=AC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
subPackages/haveFeeling/detail.vue | 329 +++++++++++------------------
subPackages/haveFeeling/list.vue | 33 +--
2 files changed, 135 insertions(+), 227 deletions(-)
diff --git a/subPackages/haveFeeling/detail.vue b/subPackages/haveFeeling/detail.vue
index 1663eb0..e1ccfc6 100644
--- a/subPackages/haveFeeling/detail.vue
+++ b/subPackages/haveFeeling/detail.vue
@@ -9,7 +9,7 @@
-
+
收货地址
@@ -26,28 +26,29 @@
商品信息
-
-
-
-
-
-
- {{ goods.goodsName || "-" }}
-
-
- {{ goods.specValueOne }}-{{ goods.specValueTwo }}
+
+
+
+
+
+
+
+ {{ goods.goodsName || "-" }}
+
+
+ {{ goods.specValueOne }}-{{ goods.specValueTwo }}
+
+
+
+ 数量:{{ goods.quantity || 1 }}
+ ¥{{ goods.price }}
-
-
- 数量:{{ goods.quantity || 1 }}
- ¥{{ goods.price }}
@@ -69,7 +70,7 @@
积分抵扣
- -¥{{ orderDetail.pointsDeductAmount || "0.00" }}
@@ -82,32 +83,6 @@
-
-
- 物流信息
-
-
-
- {{
- orderDetail.expressCompany || "待发货"
- }}
- {{
- orderDetail.expressNo
- }}
-
-
- {{ getLogisticsStatusText(orderDetail.logisticsStatus) }}
-
-
-
-
-
-
-
-
订单信息
@@ -143,6 +118,29 @@
订单备注
{{ orderDetail.remark }}
+
+ 快递公司
+ {{ orderDetail.delivery.expressName }}
+
+
+ 快递单号
+ {{
+ orderDetail.delivery.expressCode
+ }}
+
+
+ 发货时间
+ {{ orderDetail.delivery.expressTime }}
+
@@ -151,26 +149,19 @@
-
-
+ -->
-
-
-
@@ -72,11 +72,11 @@
- {{ isLiked ? "❤️" : "🤍" }}
+ {{ isLiked ? "❤️" : "" }}
{{ likeCount }}
@@ -180,7 +180,7 @@ export default {
{
title: "元界修真传",
audioUrl:
- "https://des.js-dyyj.com/data/2025/09/15/ecd0671f-ba8b-4b69-bb07-1a1d8b4bbfd0.MP3",
+ "https://des.dayunyuanjian.cn/data/2025/09/15/ecd0671f-ba8b-4b69-bb07-1a1d8b4bbfd0.MP3",
// 句子级别的时间同步数据,从msg.json的ResultDetail数组获取
sentences:
require("../components/msg.json")?.Response?.Data?.ResultDetail ||
diff --git a/bmzm/chapter1/index.vue b/bmzm/chapter1/index.vue
index 388a729..165373f 100644
--- a/bmzm/chapter1/index.vue
+++ b/bmzm/chapter1/index.vue
@@ -13,13 +13,13 @@
-
-
@@ -27,7 +27,7 @@
-
+
@@ -55,23 +55,23 @@
},
// 抽象出swiper-item的数据
swiperItems: [{
- imageUrl: `https://static.ticket.sz-trip.com/epicSoul/bmzm/index/index1.png`
+ imageUrl: `https://des.dayunyuanjian.cn/epicSoul/bmzm/index/index1.png`
},
{
- imageUrl: 'https://static.ticket.sz-trip.com/epicSoul/bmzm/index/index5.png'
+ imageUrl: 'https://des.dayunyuanjian.cn/epicSoul/bmzm/index/index5.png'
},
// 第一章
...Array.from({
length: 9
}, (_, i) => ({
- imageUrl: `https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter1/img${i + 1}.png`
+ imageUrl: `https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter1/img${i + 1}.png`
})),
{
- imageUrl: 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter1/img10.png',
+ imageUrl: 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter1/img10.png',
images: Array.from({
length: 4
}, (_, i) => ({
- src: `https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter1/img10-${i + 1}.png`
+ src: `https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter1/img10-${i + 1}.png`
})),
link: '/bmzm/chapter2/index?index={index}',
linkIndex: 11
@@ -84,7 +84,7 @@
this.initialIndex = option.index;
// 更新第一个swiper-item的图片路径
this.swiperItems[0].imageUrl =
- `https://static.ticket.sz-trip.com/epicSoul/bmzm/index/index${this.initialIndex}.png`;
+ `https://des.dayunyuanjian.cn/epicSoul/bmzm/index/index${this.initialIndex}.png`;
},
methods: {
touchmove() {
diff --git a/bmzm/chapter2/index.vue b/bmzm/chapter2/index.vue
index de98934..99705a4 100644
--- a/bmzm/chapter2/index.vue
+++ b/bmzm/chapter2/index.vue
@@ -10,7 +10,7 @@
-
+
@@ -68,7 +68,7 @@ export default {
if (typeof path === 'object') {
path = path.url;
}
- return `https://static.ticket.sz-trip.com/epicSoul/bmzm/${path}`;
+ return `https://des.dayunyuanjian.cn/epicSoul/bmzm/${path}`;
}
}
};
diff --git a/bmzm/chapter3/index.vue b/bmzm/chapter3/index.vue
index 49692e7..464c9ee 100644
--- a/bmzm/chapter3/index.vue
+++ b/bmzm/chapter3/index.vue
@@ -29,7 +29,7 @@
-
+
@@ -122,7 +122,7 @@ export default {
if (typeof path === 'object') {
path = path.url;
}
- return `https://static.ticket.sz-trip.com/epicSoul/bmzm/${path}`;
+ return `https://des.dayunyuanjian.cn/epicSoul/bmzm/${path}`;
}
}
};
diff --git a/bmzm/chapter4/index.vue b/bmzm/chapter4/index.vue
index f9d7d03..70dcf23 100644
--- a/bmzm/chapter4/index.vue
+++ b/bmzm/chapter4/index.vue
@@ -2,24 +2,24 @@
-
+
-
+
-
-
+
diff --git a/bmzm/chapter5/index.vue b/bmzm/chapter5/index.vue
index 6c4bd33..84fc321 100644
--- a/bmzm/chapter5/index.vue
+++ b/bmzm/chapter5/index.vue
@@ -8,7 +8,7 @@
-
+
@@ -27,13 +27,13 @@ export default {
currentIndex: 0,
popupIndex: 1,
swiperImages: [
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter3/img2.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter3/img3.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter3/img4.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter3/img5.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter3/img6.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter3/img7.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img1.png'
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter3/img2.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter3/img3.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter3/img4.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter3/img5.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter3/img6.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter3/img7.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img1.png'
]
};
},
diff --git a/bmzm/chapter6/index.vue b/bmzm/chapter6/index.vue
index 1c42801..9b3b558 100644
--- a/bmzm/chapter6/index.vue
+++ b/bmzm/chapter6/index.vue
@@ -4,14 +4,14 @@
-
-
+
@@ -32,18 +32,18 @@ export default {
popupIndex: 1,
// 图片 URL 数组
imageUrls: [
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img2.png",
- // "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img3.png",
- // "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img4.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img5.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img6.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img7.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img8.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img9.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img10.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter4/img11.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img2.png",
+ // "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img3.png",
+ // "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img4.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img5.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img6.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img7.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img8.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img9.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img10.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img11.png",
// 第五章图片
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter5/img1.png"
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img1.png"
]
};
},
diff --git a/bmzm/chapter7/index.vue b/bmzm/chapter7/index.vue
index 7d6e12a..09081b8 100644
--- a/bmzm/chapter7/index.vue
+++ b/bmzm/chapter7/index.vue
@@ -7,12 +7,12 @@
-
-
+
+
{{ inputValue }}
-
+
@@ -24,7 +24,7 @@
-
+
@@ -51,7 +51,7 @@
-
+
@@ -75,12 +75,12 @@ export default {
maxLength: 25,
// swiper 图片 URL 数组
swiperImages: [
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter5/img2.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter5/img3.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter5/img4.gif',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter5/img5.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter5/img6.png',
- 'https://static.ticket.sz-trip.com/epicSoul/bmzm/chapter5/img7.png'
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img2.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img3.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img4.gif',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img5.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img6.png',
+ 'https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img7.png'
],
answerObj: {},
showAnswerBox: false
diff --git a/bmzm/components/NavMenu.vue b/bmzm/components/NavMenu.vue
index 5097e14..43925a1 100644
--- a/bmzm/components/NavMenu.vue
+++ b/bmzm/components/NavMenu.vue
@@ -31,7 +31,7 @@
// 导航图标地址
navIconSrc: {
type: String,
- default: 'https://static.ticket.sz-trip.com/epicSoul/taozi/nav-icon.png'
+ default: 'https://des.dayunyuanjian.cn/epicSoul/taozi/nav-icon.png'
}
},
data() {
diff --git a/bmzm/home/home.vue b/bmzm/home/home.vue
index ef273fd..3ff9e40 100644
--- a/bmzm/home/home.vue
+++ b/bmzm/home/home.vue
@@ -12,7 +12,7 @@
@@ -52,10 +52,10 @@ export default {
return {
currentIndex: 0,
swiperImages: [
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/home/home1s.gif",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/home/home2.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/home/home3.png",
- "https://static.ticket.sz-trip.com/epicSoul/bmzm/home/home4.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/home/home1s.gif",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/home/home2.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/home/home3.png",
+ "https://des.dayunyuanjian.cn/epicSoul/bmzm/home/home4.png",
],
animationConfig: {
delay: 0.5,
@@ -74,7 +74,7 @@ export default {
onShow() {
uni.removeStorageSync("answerObj");
const app = getApp();
- app.updateMusicSrc("https://static.ticket.sz-trip.com/epicSoul/bmzm.mp3");
+ app.updateMusicSrc("https://des.dayunyuanjian.cn/epicSoul/bmzm.mp3");
app.initBackgroundMusic(); // 初始化背景音乐
uni.$bgMusic.play(); // 播放音乐
},
@@ -111,14 +111,14 @@ export default {
title: "不眠之夜·Endless Dream|「Epic Soul」阅读体 issue03",
mpId: "wx9660f8c5776663e0",
path: "/bmzm/home/home",
- imageUrl: "https://static.ticket.sz-trip.com/epicSoul/bmzm/share.jpg",
+ imageUrl: "https://des.dayunyuanjian.cn/epicSoul/bmzm/share.jpg",
};
},
onShareTimeline() {
return {
title: "不眠之夜·Endless Dream|「Epic Soul」阅读体 issue03",
query: "",
- imageUrl: "https://static.ticket.sz-trip.com/epicSoul/bmzm/share.jpg",
+ imageUrl: "https://des.dayunyuanjian.cn/epicSoul/bmzm/share.jpg",
};
},
// #endif
diff --git a/components/Book.vue b/components/Book.vue
index 6ca0bb9..85147ef 100644
--- a/components/Book.vue
+++ b/components/Book.vue
@@ -10,7 +10,7 @@
@click="handleMoreClick"
>
EPIC SOUL阅读体
-
+
diff --git a/components/BuyPeaches.vue b/components/BuyPeaches.vue
index f613433..46e7b37 100644
--- a/components/BuyPeaches.vue
+++ b/components/BuyPeaches.vue
@@ -1,6 +1,6 @@
-
+
diff --git a/components/DynamicIsland.vue b/components/DynamicIsland.vue
index 1fcce26..9190b25 100644
--- a/components/DynamicIsland.vue
+++ b/components/DynamicIsland.vue
@@ -375,7 +375,7 @@
toWebView() {
// uni.navigateTo({
// url: "/subPackages/webPage/webPage?url=" +
- // "https://des.js-dyyj.com/dist/#/",
+ // "https://des.dayunyuanjian.cn/dist/#/",
// });
uni.navigateTo({
url: '/subPackages/other/evita?id=0'
diff --git a/components/GPT/index.vue b/components/GPT/index.vue
index 314be24..e3b18b3 100644
--- a/components/GPT/index.vue
+++ b/components/GPT/index.vue
@@ -412,7 +412,7 @@ export default {
voiceType: this.socketObj.robotObj.voiceType ?? 1002
},
dataType: "json",
- url: `https://des.js-dyyj.com/xcx/api/voice/tts/flow`,
+ url: `https://des.dayunyuanjian.cn/xcx/api/voice/tts/flow`,
success: (res) => {
this.audioActive = n.timestamp
},
@@ -467,7 +467,7 @@ export default {
voiceType: this.socketObj.robotObj.voiceType ?? 1002
},
dataType: "json",
- url: `https://des.js-dyyj.com/xcx/api/voice/tts/new`,
+ url: `https://des.dayunyuanjian.cn/xcx/api/voice/tts/new`,
success: (res) => {
console.log('-----请求语音合成回参-----', res)
if (res.data.code == 200) {
@@ -538,7 +538,7 @@ export default {
mask: true
})
uni.uploadFile({
- url: 'https://des.js-dyyj.com/xcx/system/oss/upload',
+ url: 'https://des.dayunyuanjian.cn/xcx/system/oss/upload',
filePath: res.tempFilePath,
name: 'file',
success: async (res) => {
@@ -549,7 +549,7 @@ export default {
uni.request({
method: "get",
dataType: "json",
- url: `https://des.js-dyyj.com/xcx/api/voice/asr?audioFilePath=${encodeURI(data.data.url)}`,
+ url: `https://des.dayunyuanjian.cn/xcx/api/voice/asr?audioFilePath=${encodeURI(data.data.url)}`,
success: (res) => {
console.log("【init msg-------res---->】", res);
if (!this.asrStatus) { return }
@@ -606,7 +606,7 @@ export default {
uni.request({
method: "get",
dataType: "json",
- url: `https://des.js-dyyj.com/xcx/api/voice/deleteSingleFile?audioFilePath=${encodeURI(path)}`,
+ url: `https://des.dayunyuanjian.cn/xcx/api/voice/deleteSingleFile?audioFilePath=${encodeURI(path)}`,
success: (res) => {
console.log("【删除文件msg-------res---->】", res);
@@ -674,7 +674,7 @@ export default {
sourceType: ['album', 'camera'],
success: (res) => {
uni.uploadFile({
- url: 'https://des.js-dyyj.com/xcx/system/oss/upload',
+ url: 'https://des.dayunyuanjian.cn/xcx/system/oss/upload',
filePath: res.tempFiles[0].tempFilePath,
name: 'file',
success: (res) => {
diff --git a/components/GPT/utils/audio.js b/components/GPT/utils/audio.js
index cf07b22..59ab748 100644
--- a/components/GPT/utils/audio.js
+++ b/components/GPT/utils/audio.js
@@ -22,7 +22,7 @@ export default class Audio {
method: "GET",
dataType: "json",
// url: `http://192.168.124.118:8083/xcx/framework/agent/${this._options.agentId}`,
- url: `https://des.js-dyyj.com/getDemoToken?id=${this._options.agentId}`,
+ url: `https://des.dayunyuanjian.cn/getDemoToken?id=${this._options.agentId}`,
success: (res) => {
console.log("请求token成功", res);
resolve(res);
diff --git a/components/GPT/utils/audio2.js b/components/GPT/utils/audio2.js
index a60f345..9148463 100644
--- a/components/GPT/utils/audio2.js
+++ b/components/GPT/utils/audio2.js
@@ -25,7 +25,7 @@ export default class Audio {
method: "GET",
dataType: "json",
// url: `http://192.168.124.118:8083/xcx/framework/agent/${this._options.agentId}`,
- url: `https://des.js-dyyj.com/getDemoToken?id=${this._options.agentId}`,
+ url: `https://des.dayunyuanjian.cn/getDemoToken?id=${this._options.agentId}`,
success: (res) => {
console.log("请求token成功", res);
resolve(res);
diff --git a/components/GPT/utils/socket.js b/components/GPT/utils/socket.js
index 59b64ed..f444b8a 100644
--- a/components/GPT/utils/socket.js
+++ b/components/GPT/utils/socket.js
@@ -28,7 +28,7 @@ export default class Socket {
method: "GET",
dataType: "json",
// url: `http://192.168.124.118:8083/xcx/framework/agent/${this._options.agentId}`,
- url: `https://des.js-dyyj.com/getDemoToken?id=${this._options.agentId}`,
+ url: `https://des.dayunyuanjian.cn/getDemoToken?id=${this._options.agentId}`,
success: (res) => {
console.log("请求token成功", res);
resolve(res);
diff --git a/components/ProductSection.vue b/components/ProductSection.vue
index 2e7e771..d086958 100644
--- a/components/ProductSection.vue
+++ b/components/ProductSection.vue
@@ -5,7 +5,7 @@
{{ title }}
-
+
@@ -227,7 +227,7 @@ export default {