diff --git a/src/assets/images/logo1.png b/src/assets/images/logo1.png new file mode 100644 index 0000000..96be788 Binary files /dev/null and b/src/assets/images/logo1.png differ diff --git a/src/const/modules.js b/src/const/modules.js index f451cf8..656abf4 100644 --- a/src/const/modules.js +++ b/src/const/modules.js @@ -62,4 +62,119 @@ export default { ] }, ], + member: [ + { + type: 'introduce', + forms: [ + { + type: 'input', + prop: 'title', + label: '标题', + required: true + }, + ], + form: { + title: '', + isEnable: 1 + }, + list: [ + { + title: '找实训产品难?', + isEnable: 1 + }, + { + title: '专业咨询、写方案难?', + isEnable: 1 + }, + { + title: '产品与方案匹配难?', + isEnable: 1 + }, + { + title: '项目垫资难?', + isEnable: 1 + }, + ] + }, + { + type: 'form', + forms: [ + { + type: 'editor', + prop: 'des', + label: '描述', + required: true + }, + ], + form: { + des: '职站商城聚合新商科实训产品,高品质低价格,让你一站式采购无忧', + } + }, + { + type: 'introduce', + forms: [ + { + type: 'upload', + prop: 'pic', + label: '图片', + required: true, + }, + { + type: 'input', + prop: 'title', + label: '标题', + required: true + }, + { + type: 'textarea', + prop: 'des', + label: '描述' + } + ], + form: { + pic: '', + title: '', + des: '', + isEnable: 1 + }, + list: [ + { + pic: 'https://www.occupationlab.com/images/member/icon1.png', + title: '一站式采购', + des: '优选高品质低价格产品', + isEnable: 1 + }, + { + pic: 'https://www.occupationlab.com/images/member/icon2.png', + title: '精准产品匹配', + des: '体系化产品方案匹配满足不同学科需求', + isEnable: 1 + }, + { + pic: 'https://www.occupationlab.com/images/member/icon3.png', + title: '本地化售前顾问', + des: '提供项目全流程售前售后支持服务', + isEnable: 1 + }, + { + pic: 'https://www.occupationlab.com/images/member/icon4.png', + title: '移动办公', + des: '查看产品、参数,下单,方案生成,手机上即可完成', + isEnable: 1 + }, + { + pic: 'https://www.occupationlab.com/images/member/icon5.png', + title: '免息账期', + des: '先发货后付款,支持背靠背支付', + isEnable: 1 + }, + { + pic: 'https://www.occupationlab.com/images/member/icon6.png', + title: '智能方案生成', + des: '内置有实验室配置方案模板只需3分钟即可生成方案', + isEnable: 1 + }, + ] + }, + ], } \ No newline at end of file diff --git a/src/pages/column/page/member.vue b/src/pages/column/page/member.vue new file mode 100644 index 0000000..2608240 --- /dev/null +++ b/src/pages/column/page/member.vue @@ -0,0 +1,207 @@ + + + + + \ No newline at end of file diff --git a/src/router/modules/column.js b/src/router/modules/column.js index bdd01d7..3f25669 100644 --- a/src/router/modules/column.js +++ b/src/router/modules/column.js @@ -31,5 +31,10 @@ export default { component: () => import('@/pages/column/page/index'), meta: { title: '首页' } }, + { + path: `member`, + component: () => import('@/pages/column/page/member'), + meta: { title: '会员中心' } + }, ] }