mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-22 08:16:43 +08:00
30 lines
516 B
Vue
30 lines
516 B
Vue
<!--
|
|
* @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>
|