Commit fb28b02a authored by zhangjianguo's avatar zhangjianguo
parents 26ed4aa2 2feb616b
...@@ -112,8 +112,8 @@ ...@@ -112,8 +112,8 @@
} }
.searchInput .el-input__inner{ .searchInput .el-input__inner{
border:none;outline:none; border:none;outline:none;
height: 30px; height: 30px!important;
line-height: 30px; line-height: 30px!important;
} }
.searchInput{ .searchInput{
line-height: normal; line-height: normal;
......
...@@ -360,8 +360,8 @@ import ChooseImg from "@/components/global/ChooseImg.vue"; ...@@ -360,8 +360,8 @@ import ChooseImg from "@/components/global/ChooseImg.vue";
} }
.addGoodsClass .searchInput .el-input__inner{ .addGoodsClass .searchInput .el-input__inner{
border:none;outline:none; border:none;outline:none;
height: 30px; height: 30px!important;
line-height: 30px; line-height: 30px!important;
} }
.addGoodsClass .searchInput{ .addGoodsClass .searchInput{
line-height: normal; line-height: normal;
......
...@@ -874,8 +874,8 @@ export default { ...@@ -874,8 +874,8 @@ export default {
} }
.goodsClass .searchInput .el-input__inner{ .goodsClass .searchInput .el-input__inner{
border:none;outline:none; border:none;outline:none;
height: 30px; height: 30px!important;
line-height: 30px; line-height: 30px!important;
} }
.goodsClass .searchInput{ .goodsClass .searchInput{
line-height: normal; line-height: normal;
......
<template> <template>
<div class="goodsListEdit"> <div class="goodsListEdit">
<div class="head-title"> <div class="head-title">
<span @click="CommonJump('goodsList')" class="blue point">商品列表</span> <span @click="CommonJump('goodsList')" class="blue point">商品列表</span>
...@@ -874,7 +874,7 @@ ...@@ -874,7 +874,7 @@
type="info" type="info"
style="margin:5px" style="margin:5px"
> >
{{ item.Name }}</el-tag {{ item.AreaName }}</el-tag
> >
</div> </div>
</div> </div>
...@@ -2450,7 +2450,8 @@ export default { ...@@ -2450,7 +2450,8 @@ export default {
this.AreaList.forEach(item => { this.AreaList.forEach(item => {
let obj = { let obj = {
Id: item.RegionId, Id: item.RegionId,
Name: item.RegionName AreaId:item.RegionId,
AreaName: item.RegionName
}; };
this.addMsg.AreaList.push(obj); this.addMsg.AreaList.push(obj);
}); });
...@@ -2507,15 +2508,16 @@ export default { ...@@ -2507,15 +2508,16 @@ export default {
this.imgType = val; this.imgType = val;
}, },
SelectId(msg) { SelectId(msg) {
let that=this;
if (this.imgType == 1) { if (this.imgType == 1) {
let obj = { let obj = {
Id: msg.selectId, Id: msg.selectId,
Path: this.domainManager().ImageUrl + msg.url Path:that.getIconLink(msg.url),
}; };
this.addMsg.CarouselImageList.push(obj); this.addMsg.CarouselImageList.push(obj);
} }
if (this.imgType == 2) { if (this.imgType == 2) {
this.addMsg.CustomShareImage = this.domainManager().ImageUrl + msg.url; this.addMsg.CustomShareImage = that.getIconLink(msg.url);
} }
if (this.imgType == 3) { if (this.imgType == 3) {
let imgListIndex1 = this.imgListIndex1; let imgListIndex1 = this.imgListIndex1;
...@@ -2605,6 +2607,7 @@ export default { ...@@ -2605,6 +2607,7 @@ export default {
}, },
res => { res => {
this.addMsg = res.data.data; this.addMsg = res.data.data;
console.log("this.addMsg",this.addMsg)
this.initShareSettings(); this.initShareSettings();
this.SpecificationPriceList = this.addMsg.SpecificationPriceList; this.SpecificationPriceList = this.addMsg.SpecificationPriceList;
this.SpecificationList = this.addMsg.SpecificationList; this.SpecificationList = this.addMsg.SpecificationList;
......
...@@ -221,8 +221,8 @@ export default { ...@@ -221,8 +221,8 @@ export default {
} }
.quickBuy .content .searchInput .el-input__inner{ .quickBuy .content .searchInput .el-input__inner{
border:none;outline:none; border:none;outline:none;
height: 30px; height: 30px!important;
line-height: 30px; line-height: 30px!important;
} }
.quickBuy .content .searchInput{ .quickBuy .content .searchInput{
line-height: normal; line-height: normal;
......
...@@ -240,7 +240,7 @@ export default { ...@@ -240,7 +240,7 @@ export default {
Type:1, Type:1,
Recycled:1, Recycled:1,
pageIndex:1, pageIndex:1,
pageSize:15, pageSize:20,
GroupId:0, GroupId:0,
}, },
PageList:[], PageList:[],
......
...@@ -286,8 +286,8 @@ export default { ...@@ -286,8 +286,8 @@ export default {
} }
.quickBuy .content .searchInput .el-input__inner{ .quickBuy .content .searchInput .el-input__inner{
border:none;outline:none; border:none;outline:none;
height: 30px; height: 30px!important;
line-height: 30px; line-height: 30px!important;
} }
.quickBuy .content .searchInput{ .quickBuy .content .searchInput{
line-height: normal; line-height: normal;
......
...@@ -152,6 +152,8 @@ ...@@ -152,6 +152,8 @@
UserId: this.UserId UserId: this.UserId
}, res => { }, res => {
this.userInfo = res.data.data; this.userInfo = res.data.data;
this.msg.Name = this.userInfo.SuperiorName;
this.getList();
}) })
}, },
}, },
......
This diff is collapsed.
...@@ -541,6 +541,7 @@ ...@@ -541,6 +541,7 @@
this.apipost("/api/order/GetOrderAfterSaleInfo", { this.apipost("/api/order/GetOrderAfterSaleInfo", {
ReOrderId: this.ReOrderId ReOrderId: this.ReOrderId
}, res => { }, res => {
if(res.data.resultCode==1){
this.dataInfo = res.data.data; this.dataInfo = res.data.data;
let data = res.data.data; let data = res.data.data;
// 未付款 // 未付款
...@@ -559,6 +560,8 @@ ...@@ -559,6 +560,8 @@
} }
this.DetailList=[]; this.DetailList=[];
this.DetailList.push(data.OrderInfo) this.DetailList.push(data.OrderInfo)
}
}) })
}, },
// 快递公司 // 快递公司
......
...@@ -332,6 +332,18 @@ export default new Router({ ...@@ -332,6 +332,18 @@ export default new Router({
name: 'BulkShipment', name: 'BulkShipment',
component: resolve => require(['@/components/orderMan/BulkShipment'], resolve), component: resolve => require(['@/components/orderMan/BulkShipment'], resolve),
}, },
// 订单管理 批量发货
{
path: '/BulkShipment',
name: 'BulkShipment',
component: resolve => require(['@/components/orderMan/BulkShipment'], resolve),
},
// 订单管理 财务配置
{
path: '/financialAllocation',
name: 'financialAllocation',
component: resolve => require(['@/components/orderMan/financialAllocation'], resolve),
},
//设置 基础设置 //设置 基础设置
{ {
......
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