mirror of
https://gitee.com/ZhongBangKeJi/crmeb_java.git
synced 2026-04-25 04:28:33 +08:00
## v1.3.1 更新列表
1. 【修复】申请退款后积分等操作可能出现错误的问题 2. 【修复】拼团支付可能出现支付错误的问题 3. 【修复】退款申请后的订单流程优化和积分赠送的问题 4. 【修复】回收站中的商品无法恢复的问题 5. 【修复】一号通短信查询记录不完整的问题 6. 【修复】用户管理批量加分组,标签的问题 7. 【修复】积分日志搜索显示有误的问题 8. 【修复】手动发送优惠券可能会出错的问题 9. 【修复】核销订单创建在某种条件下会出错的问题 10. 【修复】移动端商品详情,购物车等样式兼容问题 11. 【修复】业务流程性的优化
This commit is contained in:
@@ -314,7 +314,9 @@
|
||||
isState: true, //默认不显示
|
||||
},
|
||||
tagStyle: {
|
||||
img: 'width:100%;'
|
||||
img: 'width:100%;display:block;',
|
||||
table: 'width:100%',
|
||||
video: 'width:100%'
|
||||
},
|
||||
posters: false,
|
||||
weixinStatus: false,
|
||||
@@ -531,53 +533,6 @@
|
||||
});
|
||||
},
|
||||
//#endif
|
||||
// setTime: function() { //到期时间戳
|
||||
// var that = this;
|
||||
// var endTimeList = that.pink;
|
||||
// that.pink.map(item => {
|
||||
// item.time = {
|
||||
// day: '00',
|
||||
// hou: '00',
|
||||
// min: '00',
|
||||
// sec: '00'
|
||||
// };
|
||||
// });
|
||||
// var countDownArr = [];
|
||||
// var timeer = setInterval(function() {
|
||||
// var newTime = new Date().getTime() / 1000;
|
||||
// for (var i in endTimeList) {
|
||||
// var endTime = endTimeList[i].stop_time;
|
||||
// var obj = [];
|
||||
// if (endTime - newTime > 0) {
|
||||
// var time = endTime - newTime;
|
||||
// var day = parseInt(time / (60 * 60 * 24));
|
||||
// var hou = parseInt(time % (60 * 60 * 24) / 3600);
|
||||
// var min = parseInt(time % (60 * 60 * 24) % 3600 / 60);
|
||||
// var sec = parseInt(time % (60 * 60 * 24) % 3600 % 60);
|
||||
// hou = parseInt(hou) + parseInt(day * 24);
|
||||
// obj = {
|
||||
// day: that.timeFormat(day),
|
||||
// hou: that.timeFormat(hou),
|
||||
// min: that.timeFormat(min),
|
||||
// sec: that.timeFormat(sec)
|
||||
// }
|
||||
// } else {
|
||||
// obj = {
|
||||
// day: '00',
|
||||
// hou: '00',
|
||||
// min: '00',
|
||||
// sec: '00'
|
||||
// }
|
||||
// }
|
||||
// endTimeList[i].time = obj;
|
||||
// }
|
||||
// that.pink = endTimeList
|
||||
// }, 1000);
|
||||
// that.timeer = timeer
|
||||
// },
|
||||
// timeFormat(param) { //小于10的格式化函数
|
||||
// return param < 10 ? '0' + param : param;
|
||||
// },
|
||||
/**
|
||||
* 默认选中属性
|
||||
*
|
||||
@@ -936,7 +891,7 @@
|
||||
let storeName = that.storeInfo.title;
|
||||
let price = that.storeInfo.price;
|
||||
setTimeout(() => {
|
||||
that.$util.PosterCanvas(arrImages, storeName, price, function(tempFilePath) {
|
||||
that.$util.PosterCanvas(arrImages, storeName, price, that.storeInfo.otPrice, function(tempFilePath) {
|
||||
that.posterImage = tempFilePath;
|
||||
that.canvasStatus = true;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user