mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-18 23:46:44 +08:00
【银保app】新增业绩查询保单列表以及保单详情页面
This commit is contained in:
40
src/views/YB_APP/performanceQuery.vue
Normal file
40
src/views/YB_APP/performanceQuery.vue
Normal file
@@ -0,0 +1,40 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user