Commit bda3a5b6 by 刘泽奇

123

parent 69e1799d
......@@ -58,7 +58,7 @@
<transition name="slide-fade">
<router-view></router-view>
</transition>
<div class="jdc-footer" v-show="headerHidden"></div>
<div class="jdc-footer" v-show="selfFooterShow"></div>
</div>
<script src="/js/cropper/index.js"></script>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -158,6 +158,8 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
channelUserId: "",
headerHidden: null,
channelName: '',
selfFooterShow: true,
};
},
created() {
......@@ -175,15 +177,20 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
mounted() {
setTimeout(() => {
if (location.hash.split('/')[1] == "jd") {
console.log("zzzzzzzzzzzzzzz", location.hash.split('/')[1], this.headerHidden);
console.log("zzzzzzzzzzzzzzz", location.hash.split('/'), this.headerHidden);
this.headerHidden = true;
var find = location.hash.indexOf('/selftmreg');
if (find == -1) {
this.selfFooterShow = true;
} else {
this.selfFooterShow = false;
}
} else {
this.headerHidden = false;
this.selfFooterShow = false;
console.log("zzzzzzzzzzzzzzz", location.hash.split('/')[1], this.headerHidden);
}
}, 500);
var self = this;
if (!this.currentUser) {
this.logins.push({ "icon": "el-icon-location-outline", "title": "登录", "type": "text", key: "login", "isOnGrid": true });
......
......@@ -3195,10 +3195,10 @@ var {
font-size: 12px;
}
.search-warp-row01 .nianfen-warp {
/* .search-warp-row01 .nianfen-warp {
border-bottom: none;
padding-bottom: 0;
}
} */
.falv-warp .item var,
.falv-warp span,
......
<gsb-pcpage>
<div class="bycquerytm">
<div class="jdindentdetail-nav" style="width:1200px;margin:12px auto;padding: 0;height:24px;">
<el-breadcrumb separator-class="el-icon-arrow-right">
<el-breadcrumb-item :to="listPath">商标注册服务
</el-breadcrumb-item>
<el-breadcrumb-item>商标检索</el-breadcrumb-item>
</el-breadcrumb>
</div>
<el-dialog width="30%" :visible.sync="showLargePic">
<img style="width:100%;height:auto" :src="largePicUrl">
</el-dialog>
......@@ -373,7 +380,7 @@
<!--申请类别-->
<gsb-collapse2 class="shenqing-warp">
<el-row slot="desc">
<el-col :span="2" style="padding:3px 0;color: #828282">
<el-col :span="2" style="margin-top:3px;padding:3px 0;color: #828282">
<span>申请类别:</span>
</el-col>
<el-col class="item" v-for="o in sqlbdata.slice(0,5)" :key="o" :span="3">
......
......@@ -7,6 +7,13 @@
props: ["title"],
data: function () {
return {
listPath: {
path: `/${this.$root.channelName}/jdtrademark`,
query: {
channelUserId: this.$route.query.channelUserId,
deliveryOrderNo: this.deliveryOrderNo,
}
},
showLargePic: false,
largePicUrl: "",
dialogFormVisible: false,
......@@ -1545,8 +1552,19 @@
if (this.activeName == "six") {
this.nclFuwusearch();
}
this.toTop();
}
,
toTop(){
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
if (scrollTop != 0) {
let timer = setInterval(() => {
window.scrollTo(0, scrollTop -= 20);
console.log(scrollTop);
if (scrollTop <= 0) clearInterval(timer);
}, 0);
};
},
handleCurrentChange(val)
{
this.page = val;
......@@ -2599,7 +2617,7 @@
} else {
console.log(d.msg);
}
}).then(()=>{
}).then(() => {
}).catch(function (e) {
console.log(e);
......
......@@ -485,6 +485,7 @@
font-family: PingFangSC;
font-weight: 400;
color: rgba(83, 83, 83, 1);
margin-bottom: 15px;
}
/* sss */
......@@ -630,9 +631,9 @@
}
.step2-footer>button {
background: #FFFFFF;
border: 1px solid #0989C5;
color: #0989C5;
background: rgb(81, 210, 183);
border: 0px solid #0989C5;
color: #fff;
border-radius: 0;
}
......
<div id="selftmreg" style="background-color:white;">
<div class="jdindentdetail-nav" style="width:1200px;margin:12px auto;padding: 0;height:24px;">
<span>当前位置:</span>
<el-breadcrumb separator-class="el-icon-arrow-right">
<el-breadcrumb-item :to="listPath">商标注册
<el-breadcrumb-item :to="listPath">商标注册服务
</el-breadcrumb-item>
<el-breadcrumb-item>自助商标注册</el-breadcrumb-item>
</el-breadcrumb>
......@@ -237,7 +236,7 @@
style="color:#E50778;font-style: normal;">¥{{form.totalPublicExpense}}</i></span> -->
<span style="margin-right:30px;text-align: center;color: #03004C;">应付总额:<i
style="color:#E50778;font-style: normal;font-size: 24px;">¥{{totalPrices?totalPrices:0}}</i></span>
<el-button type="primary" style=" background: #0989C5;border-radius:0;color:#fff;"
<el-button type="primary" style=" background: rgb(81, 210, 183);border-radius:0;color:#fff;border:0;"
@click="submitForm(\'form\')">下一步</el-button>
</div>
</div>
......@@ -528,7 +527,8 @@
</div>
<div style="text-align:center;padding-bottom:50px;" class="step2-footer">
<el-button @click="tobefore">上一步</el-button>
<el-button type="primary" @click="submitForm(\'apply\')">下一步</el-button>
<el-button style="" type="primary" @click="submitForm(\'apply\')">
下一步</el-button>
</div>
</el-form>
<!-- page3 -->
......@@ -693,7 +693,8 @@
<label style="cursor: pointer;">我已阅读 <span style="color:#0F8EE9">《商标服务合同》</span>且同意该合同内容</label>
</div>
<el-button type="primary" @click="submitForm(\'order\')" :disabled="!isRead">提交订单</el-button>
<el-button type="primary" style="background:rgb(81, 210, 183);border:0; " @click="submitForm(\'order\')"
:disabled="!isRead">提交订单</el-button>
</div>
</div>
......
......@@ -306,7 +306,7 @@
nclSelectedList: null,
orderSubInfo: null,
totalPrices: null,
dataList:[],
dataList: [],
}
},
computed: Vuex.mapState({
......@@ -406,6 +406,7 @@
}
},
mounted: function() {
this.$root.selfFooterShow = false;
this.getItemCode();
var that = this;
console.log(this.tm_form_type);
......@@ -433,6 +434,13 @@
console.log(this.$route.query, this.channelInfo, `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`);
}
},
destroyed() {
/*
console.log(this.$root.selfFooterShow);
this.$root.selfFooterShow = true;
*/
},
methods: {
getItemCode(){
var obj = this.$root.copyParams({ channelUserId: "", itemCode: "sbfu" }, "getProductListByTypeOneCode", "/action/tmOrder/springBoard");
......@@ -1275,7 +1283,7 @@
that.$message.warning("操作成功");
location.href = d.data.payUrl;
} else {
console.log(d,"subTmOrder..........",);
console.log(d, "subTmOrder..........");
that.$message.warning(d.msg);
}
}).catch(function (e) {
......
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