Commit 27a29d46 by 刘泽奇

123

parent 5e3f0eb6
...@@ -254,10 +254,19 @@ module.exports = { ...@@ -254,10 +254,19 @@ module.exports = {
"label": "登录", "label": "登录",
"isctl": "no" "isctl": "no"
}, },
{
"code": "servicedetails",
"icon": "fa fa-power-off",
"path": ":channel/servicedetails",
"isMenu": false,
"label": "登录",
"isctl": "no"
},
], ],
}, },
"bizs": { "bizs": {
"servicedetails": { "title": "后台首页", "config": null, "path": "/:channel/servicedetails", "comname": "servicedetails" },
"OAjdcompany": { "title": "后台首页", "config": null, "path": "/:channel/OAjdcompany", "comname": "OAjdcompany" }, "OAjdcompany": { "title": "后台首页", "config": null, "path": "/:channel/OAjdcompany", "comname": "OAjdcompany" },
"paysuccess": { "title": "后台首页", "config": null, "path": "/:channel/paysuccess", "comname": "paysuccess" }, "paysuccess": { "title": "后台首页", "config": null, "path": "/:channel/paysuccess", "comname": "paysuccess" },
"nowbuy": { "title": "后台首页", "config": null, "path": "/:channel/nowbuy", "comname": "nowbuy" }, "nowbuy": { "title": "后台首页", "config": null, "path": "/:channel/nowbuy", "comname": "nowbuy" },
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<meta name="keywords" content="PAAS 开放平台"> <meta name="keywords" content="PAAS 开放平台">
<meta name="baidu-site-verification" content="lATAxZAm8y" /> <meta name="baidu-site-verification" content="lATAxZAm8y" />
<meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8, user-scalable=1"> <meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8, user-scalable=1">
<title id="idtitle">京东云商标注册服务</title> <title id="idtitle"></title>
<!-- <%=app?app.name:'应用未启用'%> --> <!-- <%=app?app.name:'应用未启用'%> -->
<link rel="stylesheet" href="/css/ele/ele2.12.0.css"> <link rel="stylesheet" href="/css/ele/ele2.12.0.css">
<link rel="stylesheet" href="/css/pagecom.css"> <link rel="stylesheet" href="/css/pagecom.css">
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -175,6 +175,7 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => { ...@@ -175,6 +175,7 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
$("#app").css("visibility", 'visible'); $("#app").css("visibility", 'visible');
this.loading = false; this.loading = false;
this.channelName = location.hash.split('/')[1]; this.channelName = location.hash.split('/')[1];
this.accessTitle();
}, },
updated() { updated() {
...@@ -205,6 +206,24 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => { ...@@ -205,6 +206,24 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
} }
}, },
methods: { methods: {
accessTitle() {
// 渠道标题
var title = document.getElementById('idtitle');
switch (this.channelName) {
case 'jd':
title.innerText = "京东云商标注册服务";
break;
case 'bw':
title.innerText = "百望商标注册服务";
break;
case '1688':
title.innerText = "1688商标注册服务";
break;
default:
break;
}
},
loginOut() { loginOut() {
/* /*
var url = encodeURIComponent("http://tm.plus.jdcloud.com/#/jd/jdtrademark") ; var url = encodeURIComponent("http://tm.plus.jdcloud.com/#/jd/jdtrademark") ;
......
...@@ -21,11 +21,12 @@ ...@@ -21,11 +21,12 @@
<div> <div>
<el-row style="margin-top:30px;line-height: 16px;"> <el-row style="margin-top:30px;line-height: 16px;">
<div style="width:2px;height:16px;background-color:#f08c2f;float:left"> <div style="width:2px;height:16px;background-color:#3071FE;float:left">
</div> </div>
<div style="display: inline-block;margin-left:5px;font-size: 16px;clor: #555;">请选择支付方式</div> <div style="display: inline-block;margin-left:5px;font-size: 16px;clor: #555;">请选择支付方式</div>
<div style="display: inline-block;margin-left:10px;font-size:12px;color:rgba(130,130,130,1);"> <img <div style="display: inline-block;margin-left:10px;font-size:12px;color:rgba(130,130,130,1);"> <img
style="vertical-align: middle;margin-bottom: 2px;" src="imgs/exclamation-circle-o.png" alt=""> style="vertical-align: middle;margin-bottom: 2px;" src="imgs/exclamation-circle-o.png" alt="">
<i class="el-icon-warning-outline" style="color:#3071FE;"></i>
付款账户为公司账户,则可以为付款的公司账户开具发票;如果是个人账户,则只能为付款人或申请人开具发票,请选择合适的付款账户。</div> 付款账户为公司账户,则可以为付款的公司账户开具发票;如果是个人账户,则只能为付款人或申请人开具发票,请选择合适的付款账户。</div>
</el-row> </el-row>
</div> </div>
......
...@@ -369,8 +369,8 @@ ...@@ -369,8 +369,8 @@
month = date.getMonth() + 1, month = date.getMonth() + 1,
day = date.getDate(), day = date.getDate(),
hours = date.getHours(), hours = date.getHours(),
minutes = date.getMinutes(); minutes = date.getMinutes(),
second = date.getSeconds(); second = date.getSeconds();
let a = `${year}-${month}-${day} ${hours}:${minutes}:${second}`; let a = `${year}-${month}-${day} ${hours}:${minutes}:${second}`;
return a; return a;
}, },
......
.sds-img{
width:400px;
height:340px;
float: left;
background-color: #e1e1e1;
}
.sds-info{
float: left;
width:780px;
height:340px;
margin-left: 20px;
}
.sds-info h3{
color:#333;
font-weight: bold;
font-size: 24px;
margin: 10px 0;
}
.sds-info h5{
color:#666;
font-size:14px;
margin: 0;
}
.sds-info p{
font-size: 12px;
color:#999;
}
.sds-t{
width:758px;
height:60px;
line-height: 60px;
border:1px dashed #666;
margin-top: 20px;
background-image: url("/imgs/sds_t.png");
background-size: 100% 100%;
}
.sds-operate span{
margin-top: 30px;
margin-right: 16px;
display: inline-block;
width:200px;
height:38px;
line-height: 40px;
text-align: center;
background-color: #ff5135;
border:1px solid #ff5135;
color:#fff;
font-size:16px;
cursor: pointer;
}
.sds-operate .sds-op2{
background-color: #fff;
color:#ff5135;
}
.sds-main-t{
width:107px;
height:3px;
background-color: #2f95fc;
margin-top:30px;
}
.sds-productdetails{
width:1200px;
min-height:800px;
border:1px solid #ededed;
}
.sds-productdetails h3{
background-color: #f1f1f1;
margin: 0;
height:30px;
border-top:1px solid #ededed;
}
.sds-productdetails i{
display: inline-block;
width:1091px;
height:28px;
border:1px solid #eee;
}
.sds-productdetails span{
display: inline-block;
width:107px;
height:30px;
line-height: 30px;
text-align: center;
font-size: 14px;
color:#666;
background-color: #fff;
border:none;
vertical-align: top;
}
.sds-productdetails img{
width:1180px;
margin:0 10px;
vertical-align: top;
}
.sds-container .el-form-item__error{
margin-left: 110px;
}
.sds-container .el-input-number{
margin-left: 41px;
}
\ No newline at end of file
<div class="sds-container" style="background-color:white">
<div style="width:1200px;color:#000;margin:0 auto;padding-top:20px;padding-bottom:30px;min-height:1000px">
<div class="tm-body-breadcrumb" style="margin-bottom: 15px;"><span @click="tiaozhuan(\'/\',\'首页\')"
style="cursor: pointer;">首页</span> <i class="el-icon-arrow-right"></i>
<span style="font-weight:600;">服务详情页</span>
</div>
<div class="sds-img">
<img :src="serviceItem.mobilePic" alt="" style="width:100%;height:100%">
</div>
<div class="sds-info">
<h3>{{serviceItem.name}}</h3>
<h5>{{serviceItem.shortDesc}}</h5>
<div class="sds-t">
<span style="color:#999;font-size:12px;margin:12px">服务费:</span> <b
style="color:#ff5135;font-size:18px">&yen;&nbsp;{{serviceItem.serviceCharge?serviceItem.serviceCharge.toFixed(2):0}}</b>
<span style="color:#999;font-size:12px;margin:12px;margin-left:40px">官费:</span> <b
style="color:#ff5135;font-size:18px">&yen;&nbsp;{{serviceItem.publicExpense?serviceItem.publicExpense.toFixed(2):0}}</b>
</div>
<div style="margin-top:20px;font-size: 12px;color: rgb(153, 153, 153);margin-left: 11px;">
数量:<el-input-number v-model="num" @change="handleChange" :min="1" label="描述文字"></el-input-number>
</div>
<div style="height:30px;line-height:60px">
<span style="color:#999;font-size:12px;margin:12px">费用总计:</span> <b
style="color:#ff5135;font-size:18px">&yen;&nbsp;{{serviceItem.price?serviceItem.price.toFixed(2):0}}</b>
</div>
<div class="sds-operate">
<span class="sds-op2" @click="showneed()">立即办理</span>
<span class="sds-op1" @click="sdsOp2()">立即购买</span>
</div>
<p>服务承诺:全流程服务 全程公开透明</p>
</div>
<div style="clear: both"></div>
<div class="sds-main-t">
</div>
<div class="sds-productdetails">
<h3><span>产品详情</span><i></i></h3>
<!-- <div style="height:400px;background-color: #e1e1e1;margin:10px">
</div> -->
<img v-if="serviceItem.mobileContentImg" :src="serviceItem.mobileContentImg" alt="" style="margin-top:10px">
<img v-if="serviceItem.mobileContentImg1" :src="serviceItem.mobileContentImg1" alt="">
<img v-if="serviceItem.mobileContentImg2" :src="serviceItem.mobileContentImg2" alt="">
<img v-if="serviceItem.mobileContentImg3" :src="serviceItem.mobileContentImg3" alt="">
<img v-if="serviceItem.mobileContentImg4" :src="serviceItem.mobileContentImg4" alt="">
<img v-if="serviceItem.mobileContentImg5" :src="serviceItem.mobileContentImg5" alt="">
<img v-if="serviceItem.mobileContentImg6" :src="serviceItem.mobileContentImg6" alt="">
</div>
</div>
<el-dialog title="提交需求" :visible.sync="dialogFormVisible" center width="600px">
<el-form :model="form" ref="form" :rules="rules" style="margin-left:40px">
<div style="color:#606266;font-size:14px;font-weight:400;line-height:12px;margin-bottom:30px;margin-left:12px">
服务需求:{{serviceName}}</div>
<el-form-item label="您的名字:" prop="name">
<el-input v-model="form.name" autocomplete="off" placeholder="请输入您的名字" style="width:360px"></el-input>
</el-form-item>
<el-form-item label="联系方式:" prop="mobile">
<el-input v-model="form.mobile" autocomplete="off" placeholder="请输入您的电话" style="width:360px"></el-input>
</el-form-item>
<el-form-item label="所属城市:" prop="city" style="margin-left:12px">
<el-cascader style="width:360px" expand-trigger="hover" :options="bigtype" v-model="form.city"
placeholder="请选择所属城市">
</el-cascader>
</el-form-item>
<el-form-item label="需求详情:" prop="notes" style="margin-left:12px">
<el-input v-model="form.notes" type="textarea" :rows="3" autocomplete="off" placeholder="请输入您的详细内容"
style="width:360px"></el-input>
</el-form-item>
<el-form-item>
<div style="width:100%;font-size:12px;color:#B2B2B2;margin-left:12px;font-family:Microsoft YaHei">
<i class="el-icon-info"></i>
提交需求后,我们专业代理人会及时与您联系,为您服务,请保持电话畅通。
</div>
</el-form-item>
<el-form-item>
<div style="width:100%;text-align:center;font-family:Microsoft YaHei">
<el-button type="primary" @click="submitneed">提交</el-button>
<el-button @click="dialogFormVisible=false">取消</el-button>
</div>
</el-form-item>
</el-form>
</el-dialog>
</div>
\ No newline at end of file
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