Commit 566b24d2 authored by 王炽's avatar 王炽

Merge branch 'dev' of http://gitlab2.dui88.com/fh/20250528_FHQ1 into dev

parents 7564f230 4c499680
...@@ -29,9 +29,9 @@ const request = (options = {}) => { ...@@ -29,9 +29,9 @@ const request = (options = {}) => {
// "Content-Type": "application/x-www-form-urlencoded" // "Content-Type": "application/x-www-form-urlencoded"
// } // }
// if(options.url == '/c/ai/chat/query'){ // if(options.url == '/c/ai/chat/query'){
// baseUrl = "https://docs.dui88.com/mock/1956"; // baseUrl = "https://docs.dui88.com/mock/1956";
// } // }
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
uni uni
.request({ .request({
...@@ -57,7 +57,7 @@ const request = (options = {}) => { ...@@ -57,7 +57,7 @@ const request = (options = {}) => {
success: false success: false
}); });
globalStore.setIsShowLoading(false); globalStore.setIsShowLoading(false);
} }
else if (!data.data?.ok) { else if (!data.data?.ok) {
// uni.showToast({ // uni.showToast({
// title: data.data?.message, // title: data.data?.message,
...@@ -70,7 +70,7 @@ const request = (options = {}) => { ...@@ -70,7 +70,7 @@ const request = (options = {}) => {
success: false success: false
}); });
globalStore.setIsShowLoading(false); globalStore.setIsShowLoading(false);
} }
else { else {
resolve(data.data); resolve(data.data);
} }
...@@ -93,7 +93,7 @@ const get = async (url, data, options = {}) => { ...@@ -93,7 +93,7 @@ const get = async (url, data, options = {}) => {
options.type = "GET"; options.type = "GET";
options.data = data; options.data = data;
options.url = url; options.url = url;
try { try {
return await request(options); return await request(options);
} catch (error) { } catch (error) {
...@@ -106,7 +106,7 @@ const post = async (url, data, options = {}) => { ...@@ -106,7 +106,7 @@ const post = async (url, data, options = {}) => {
options.type = "POST"; options.type = "POST";
options.data = data; options.data = data;
options.url = url; options.url = url;
try { try {
return await request(options); return await request(options);
} catch (error) { } catch (error) {
......
...@@ -359,6 +359,7 @@ ...@@ -359,6 +359,7 @@
} }
.good_name { .good_name {
font-weight: 500;
font-size: 24rpx; font-size: 24rpx;
// 颜色通过内联样式动态设置 // 颜色通过内联样式动态设置
overflow: hidden; overflow: hidden;
...@@ -375,6 +376,7 @@ ...@@ -375,6 +376,7 @@
margin-bottom: 8rpx; margin-bottom: 8rpx;
.good_price { .good_price {
font-weight: 600;
font-size: 24rpx; font-size: 24rpx;
// 颜色通过内联样式动态设置 // 颜色通过内联样式动态设置
} }
...@@ -456,6 +458,7 @@ ...@@ -456,6 +458,7 @@
} }
.good_name { .good_name {
font-weight: 500;
font-size: 28rpx; font-size: 28rpx;
margin-bottom: 16rpx; margin-bottom: 16rpx;
display: -webkit-box; display: -webkit-box;
......
...@@ -126,6 +126,10 @@ export default { ...@@ -126,6 +126,10 @@ export default {
case 'partnership': case 'partnership':
// 跳转到异业合作页面 // 跳转到异业合作页面
// uni.navigateTo({ url: '/pages/partnership/index' }) // uni.navigateTo({ url: '/pages/partnership/index' })
jump({
type: JumpType.H5,
url: 'https://xingmahui.wjx.cn/vm/mZCydha.aspx'
});
break break
case 'feedback': case 'feedback':
// 跳转到意见反馈页面 // 跳转到意见反馈页面
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment