Commit b5c2c9c9 by 宋毅

Merge branch 'igirl-channel-web' of gitlab.gongsibao.com:jiangyong/zhichan into igirl-channel-web

parents 6047a439 6b057d17
......@@ -81,6 +81,9 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
if (to.path == "/" && location.hostname == "xwzc.xiaowangtech.com") {
router.replace({ path: '/bw/jdtrademark' });
}
if (to.path == "/" && location.hostname == "gs.plus.jdcloud.com") {
router.replace({ path: '/jd/jdindustry' });
}
if (to.path.includes('login')) {
store.state.reqUrl = from.path;
store.state.reqQuery = from.query;
......@@ -213,7 +216,7 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
console.log("bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb;;", val, oldVal);
if (val.path == "/bw/jdindentdetail") {
this.fromListPath = oldVal.path;
console.log(this.fromListPath,'ttttttttttttttttttttttttttttttt');
console.log(this.fromListPath, 'ttttttttttttttttttttttttttttttt');
};
if (val.fullPath == "/jd/jdtrademark" && location.hostname == "tm.plus.jdcloud.com") {
this.jdSelfHeaderShow = true;
......
......@@ -18,7 +18,7 @@
employees: [],
logistics: [],
attachFiles: [],
payTime: '',
created_at: '',
regInfo: []
}
},
......@@ -29,8 +29,8 @@
console.log(this.user_Name, "bbbbbbbbbbbbbbbbbbbbbbbb");
}
});
if (this.$route.query.payTime) {
this.payTime = this.$route.query.payTime
if (this.$route.query.created_at) {
this.created_at = this.$route.query.created_at
}
this.getChannelFrom();
this.getDetail();
......
......@@ -540,11 +540,11 @@
</el-tooltip>
</template>
</el-table-column>
<el-table-column prop="payTime" label="下单时间">
<el-table-column prop="created_at" label="下单时间">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.payTime"
:disabled="scope.row.payTime ? false : true">
<p solt="content">{{scope.row.payTime ? scope.row.payTime : \'---\'}}
<el-tooltip placement="top" :content="scope.row.created_at"
:disabled="scope.row.created_at ? false : true">
<p solt="content">{{scope.row.created_at ? scope.row.created_at : \'---\'}}
</p>
</el-tooltip>
</template>
......
......@@ -636,7 +636,7 @@
query: {
orderNo: row.orderNo,
channelUserId: this.$route.query.channelUserId,
payTime: row.payTime
created_at: row.created_at
}
});
},
......@@ -731,12 +731,13 @@
console.log({ ...d.data });
if (d.status == 0) {
this.icbcData = d.data;
this.icbcData.map((item, index) => {
item.created_at = new Date(item.created_at).toLocaleDateString('chinese', { hour12: false }).replace(/\//g, '-')
});
this.IndustryCountPage = d.dataCount;
} else {
this.$message("请重试");
}
})
} else {
this.$message('当前未登录');
......
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