master
gongfuxiang 2024-04-24 22:56:12 +08:00
parent 2f8f4a2004
commit ebcadbcab3
5 changed files with 39 additions and 6 deletions

View File

@ -7,10 +7,10 @@
data: { data: {
// //
// //
request_url: 'http://shopxo.com/', request_url: 'https://d1.shopxo.vip/',
// publicpublichttps://d1.shopxo.vip/public/ // publicpublichttps://d1.shopxo.vip/public/
static_url: 'http://shopxo.com/', static_url: 'https://d1.shopxo.vip/',
// default // default
system_type: 'default', system_type: 'default',
@ -23,7 +23,7 @@
application_logo: '', application_logo: '',
// //
version: 'v6', version: 'v6.1',
// //
currency_symbol: '¥', currency_symbol: '¥',

View File

@ -1,3 +1,21 @@
## v6.1.02024-04-25
1. 秒杀首页无数据报错修复
2. 商品页面批发展示优化
3. 积分商城首页优
4. 多商户和多门店客服样式优化
5. 多商户领券和组合搭配优化
6. 门店下单优化
7. 商品页面门店模式下底部操作按钮新增加载
8. 加载层logo默认读取后台配置
9. 优化支付宝小程序自定义页面标题
10. 第三方账户绑定去掉小程序入口
11. 魔方新增更多样式
12. 底部名称直接读取站点名称
13. 商品、博文轮播图片模式优化
14. 商品页批发属性未定义错误修复
## v6.0.02024-04-15 ## v6.0.02024-04-15
1. 地址导入错误修复 1. 地址导入错误修复
2. 商品支持指定规格选中 2. 商品支持指定规格选中
@ -26,6 +44,10 @@
25. 打开商品速度优化 25. 打开商品速度优化
26. 首页打开速度优化 26. 首页打开速度优化
27. 购物车支持优惠明细查看 27. 购物车支持优惠明细查看
28. 地址一键导入错误修复
29. 多语言兼容头条/抖音小程序
30. pages支持多语言切换
31. 商品支持指定规格选中
@ -47,6 +69,14 @@
15. 订单仅之前的支付方式可支付 15. 订单仅之前的支付方式可支付
16. 下单积分自定义 16. 下单积分自定义
17. 首页支持地理位置选择 17. 首页支持地理位置选择
18. h5下首页搜搜框宽度错位优化
19. 地址复制错别字优化
20. 问答分享地址优化
21. 钱包充值页面空修复,问答评论优化
22. 博客评价开关优化
23. 用户中心样式优化
24. 分类页面H5优化
25. 兼容支付宝小程序样式

View File

@ -1,7 +1,7 @@
<template> <template>
<view :class="theme_view"> <view :class="theme_view">
<view class="copyright"> <view class="copyright">
<view class="text">ShopXO {{version}}</view> <view class="text">{{application_title}} {{version}}</view>
</view> </view>
</view> </view>
</template> </template>
@ -11,6 +11,7 @@
data() { data() {
return { return {
theme_view: app.globalData.get_theme_value_view(), theme_view: app.globalData.get_theme_value_view(),
application_title: app.globalData.get_application_title(),
version: app.globalData.data.version version: app.globalData.data.version
}; };
}, },

View File

@ -9,7 +9,7 @@
<block v-if="(items.data || null) != null && items.data.length > 0"> <block v-if="(items.data || null) != null && items.data.length > 0">
<view :class="'group-item '+(item.data.length%2 != 0 && item.data.length-1 === indexs ? 'wh-auto' : 'flex-width-half')"> <view :class="'group-item '+(item.data.length%2 != 0 && item.data.length-1 === indexs ? 'wh-auto' : 'flex-width-half')">
<view class="padding-horizontal-main"> <view class="padding-horizontal-main">
<view class="flex-row align-c margin-bottom-xs" :data-value="items.url" @tap="url_event"> <view class="flex-row align-c" :data-value="items.url" @tap="url_event">
<text :class="'text-size fw-b single-text cr-'+(((item.is_text_white || null) != null) ? 'white' : 'black')">{{ items.title }}</text> <text :class="'text-size fw-b single-text cr-'+(((item.is_text_white || null) != null) ? 'white' : 'black')">{{ items.title }}</text>
<view class="hot-go margin-left-sm"> <view class="hot-go margin-left-sm">
<block v-if="(items.icon || null) !== null"> <block v-if="(items.icon || null) !== null">
@ -17,7 +17,7 @@
</block> </block>
</view> </view>
</view> </view>
<view :class="'text-size-xs margin-bottom-xs cr-'+(((item.is_text_white || null) != null) ? 'white' : 'grey-9')">{{ items.describe }}</view> <view :class="'text-size-xs margin-top-xs cr-'+(((item.is_text_white || null) != null) ? 'white' : 'grey-9')">{{ items.describe }}</view>
<swiper class="swiper-list border-radius-main oh" circular :autoplay="(items.rolling_time || null) !== null ? true : false" :vertical="propVertical" :interval="(items.rolling_time || null) !== null ? Number(items.rolling_time) * 1000 : '6000'" :duration="propDuration"> <swiper class="swiper-list border-radius-main oh" circular :autoplay="(items.rolling_time || null) !== null ? true : false" :vertical="propVertical" :interval="(items.rolling_time || null) !== null ? Number(items.rolling_time) * 1000 : '6000'" :duration="propDuration">
<swiper-item v-for="(itemss, indexss) in items.data" :key="indexss"> <swiper-item v-for="(itemss, indexss) in items.data" :key="indexss">
<view class="swiper-item"> <view class="swiper-item">

View File

@ -747,6 +747,8 @@
plugins_batchbuy_data: null, plugins_batchbuy_data: null,
// //
plugins_ask_data: null, plugins_ask_data: null,
//
plugins_wholesale_data: null,
}; };
}, },