mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-22 04:46:43 +08:00
41 lines
711 B
Vue
41 lines
711 B
Vue
<template>
|
|
<div class="public_container">
|
|
<span>业绩查询</span>
|
|
<van-button type="primary" @click="goPolicyDetail">主要按钮</van-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Button } from 'vant'
|
|
export default {
|
|
name: 'policyDetail',
|
|
components: {
|
|
[Button.name]: Button,
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
mounted(){
|
|
|
|
},
|
|
methods:{
|
|
goPolicyDetail(){
|
|
this.$jump({
|
|
flag: 'h5',
|
|
extra: {
|
|
url: location.origin + '/#/YB_APP/policyList',
|
|
},
|
|
routerInfo: {
|
|
path: '/YB_APP/policyList',
|
|
},
|
|
})
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|