Commit ba1b2eab by 刘泽奇

123

parent 72ffa5eb
......@@ -77,7 +77,7 @@
{{user_Name}}<i class="el-icon-arrow-down el-icon--right"></i>
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item icon="el-icon-s-order">我的订单</el-dropdown-item>
<el-dropdown-item icon="el-icon-s-order" command="myIndent">我的订单</el-dropdown-item>
<el-dropdown-item icon="el-icon-bicycle" command="loginOut">退出登录</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
......
......@@ -227,6 +227,7 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
title.innerText = "百望商标注册服务";
this.logoImg = '/imgs/bwlogo.png';
this.homeUrl = "/bw/jdtrademark";
break;
case '1688':
title.innerText = "1688商标注册服务";
......@@ -239,6 +240,14 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
break;
}
},
myIndent() {
this.$router.push({
path: `/${this.channelName}/jdindentlist`,
query: {
channelUserId: this.$root.channelUserId
}
})
},
goHome() {
this.$router.push(this.homeUrl);
},
......@@ -248,7 +257,9 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
case 'loginOut':
this.loginOut();
break;
case 'myIndent':
this.myIndent();
break;
default:
break;
}
......
......@@ -441,7 +441,7 @@
],
hidePage: true,
user_Name: "",
channelFrom:"",
channelFrom: "",
}
},
......@@ -454,7 +454,7 @@
document.cookie.split('; ').map((item, index) => {
if (item.includes('pin=')) {
this.user_Name = decodeURIComponent(item.substring(4));
}
}
});
},
mounted: function() {
......@@ -647,9 +647,9 @@
this.$root.loading = true;
this.$root.postReq("/web/trademark/tmqueryCtl/doPost", obj).then((d) => {
this.$root.loading = false;
console.log(d.data);
if (d.status == 0 && d.data) {
console.log(d.data, "12313213");
console.log(this.stuff);
this.tableData = d.data;
/* 没有分页参数 需要重新改*/
this.countPage = d.dataCount;
......@@ -860,6 +860,7 @@
this.stuff.businessLicensePic = row.businessLicensePic;
this.stuff.identityCardPic = row.identityCardPic;
this.stuff.smwjUrl = row.smwjUrl;
this.stuff.gzwtsUrl = row.gzwtsUrl;
},
uploadStuffs(){
console.log(this.stuff);
......
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