Commit 4d2bdadc by 尹亚亭

do selftmreg

parent 524771f0
...@@ -4,48 +4,78 @@ import VueRouter from "vue-router"; ...@@ -4,48 +4,78 @@ import VueRouter from "vue-router";
Vue.use(VueRouter); Vue.use(VueRouter);
const routes = [{ const routes = [{
path: "/:chanue/jdbycdetailtm", path: "/:chanue/jdbycdetailtm",
name: "jdbycdetailtm", name: "jdbycdetailtm",
component: () => component: () =>
import ("@/views/pages/jdbycdetailtm") import("@/views/pages/jdbycdetailtm")
}, },
{ {
path: "/:chanue/companydetail", path: "/:chanue/companydetail",
name: "companydetail", name: "companydetail",
component: () => component: () =>
import ("@/views/pages/companydetail") import("@/views/pages/companydetail")
}, },
{ {
path: "/:chanue/jdindentlist", path: "/:chanue/jdindentlist",
name: "jdindentdetail", name: "jdindentdetail",
component: () => component: () =>
import ("@/views/pages/jdindentlist") import("@/views/pages/jdindentlist")
}, },
{ {
path: "/:chanue/jdindentdetail", path: "/:chanue/jdindentdetail",
name: "jdindentdetail", name: "jdindentdetail",
component: () => component: () =>
import ("@/views/pages/jdindentdetail") import("@/views/pages/jdindentdetail")
}, },
///////// /////////
{ {
path: "/:chanue/jdtrademark", path: "/:chanue/jdtrademark",
name: "jdtrademark", name: "jdtrademark",
component: () => component: () =>
import ("@/views/pages/jdtrademark/Jdtrademark") import("@/views/pages/jdtrademark/Jdtrademark")
}, },
{ {
path: "/:chanue/selftmreg", path: "/:chanue/selftmreg",
name: "selftmreg", name: "selftmreg",
component: () => component: () =>
import ("@/views/pages/selftmreg/Selftmreg") import("@/views/pages/selftmreg/Selftmreg"),
}, // 默认页面是一级路由下的第一个子路由
{ redirect: '/:chanue/selftmreg/basic',
path: "/bycnoticeindex", // 配置二级路由
name: "bycnoticeindex", children: [
component: () => // 第一步:填写基本信息
import ("@/views/pages/bycnoticeindex/Bycnoticeindex") {
} path: "basic",
component: () =>
import("@/views/pages/selftmreg/ModifyTrademark"),
},
// 第二步:填写申请人信息
{
path: "user",
component: () =>
import("@/views/pages/selftmreg/ApplicationInfo"),
},
// 第三步:确认订单
{
path: "confirm",
component: () =>
import("@/views/pages/selftmreg/ConfirmOrder"),
},
// 第四步:支付订单
{
path: "pay",
component: () =>
import("@/views/pages/selftmreg/PayOrder"),
},
]
},
{
// path: "/bycnoticeindex",
path: "/:chanue/bycnoticeindex",
name: "bycnoticeindex",
component: () =>
import("@/views/pages/bycnoticeindex/Bycnoticeindex")
}
]; ];
const router = new VueRouter({ const router = new VueRouter({
routes routes
......
...@@ -25,9 +25,15 @@ ...@@ -25,9 +25,15 @@
</p> </p>
<p> <p>
<strong>商标类别:</strong> <strong>商标类别:</strong>
<span> <span class="detail-type">
<i>15 类 乐器</i> <i>15 类 乐器</i>
150001 手风琴150008 钢琴150011 小六角手风琴150012 手摇风琴150013 低音提琴(乐器)150014 口琴150016 大号(号)150019 小铃帽(乐器)150025 乐器150026 六角手风琴 <br />
<b>150001 手风琴</b>
<b>150008 钢琴</b>
<b>150011 小六角手风琴</b>
<b>150013 低音提琴(乐器)</b>
<b>150016 大号(号)</b>
<b>150019 小铃帽(乐器)</b>
</span> </span>
</p> </p>
</div> </div>
...@@ -117,8 +123,80 @@ export default { ...@@ -117,8 +123,80 @@ export default {
margin-bottom: 15px; margin-bottom: 15px;
} }
} }
// 编辑图文
.edit { .edit {
color: #3071fe; color: #409efe;
}
// 商标信息
.brand-info {
p {
margin-bottom: 23px;
strong {
width: 120px;
display: inline-block;
text-align: right;
color: rgb(99, 101, 105);
}
span {
font-size: 14px;
font-weight: 400;
color: #333;
}
span.detail-type {
display: inline-block;
width: 900px;
vertical-align: top;
i {
font-size: 14px;
font-weight: 600;
display: inline-block;
padding-bottom: 10px;
}
b {
font-size: 14px;
font-weight: 400;
margin-right: 20px;
text-align: left;
color: #333;
}
}
img {
display: inline-block;
border: 2px dashed rgb(233, 233, 233);
vertical-align: top;
}
}
}
// 申请人及联系人信息
.user-info {
ul {
li {
display: inline-block;
width: 50%;
padding-bottom: 23px;
strong {
width: 120px;
display: inline-block;
text-align: right;
color: rgb(99, 101, 105);
}
span {
font-size: 14px;
font-weight: 400;
color: #333;
}
}
}
}
// 订单备注 样式没加上!!
.confirm div.el-textarea textarea.el-textarea__inner {
border-radius: 0;
min-width: 980px;
height: 82px;
resize: none;
border: 1px solid #d6daeb;
} }
</style> </style>
\ No newline at end of file
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
<!-- 导航面包屑 --> <!-- 导航面包屑 -->
<div class="jdindentdetail-nav"> <div class="jdindentdetail-nav">
<el-breadcrumb separator-class="el-icon-arrow-right"> <el-breadcrumb separator-class="el-icon-arrow-right">
<!-- titleName:商标注册服务 -->
<!-- <el-breadcrumb-item :to="listPath" class="isActive">商标注册服务{{titleName}}</el-breadcrumb-item> -->
<el-breadcrumb-item class="isActive">商标注册服务</el-breadcrumb-item> <el-breadcrumb-item class="isActive">商标注册服务</el-breadcrumb-item>
<el-breadcrumb-item>自助商标注册</el-breadcrumb-item> <el-breadcrumb-item>自助商标注册</el-breadcrumb-item>
</el-breadcrumb> </el-breadcrumb>
...@@ -12,7 +10,39 @@ ...@@ -12,7 +10,39 @@
<!-- 主体页面 --> <!-- 主体页面 -->
<SelftmregPage /> <!-- <SelftmregPage /> -->
<div class="jdindentdetail-page">
<div class="jdindentdetail-wrap">
<!-- 主体内容步骤条 -->
<SelftmregPageSteps />
<!-- 主页内容 -->
<el-form class="demo-ruleForm" label-width="120px">
<div class="selftmreg_main">
<div class="selftmreg_shu"></div>
<!-- Divider 分割线 -->
<!-- <el-divider></el-divider> -->
<router-view></router-view>
<!-- 第一步:填写基本信息 商标信息 分类选择-->
<!-- <ModifyTrademark /> -->
<!-- 第二步:填写申请人信息 -->
<!-- <ApplicationInfo /> -->
<!-- 第三步:确认订单 -->
<!-- <ConfirmOrder /> -->
<!-- 第四步:支付订单页面 -->
<!-- <PayOrder /> -->
</div>
<div style="clear:both;"></div>
</el-form>
</div>
</div>
<!-- 底部付款按钮 --> <!-- 底部付款按钮 -->
<div class="footer-wrap"> <div class="footer-wrap">
...@@ -21,20 +51,43 @@ ...@@ -21,20 +51,43 @@
应付总额: 应付总额:
<i>¥0.00</i> <i>¥0.00</i>
</span> </span>
<el-button type="primary">下一步</el-button> <el-button type="primary" @click="next">下一步</el-button>
</div> </div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import SelftmregPage from "./SelftmregPage"; // 主体页面里面的组件
import SelftmregPageSteps from "./SelftmregPageSteps";
import ModifyTrademark from "./ModifyTrademark";
import ApplicationInfo from "./ApplicationInfo";
import ConfirmOrder from "./ConfirmOrder";
import PayOrder from "./PayOrder";
export default { export default {
components: { components: {
SelftmregPage SelftmregPageSteps,
ModifyTrademark,
ApplicationInfo,
ConfirmOrder,
PayOrder
}, },
data() { data() {
return {}; return {
//
};
},
methods: {
next() {
console.log("two level router");
// 加载二级路由组件:第二步,填写申请人信息
// this.$router.push("/:chanue/selftmreg/user");
console.log(this);
// 加载二级路由组件:第三步,确认订单
// this.$router.push("/:chanue/selftmreg/confirm");
// 加载二级路由组件:第四步,支付订单
// this.$router.push("/:chanue/selftmreg/pay");
}
} }
}; };
</script> </script>
...@@ -71,6 +124,32 @@ export default { ...@@ -71,6 +124,32 @@ export default {
} }
} }
// 主体页面
.jdindentdetail-page {
background-color: white;
width: 1200px;
margin: 0 auto;
padding-bottom: 90px;
}
.jdindentdetail-wrap {
text-align: left;
border: 1px solid rgba(220, 223, 230, 1);
position: relative;
}
.selftmreg_main {
width: 100%;
padding: 0px 20px;
box-sizing: border-box;
overflow: hidden;
margin-bottom: 50px;
}
.selftmreg_shu {
width: 1143px;
height: 1px;
background-color: #eeeeee;
margin: 20px 0;
}
/* 底部付款按钮 */ /* 底部付款按钮 */
.footer-wrap { .footer-wrap {
width: 100%; width: 100%;
......
<template>
<div class="jdindentdetail-page">
<div class="jdindentdetail-wrap">
<!-- 主体内容步骤条 -->
<SelftmregPageSteps />
<!-- 主页内容 -->
<el-form class="demo-ruleForm" label-width="120px">
<div class="selftmreg_main">
<div class="selftmreg_shu"></div>
<!-- Divider 分割线 -->
<!-- <el-divider></el-divider> -->
<!-- 第一步:填写基本信息 商标信息 -->
<!-- <ModifyTrademark /> -->
<!-- 第一步:填写基本信息 分类选择 -->
<!-- <ClassTrademark /> -->
<!-- 第二步:填写申请人信息 -->
<!-- <ApplicationInfo /> -->
<!-- 第三步:确认订单 -->
<ConfirmOrder />
<!-- 第四步:支付订单页面 -->
<!-- <PayOrder /> -->
</div>
<div style="clear:both;"></div>
</el-form>
</div>
</div>
</template>
<script>
import SelftmregPageSteps from "./SelftmregPageSteps";
import ModifyTrademark from "./ModifyTrademark";
import ClassTrademark from "../jdindentdetail/classTrademark";
import ApplicationInfo from "./ApplicationInfo";
import ConfirmOrder from "./ConfirmOrder";
import PayOrder from "./PayOrder";
export default {
components: {
SelftmregPageSteps,
ModifyTrademark,
ClassTrademark,
ApplicationInfo,
ConfirmOrder,
PayOrder
},
data() {
return {};
}
};
</script>
<style lang="scss" scoped>
.jdindentdetail-page {
background-color: white;
width: 1200px;
margin: 0 auto;
padding-bottom: 90px;
}
.jdindentdetail-wrap {
text-align: left;
border: 1px solid rgba(220, 223, 230, 1);
position: relative;
}
/* 主页内容 */
.selftmreg_main {
width: 100%;
padding: 0px 20px 50px;
box-sizing: border-box;
overflow: hidden;
}
.selftmreg_shu {
width: 1143px;
height: 1px;
background-color: #eeeeee;
margin: 20px 0;
}
</style>
\ No newline at end of file
<template> <template>
<div class="selftmreg_main"> <div class="selftmreg_steps">
<div class="pointsRule"> <div class="pointsRule">
<ul id="list"> <ul id="list">
<li> <li>
...@@ -38,7 +38,7 @@ export default {}; ...@@ -38,7 +38,7 @@ export default {};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.selftmreg_main { .selftmreg_steps {
width: 100%; width: 100%;
padding: 0px 20px; padding: 0px 20px;
box-sizing: border-box; box-sizing: border-box;
...@@ -90,22 +90,27 @@ export default {}; ...@@ -90,22 +90,27 @@ export default {};
i { i {
float: right; float: right;
/* border: #e3e3e3 solid; border: #e3e3e3 solid;
border-width: 1px 1px 0 0; */ border-width: 1px 1px 0 0;
width: 21px; width: 21px;
height: 22px; height: 22px;
/* 往左上的位移变化 */ /* 往左上的位移变化 */
margin: -4px -11px 0px 10px; // margin: -4px -11px 0px 10px;
margin: 2px 0px 0px 14px;
top: 2px; top: 2px;
transform: rotate(45deg); transform: rotate(45deg);
-webkit-transform: rotate(45deg); -webkit-transform: rotate(45deg);
/* background: #e3e3e3; */ background: #e3e3e3;
-moz-transform: rotate(45deg); -moz-transform: rotate(45deg);
/* Firefox浏览器 */ /* Firefox浏览器 */
-ms-transform: rotate(45deg); -ms-transform: rotate(45deg);
position: absolute;
z-index: 22;
} }
em.before { em.before {
...@@ -119,6 +124,7 @@ export default {}; ...@@ -119,6 +124,7 @@ export default {};
margin: -4px 10px 0px -11px; margin: -4px 10px 0px -11px;
top: 2px; top: 2px;
background: #fff; background: #fff;
z-index: 2;
} }
} }
} }
...@@ -126,6 +132,11 @@ export default {}; ...@@ -126,6 +132,11 @@ export default {};
li:first-child { li:first-child {
border-left: 1px solid #e3e3e3; border-left: 1px solid #e3e3e3;
background: #e3e3e3; background: #e3e3e3;
i {
margin: 2px 0px 0px 25px;
background: #51d2b7;
}
} }
} }
} }
...@@ -135,4 +146,8 @@ export default {}; ...@@ -135,4 +146,8 @@ export default {};
.active { .active {
background: #51d2b7; background: #51d2b7;
} }
// ul li a
// ul li a i
// background: #51d2b7;
</style> </style>
\ 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