v2.3.2
parent
88b3ee0221
commit
a127bc3d46
6
App.vue
6
App.vue
|
|
@ -51,9 +51,9 @@
|
|||
"/pages/user/user"
|
||||
],
|
||||
// 请求地址
|
||||
request_url: 'https://dev.shopxo.vip/',
|
||||
request_url: 'https://d1.shopxo.vip/',
|
||||
// 静态资源地址(如系统根目录不在public目录下面请在静态地址后面加public目录、如:https://d1.shopxo.vip/public/)
|
||||
static_url: 'https://dev.shopxo.vip/',
|
||||
static_url: 'https://d1.shopxo.vip/',
|
||||
// 系统类型(默认default、如额外独立小程序、可与程序分身插件实现不同主体小程序及支付独立)
|
||||
system_type: 'default',
|
||||
// 基础信息
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
// 默认logo、如 /static/images/common/logo.png
|
||||
application_logo: '',
|
||||
// 版本号
|
||||
version: 'v2.3.1',
|
||||
version: 'v2.3.2',
|
||||
// 货币价格符号
|
||||
currency_symbol: '¥',
|
||||
// 主题类型 主题颜色
|
||||
|
|
|
|||
16
changelog.md
16
changelog.md
|
|
@ -1,3 +1,19 @@
|
|||
## v2.3.2(2022-11-30)
|
||||
* 门店详情支持多规格直接加购
|
||||
* 分类页面支持多规格直接加购+购物车操作
|
||||
* 新增会员码
|
||||
* 新增钱包付款码
|
||||
* 新增个人资料修改
|
||||
* 新增手机号码修改
|
||||
* 新增账号注销
|
||||
* 新增条码二维码生成组件
|
||||
* 新增用户ID展示
|
||||
* 购物车分离优化
|
||||
* 适配微信小程序登录新规
|
||||
* 可视化新增图文、图片魔方、自定义html组件,商品支持左图右文样式
|
||||
* 下单时间优化、支持默认提示
|
||||
|
||||
|
||||
## v2.3.1(2022-10-23)
|
||||
* 支付宝获取地图权限优化
|
||||
* 头条小程序分类不铺满问题修复
|
||||
|
|
|
|||
|
|
@ -243,7 +243,7 @@
|
|||
<!-- 购物车底部导航 -->
|
||||
<view class="botton-nav round pa bg-main-pair oh">
|
||||
<view class="cart dis-inline-block va-m margin-left-xxl pr cp" @tap="cart_event">
|
||||
<uni-icons type="cart" size="16" color="#fff"></uni-icons>
|
||||
<uni-icons type="cart" size="18" color="#fff"></uni-icons>
|
||||
<view v-if="(cart || null) != null && (cart.buy_number || 0) > 0" class="badge-icon pa">
|
||||
<component-badge :propNumber="cart.buy_number"></component-badge>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -206,7 +206,7 @@
|
|||
<!-- 购物车底部导航 -->
|
||||
<view class="botton-nav round pa bg-main-pair oh">
|
||||
<view class="cart dis-inline-block va-m margin-left-xxl pr cp" @tap="cart_event">
|
||||
<uni-icons type="cart" size="16" color="#fff"></uni-icons>
|
||||
<uni-icons type="cart" size="18" color="#fff"></uni-icons>
|
||||
<view v-if="(cart || null) != null && (cart.buy_number || 0) > 0" class="badge-icon pa">
|
||||
<component-badge :propNumber="cart.buy_number"></component-badge>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<image :src="(user.avatar || default_avatar)" mode="widthFix" class="circle br fl user-avatar"></image>
|
||||
<view class="fl margin-left">
|
||||
<view>{{user.user_name_view || '用户名'}}</view>
|
||||
<view v-if="(user || null) != null" class="br-main cr-main round tc padding-left-sm padding-right-sm margin-top-xs">ID {{user.id}}</view>
|
||||
<view v-if="(user || null) != null" class="br-main cr-main round tc padding-left-lg padding-right-lg margin-top-xs dis-inline-block">ID {{user.id}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="padding-top-xxl padding-bottom-xxl padding-right-xxxl arrow-right br-t" data-value="/pages/login/login?opt_form=bind_verify" @tap="url_event">
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
<uni-icons type="compose" size="14" color="#fff"></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="(user_id || null) != null" class="br round tc padding-left-sm padding-right-sm margin-top-xs">ID {{user_id}}</view>
|
||||
<view v-if="(user_id || null) != null" class="br round tc padding-left-lg padding-right-lg margin-top-xs dis-inline-block">ID {{user_id}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
|||
Loading…
Reference in New Issue