mirror of
https://gitee.com/ZhongBangKeJi/crmeb_java.git
synced 2026-04-23 12:08:33 +08:00
## v1.3.1 更新列表
1. 【修复】申请退款后积分等操作可能出现错误的问题 2. 【修复】拼团支付可能出现支付错误的问题 3. 【修复】退款申请后的订单流程优化和积分赠送的问题 4. 【修复】回收站中的商品无法恢复的问题 5. 【修复】一号通短信查询记录不完整的问题 6. 【修复】用户管理批量加分组,标签的问题 7. 【修复】积分日志搜索显示有误的问题 8. 【修复】手动发送优惠券可能会出错的问题 9. 【修复】核销订单创建在某种条件下会出错的问题 10. 【修复】移动端商品详情,购物车等样式兼容问题 11. 【修复】业务流程性的优化
This commit is contained in:
@@ -54,8 +54,8 @@
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button size="mini" type="primary" @click="submitForm('formValidate')">立即创建</el-button>
|
||||
<el-button size="mini" @click="resetForm('formValidate')">取消</el-button>
|
||||
<el-button size="mini" type="primary" @click="submitForm('formValidate')" :loading="loadingbtn">提交</el-button>
|
||||
<el-button size="mini" @click="resetForm('formValidate')">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</template>
|
||||
@@ -69,7 +69,8 @@
|
||||
pics: '',
|
||||
productId: '',
|
||||
productScore: null,
|
||||
serviceScore: null
|
||||
serviceScore: null,
|
||||
sku: ''
|
||||
}
|
||||
export default {
|
||||
name: "creatComment",
|
||||
@@ -95,6 +96,7 @@
|
||||
}
|
||||
};
|
||||
return {
|
||||
loadingbtn: false,
|
||||
loading: false,
|
||||
pics: [],
|
||||
image: '',
|
||||
@@ -138,6 +140,7 @@
|
||||
this.$modalGoodList(function(row) {
|
||||
_this.image = row.image
|
||||
_this.formValidate.productId = row.id
|
||||
_this.formValidate.sku = row.attrValue[0].suk
|
||||
})
|
||||
},
|
||||
// 点击商品图
|
||||
@@ -153,7 +156,8 @@
|
||||
this.pics.splice(i, 1)
|
||||
},
|
||||
submitForm(formName) {
|
||||
this.formValidate.pics = JSON.stringify(this.pics)
|
||||
this.loadingbtn = true;
|
||||
this.formValidate.pics = this.pics.length>0 ? JSON.stringify(this.pics) : ''
|
||||
this.$refs[formName].validate((valid) => {
|
||||
if (valid) {
|
||||
replyCreatApi(this.formValidate).then(() => {
|
||||
@@ -162,6 +166,9 @@
|
||||
// this.clear();
|
||||
this.$emit('getList');
|
||||
}, 600);
|
||||
this.loadingbtn = false;
|
||||
}).catch(()=>{
|
||||
this.loadingbtn = false;
|
||||
})
|
||||
} else {
|
||||
return false;
|
||||
@@ -170,7 +177,6 @@
|
||||
},
|
||||
resetForm(formName) {
|
||||
this.$refs[formName].resetFields()
|
||||
this.$msgbox.close()
|
||||
this.pics=[]
|
||||
this.formValidate.pics=''
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user