diff --git a/dist.zip b/dist.zip deleted file mode 100644 index 0cf931e..0000000 Binary files a/dist.zip and /dev/null differ diff --git a/src/components/AppDZSoftware.vue b/src/components/AppDZSoftware.vue new file mode 100644 index 0000000..8f8e277 --- /dev/null +++ b/src/components/AppDZSoftware.vue @@ -0,0 +1,105 @@ + + + + + \ No newline at end of file diff --git a/src/components/HeaderNav.vue b/src/components/HeaderNav.vue index 037e721..fffbe1c 100644 --- a/src/components/HeaderNav.vue +++ b/src/components/HeaderNav.vue @@ -12,6 +12,8 @@
  • 首页
  • 收费介绍
  • +
  • App电子软著
  • +
  • 商标注册
  • 客服中心
  • 证书展示
  • diff --git a/src/components/ShouFei.vue b/src/components/ShouFei.vue index c3249dd..2054f46 100644 --- a/src/components/ShouFei.vue +++ b/src/components/ShouFei.vue @@ -12,9 +12,21 @@ {{ item.computedPrice }} -
    + + +
    + + +
    @@ -93,23 +105,29 @@ export default { {chec: '加急办理800元', price: 800}, ] }, - {title: '写材料并委托代办', priceSum: 230, intro: '通过平台自己搭建可运行软件后由平台自动生成相关鉴别材料,可委托平台合作代办机构进行办理。', + {title: 'APP电子软著', priceSum: '400~460', intro: 'App软著认证电子版权是兼容软著认证证书的电子版权认证证书,在移动互联网App上架审核中可作为有效的软件版权证明材料。', + introHighlight: { + start: 31, // 高亮部分开始索引 + end: 43 // 高亮部分结束索引 + }, severList: [ - {serve: '通过平台自己搭建可运行软件', highlight: '',start: '', end: '', tooltip: ''}, - {serve: '平台自动撰写鉴别材料', highlight: '鉴别材料', start: 6, end: 10, tooltip: '鉴别材料包含:申请表、源程序和系统用户手册或设计文档'}, {serve: '包代办', highlight: '',start: '', end: '', tooltip: ''}, {serve: '包下证', highlight: '',start: '', end: '', tooltip: ''}, {serve: '包开发票', highlight: '',start: '', end: '', tooltip: ''}, - {serve: '提供可运行软件云服务600天', highlight: '云服务', start: 7, end: 10, tooltip: '云服务:保障通过秒著平台搭建的可运行软件在线能正常访问及数据存储。云服务到期后系统自动关停,数据清空。'}, + {serve: '提供当天出证、1个工作日、3个工作日、10-15个工作日出证', highlight: '',start: '', end: '', tooltip: ''}, + {serve: '提供担保下证,不下载双倍返还订单金额', highlight: '',start: '', end: '', tooltip: ''}, {serve: '客服一对一服务', highlight: '',start: '', end: '', tooltip: ''} ], flowList: [ {id: 1, flow: '按系统操作流程执行'} ], checList: [ - {chec: '加急办理800元', price: 800}, - {chec: '安装包15元', price: 15}, - {chec: '系统演示视频文件15元', price: 15}, + {chec: '', price: 800}, + {chec: '', price: 15}, + {chec: '', price: 15}, + // {chec: '加急办理800元', price: 800}, + // {chec: '安装包15元', price: 15}, + // {chec: '系统演示视频文件15元', price: 15}, ] }, {title: '写材料', priceSum: '30~8', intro: '通过平台自己搭建可运行软件后由平台自动生成相关鉴别材料,下载鉴别材料后可自行申报或找相关代理机构申报。', @@ -290,10 +308,13 @@ export default { .box .top .jianjie { position: relative; flex-wrap: wrap; - display: flex; + /* display: flex; */ + display: block; + white-space: wrap; justify-content: center; align-content: center; - height: 1.375rem; + /* height: 1.375rem; */ + height: 1.575rem; margin: 0 .25rem; padding: .125rem; border-radius: .075rem; @@ -313,6 +334,14 @@ export default { border-right: .125rem solid transparent; border-bottom:.125rem solid #feedcc; } +.box .top .jianjie span { + display: inline; + white-space: normal; +} +.highlight-red { + color: #ff0000; /* 红色 */ + cursor: pointer; +} .box .serve { margin: .0625rem .25rem; /* background-color: pink; */ diff --git a/src/components/TM.vue b/src/components/TM.vue new file mode 100644 index 0000000..e9dc25e --- /dev/null +++ b/src/components/TM.vue @@ -0,0 +1,104 @@ + + + + + \ No newline at end of file diff --git a/src/components/router.js b/src/components/router.js index 50ea5fe..f7cb52a 100644 --- a/src/components/router.js +++ b/src/components/router.js @@ -4,6 +4,8 @@ import { reactive, onMounted, onBeforeUnmount } from 'vue' import HomePage from './HomePage.vue' import ShouFei from './ShouFei.vue' +import AppDZSoftware from './AppDZSoftware.vue' +import TM from './TM.vue' import KeFu from './KeFu.vue' import ZhengShu from './ZhengShu.vue' import DaiLiShang from './DaiLiShang.vue' @@ -23,6 +25,8 @@ const router = createRouter({ { path: '/', redirect: '/HomePage' }, { path: '/HomePage', name: 'HomePage', component: HomePage }, { path: '/ShouFei', name: 'ShouFei', component: ShouFei }, + { path: '/AppDZSoftware', name: 'AppDZSoftware', component: AppDZSoftware }, + { path: '/TM', name: 'TM', component: TM }, { path: '/KeFu', name: 'KeFu', component: KeFu }, { path: '/ZhengShu', name: 'ZhengShu', component: ZhengShu }, { path: '/DaiLiShang', name: 'DaiLiShang', component: DaiLiShang },