1、提货点
2、客服(腾讯云智服)
3、接口权限控制
4、复制第三方商品可配置
4、优化附件上传配置
5、手机端核销订单
6、手机端订单统计、订单管理
7、短信优化
8、订阅消息全自动化
This commit is contained in:
张乐
2020-09-15 16:13:25 +08:00
parent aee9c1d692
commit db2c3b44a6
245 changed files with 19900 additions and 994 deletions

View File

@@ -54,7 +54,7 @@
v-for="(item,index) in formValidate.sliderImages"
:key="index"
class="pictrue"
draggable="false"
draggable="true"
@dragstart="handleDragStart($event, item)"
@dragover.prevent="handleDragOver($event, item)"
@dragenter="handleDragEnter($event, item)"

View File

@@ -143,6 +143,8 @@
title="复制淘宝、天猫、拼多多、京东、苏宁"
:visible.sync="dialogVisible"
width="1200px"
:modal="false"
class="taoBaoModal"
:before-close="handleClose">
<tao-bao v-if="dialogVisible"></tao-bao>
</el-dialog>
@@ -218,7 +220,6 @@ export default {
// 获取商品表单头数量
goodHeade () {
productHeadersApi().then(res => {
console.log(res)
this.headeNum = res
}).catch(res => {
this.$message.error(res.message);
@@ -227,7 +228,6 @@ export default {
// 商户分类;
getCategorySelect() {
categoryApi({ status: -1, type: 1 }).then(res => {
console.log(res)
this.merCateList = res
}).catch(res => {
this.$message.error(res.message)
@@ -277,6 +277,9 @@ export default {
</script>
<style scoped lang="scss">
.taoBaoModal{
z-index: 333 !important;
}
.demo-table-expand{
/deep/ label{
width: 82px;

View File

@@ -144,7 +144,6 @@
modalPicTap (tit) {
const _this = this
_this.$modalUpload(function(img) {
console.log(img)
tit==='1' ? _this.formValidate.avatar = img[0].sattDir : img.map((item) => {
_this.pics.push( item.sattDir)
})
@@ -166,7 +165,6 @@
}, 600);
})
} else {
console.log('error submit!!');
return false;
}
});

View File

@@ -22,7 +22,7 @@
</el-input>
</el-form-item>
<el-form-item label="用户名称:">
<el-select v-model="uids" style="width: 500px" reserve-keyword multiple remote filterable
<el-select v-model="uids" class="selWidth" reserve-keyword multiple remote filterable
:remote-method="remoteMethod" :loading="loading" placeholder="请输入用户名称" clearable @change="seachList">
<el-option
v-for="item in options"

View File

@@ -449,7 +449,7 @@
isBest: 0,
tempId: info.tempId,
attrValue: info.attrValue,
attr: info.attr,
attr: info.attr || [],
selectRule: info.selectRule,
isSub: false,
content: info.content,
@@ -458,8 +458,10 @@
giveIntegral: info.giveIntegral,
ficti: info.ficti
}
for (var i = 0; i < this.formValidate.attr.length; i++) {
this.formValidate.attr[i].attrValue = JSON.parse(info.attr[i].attrValues)
if(this.formValidate.attr){
for (var i = 0; i < this.formValidate.attr.length; i++) {
this.formValidate.attr[i].attrValue = JSON.parse(info.attr[i].attrValues)
}
}
this.loading = false;
}).catch(() => {