Commit 68b90c24 by 刘泽奇

123

parent a7e9c6b1
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -117,9 +117,9 @@ ...@@ -117,9 +117,9 @@
} }
.jdindentlist-inquire>div:nth-child(2)>button { .jdindentlist-inquire>div:nth-child(2)>button {
background: #3171ff; background: rgba(255, 255, 255, 1);
color: #fff; color: #333333;
border: 1px solid #dee0eb; border: 1px solid #3071fe;
border-radius: 100px; border-radius: 100px;
width: 58px; width: 58px;
height: 28px; height: 28px;
...@@ -128,10 +128,9 @@ ...@@ -128,10 +128,9 @@
} }
.jdindentlist-inquire>div:nth-child(2)>button:nth-child(2) { .jdindentlist-inquire>div:nth-child(2)>button:nth-child(2) {
background: #3171ff !important;
background: rgba(255, 255, 255, 1) !important; color: #fff !important;
color: #333333 !important; border: 1px solid #dee0eb !important;
border: 1px solid #3071fe !important;
border-radius: 100px; border-radius: 100px;
width: 58px; width: 58px;
height: 28px; height: 28px;
...@@ -170,6 +169,11 @@ ...@@ -170,6 +169,11 @@
border: 1px solid rgba(225, 225, 225, 1); border: 1px solid rgba(225, 225, 225, 1);
} }
.jdindentlist-icbc-warpper .jdindentlist-inquire {
height: 96px;
}
.jdindentlist-list { .jdindentlist-list {
margin-top: 0px; margin-top: 0px;
background: #ffffff; background: #ffffff;
...@@ -288,6 +292,6 @@ ...@@ -288,6 +292,6 @@
} }
.jdindentlist-icbc-warpper .jdindentlist-inquire .jdicbc-find { .jdindentlist-icbc-warpper .jdindentlist-inquire .jdicbc-find {
padding-top: 4px ; padding-top: 4px;
} }
\ No newline at end of file
...@@ -472,6 +472,10 @@ ...@@ -472,6 +472,10 @@
icbcOrderStatusNameList: [ icbcOrderStatusNameList: [
{ {
value: '',
label: '全部'
},
{
value: '1', value: '1',
label: '待付款' label: '待付款'
}, },
...@@ -521,12 +525,40 @@ ...@@ -521,12 +525,40 @@
}); });
if (this.$root.channelUserId != "") { if (this.$root.channelUserId != "") {
this.handleSizeChange(); this.handleSizeChange();
} }
if (location.hostname == "gs.plus.jdcloud.com") {
this.navActive = 'second';
this.getIcbcList();
}
this.getChannelFrom(); this.getChannelFrom();
}, },
methods: { methods: {
/*
底部线条 数据请求后调用
*/
modifyTableBorder(){
switch (this.navActive) {
case 'first':
if (this.tableData.length > 0) {
$('.el-table').css({ "border-bottom": '1px solid #ebeef5' });
} else {
$('.el-table').css({ "border-bottom": 'none' });
}
break;
case 'second':
if (this.icbcData.length > 0) {
$('.el-table').css({ "border-bottom": '1px solid #ebeef5' });
} else {
$('.el-table').css({ "border-bottom": 'none' });
}
break;
default:
break;
}
},
getChannelFrom(){ getChannelFrom(){
this.channelFrom = this.$root.getChannelPath(); this.channelFrom = this.$root.getChannelPath();
}, },
...@@ -601,8 +633,16 @@ ...@@ -601,8 +633,16 @@
}, },
navClick(tab, e){ navClick(tab, e){
console.log(tab, e, this.navActive); console.log(tab, e, this.navActive);
if (this.navActive == 'second') { switch (this.navActive) {
this.getIcbcList(); case 'first':
this.handleSizeChange();
break;
case 'second':
this.getIcbcList();
break;
default:
break;
} }
}, },
tableRowClassName({ row, rowIndex }) { tableRowClassName({ row, rowIndex }) {
...@@ -778,7 +818,6 @@ ...@@ -778,7 +818,6 @@
}); });
} }
} else { } else {
console.log(d, "getTmOrderList..........."); console.log(d, "getTmOrderList...........");
} }
...@@ -794,6 +833,8 @@ ...@@ -794,6 +833,8 @@
this.itemName = null; this.itemName = null;
this.tmName = null; this.tmName = null;
this.CreateDate = null; this.CreateDate = null;
this.startTime = null;
this.entTime = null;
console.log(this.CreateDate); console.log(this.CreateDate);
this.deliveryStatus = null; this.deliveryStatus = null;
this.paymentStatus = null; this.paymentStatus = null;
...@@ -818,6 +859,7 @@ ...@@ -818,6 +859,7 @@
this.icbcOrderStatusName = null; this.icbcOrderStatusName = null;
this.icbcStartTime = null; this.icbcStartTime = null;
this.icbcEntTime = null; this.icbcEntTime = null;
this.icbcCreateDate = null;
}, },
icbcFind(){ icbcFind(){
......
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