Commit 7cd6b80a authored by houjn@hikoon.cn's avatar houjn@hikoon.cn

Merge branch 'release' of...

Merge branch 'release' of http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator into release2.2

 Conflicts:
	src/components/ImageAndVideoUpload/index.vue
	src/views/ecw/order/warehousing/index.vue
parents c09c8a70 c2981f4c
...@@ -515,6 +515,19 @@ export function warehousePictureList(data){ ...@@ -515,6 +515,19 @@ export function warehousePictureList(data){
data data
}) })
} }
export function warehousePictureCreate(data){
return request({
url: '/order/warehouse-picture/create',
method: 'post',
data
})
}
export function warehousePictureDelete(id){
return request({
url: '/order/warehouse-picture/delete?id=' + id,
method: 'delete'
})
}
// 获得部门订单分页 // 获得部门订单分页
export function deptOrderPage(params){ export function deptOrderPage(params){
......
...@@ -359,7 +359,7 @@ export default { ...@@ -359,7 +359,7 @@ export default {
if (res.code === 566) { if (res.code === 566) {
this.$confirm(res.msg+this.$t('是否需要一起预装?'), this.$t("提示"), { this.$confirm(res.msg+this.$t('是否需要一起预装?'), this.$t("提示"), {
dangerouslyUseHTMLString: true, dangerouslyUseHTMLString: true,
type: "warning", distinguishCancelAndClose: true,
confirmButtonText: '预装关联单', confirmButtonText: '预装关联单',
cancelButtonText: '仅当前订单' cancelButtonText: '仅当前订单'
}) })
...@@ -371,11 +371,13 @@ export default { ...@@ -371,11 +371,13 @@ export default {
}); });
}) })
.catch((_) => { .catch((_) => {
createGoods({ ...params, relationStatus: 2, singleLoad: true }).then((res) => { if(action =='cancel'){
serviceMsg(res, this).then(() => { createGoods({ ...params, relationStatus: 2, singleLoad: true }).then((res) => {
this.queryAllData(); serviceMsg(res, this).then(() => {
this.queryAllData();
});
}); });
}); }
}); });
} }
}); });
......
...@@ -713,7 +713,7 @@ export default { ...@@ -713,7 +713,7 @@ export default {
if (res.code === 566) { if (res.code === 566) {
this.$confirm(res.msg+this.$t('是否需要一起预装?'), this.$t("提示"), { this.$confirm(res.msg+this.$t('是否需要一起预装?'), this.$t("提示"), {
dangerouslyUseHTMLString: true, dangerouslyUseHTMLString: true,
type: "warning", distinguishCancelAndClose: true,
confirmButtonText: '预装关联单', confirmButtonText: '预装关联单',
cancelButtonText: '仅当前订单' cancelButtonText: '仅当前订单'
}) })
...@@ -725,11 +725,13 @@ export default { ...@@ -725,11 +725,13 @@ export default {
}); });
}) })
.catch((_) => { .catch((_) => {
createGoods({ ...params, relationStatus: 2, singleLoad: true }).then((res) => { if(action =='cancel'){
serviceMsg(res, this).then(() => { createGoods({ ...params, relationStatus: 2, singleLoad: true }).then((res) => {
this.queryAllData(); serviceMsg(res, this).then(() => {
this.queryAllData();
});
}); });
}); }
}); });
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment