This commit is contained in:
周中平 2020-04-25 23:01:04 +08:00
parent 95200f872e
commit 8842afab2a
9 changed files with 36 additions and 15 deletions

View File

@ -10,6 +10,25 @@
## 更新日志 ## 更新日志
### v1.1.39
```
优化:后台菜单超出显示滚动条
优化取消收集formid
优化:后台门店管理添加筛选条件
优化:回退余额时判断用户是否存在
优化:小程序端授权登录流程
优化超管后台新增商城ID错误
修复:优惠券和积分叠加计算错误
修复:后台选择门店未显示全部
修复:数据统计权限问题报错
修复:订单支付成功短信提醒
修复:砍价商品列表价格排序报错
修复:小程序端订单页未支付提示
注:本次更新须重新发布小程序
```
### v1.1.38 ### v1.1.38
``` ```

18
app.js
View File

@ -320,16 +320,18 @@ App({
/** /**
* 记录formId * 记录formId
* (因微信模板消息已下线所以formId取消不再收集)
*/ */
saveFormId(formId) { saveFormId(formId) {
let _this = this; return true;
console.log('saveFormId'); // let _this = this;
if (formId === 'the formId is a mock one') { // console.log('saveFormId');
return false; // if (formId === 'the formId is a mock one') {
} // return false;
_this._post_form('wxapp.formId/save', { // }
formId: formId // _this._post_form('wxapp.formId/save', {
}, null, null, null, false); // formId: formId
// }, null, null, null, false);
}, },
/** /**

View File

@ -7,7 +7,7 @@
<!-- 选项按钮 --> <!-- 选项按钮 -->
<zan-btn <zan-btn
wx:for="{{ actions }}" wx:for="{{ actions }}"
wx:key="{{ index }}-{{ item.name }}" wx:key="this"
bind:btnclick="handleBtnClick" bind:btnclick="handleBtnClick"
data-index="{{ index }}" data-index="{{ index }}"
open-type="{{ item.openType }}" open-type="{{ item.openType }}"

View File

@ -7,7 +7,7 @@
</scroll-view> </scroll-view>
</view> </view>
<view class="zan-dialog__footer {{ buttonsShowVertical ? 'zan-dialog__footer--vertical' : 'zan-dialog__footer--horizon' }}"> <view class="zan-dialog__footer {{ buttonsShowVertical ? 'zan-dialog__footer--vertical' : 'zan-dialog__footer--horizon' }}">
<block wx:for="{{ buttons }}" wx:key="{{ item.text }}-{{ item.type }}"> <block wx:for="{{ buttons }}" wx:key="this">
<zan-button class="zan-dialog__button" custom-class="{{ index === 0 ? 'zan-dialog__button-inside--first' : 'zan-dialog__button-inside' }}" data-type="{{ item.type }}" data-open-type="{{ item.openType }}" open-type="{{ item.openType }}" bind:btnclick="handleButtonClick" <zan-button class="zan-dialog__button" custom-class="{{ index === 0 ? 'zan-dialog__button-inside--first' : 'zan-dialog__button-inside' }}" data-type="{{ item.type }}" data-open-type="{{ item.openType }}" open-type="{{ item.openType }}" bind:btnclick="handleButtonClick"
bind:getuserinfo="handleUserInfoResponse" bind:getphonenumber="handlePhoneResponse" bind:opensetting="handleOpenSettingResponse"> bind:getuserinfo="handleUserInfoResponse" bind:getphonenumber="handlePhoneResponse" bind:opensetting="handleOpenSettingResponse">
<view style="color: {{ item.color || '#333' }}">{{ item.text }}</view> <view style="color: {{ item.color || '#333' }}">{{ item.text }}</view>

View File

@ -109,7 +109,7 @@
} }
.category-list .right .cont .title { .category-list .right .cont .title {
height: 76rpx; height: 72rpx;
line-height: 1.3; line-height: 1.3;
} }

View File

@ -176,7 +176,7 @@ Page({
_this.getOrderDetail(orderId); _this.getOrderDetail(orderId);
}, },
fail() { fail() {
App.showError(result.msg.success); App.showError(result.msg.error);
}, },
}); });
} }

View File

@ -175,7 +175,7 @@ Page({
_this.getOrderDetail(orderId); _this.getOrderDetail(orderId);
}, },
fail() { fail() {
App.showError(result.msg.success); App.showError(result.msg.error);
}, },
}); });
} }

View File

@ -139,7 +139,7 @@ page, .container {
.goods-item .goods-info .goods-name { .goods-item .goods-info .goods-name {
font-size: 28rpx; font-size: 28rpx;
min-height: 76rpx; min-height: 72rpx;
margin-bottom: 20rpx; margin-bottom: 20rpx;
} }

View File

@ -1,3 +1,3 @@
{ {
"version": "1.1.38" "version": "1.1.39"
} }