mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 16:46:43 +08:00
测试5
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
/*
|
||||||
|
* @Author: PangXingYue
|
||||||
|
* @Date: 2021-03-01 09:40:10
|
||||||
|
* @LastEditTime: 2021-03-01 15:04:35
|
||||||
|
* @LastEditors: PangXingYue
|
||||||
|
* @Description:
|
||||||
|
* @FilePath: \ebiz-h5\src\router\example\index.js
|
||||||
|
*/
|
||||||
//定义相关组件
|
//定义相关组件
|
||||||
const rate = () => import('@/views/example/Rate')
|
const rate = () => import('@/views/example/Rate')
|
||||||
const test1 = () => import('@/views/example/Test1')
|
const test1 = () => import('@/views/example/Test1')
|
||||||
@@ -7,6 +15,7 @@ const AgentTest1 = () => import('@/views/example/AgentTest1')
|
|||||||
const AgentTest2 = () => import('@/views/example/AgentTest2')
|
const AgentTest2 = () => import('@/views/example/AgentTest2')
|
||||||
const AgentTest3 = () => import('@/views/example/AgentTest3')
|
const AgentTest3 = () => import('@/views/example/AgentTest3')
|
||||||
const AgentTest4 = () => import('@/views/example/AgentTest4')
|
const AgentTest4 = () => import('@/views/example/AgentTest4')
|
||||||
|
const AgentTest5 = () => import('@/views/example/AgentTest5')
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
@@ -81,5 +90,14 @@ export default [
|
|||||||
title: '自助入司测试4',
|
title: '自助入司测试4',
|
||||||
index: 1
|
index: 1
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/example/agentTest5',
|
||||||
|
name: 'AgentTest5',
|
||||||
|
component: AgentTest5,
|
||||||
|
meta: {
|
||||||
|
title: '测试5',
|
||||||
|
index: 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
29
src/views/example/AgentTest5.vue
Normal file
29
src/views/example/AgentTest5.vue
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: PangXingYue
|
||||||
|
* @Date: 2021-03-01 15:05:24
|
||||||
|
* @LastEditTime: 2021-03-01 15:06:22
|
||||||
|
* @LastEditors: PangXingYue
|
||||||
|
* @Description:
|
||||||
|
* @FilePath: \ebiz-h5\src\views\example\AgentTest5.vue
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div class="agent-test2-container">
|
||||||
|
<h1>重新投保测试</h1>
|
||||||
|
<button @click="go">点击进入 返回入口第一页</button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
methods: {
|
||||||
|
go() {
|
||||||
|
this.$jump({
|
||||||
|
flag: 'goBack'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user