mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-12 12:36:43 +08:00
fix: 如果没有对应参数,禁止访问页面
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'InsuranceApplicationFlow',
|
name: 'InsuranceApplicationFlow',
|
||||||
data() {
|
data() {
|
||||||
@@ -53,7 +54,12 @@ export default {
|
|||||||
TotalPremium: ()=> import ("@/views/ebiz/saleFlowProImprove/components/TotalPremium.vue")
|
TotalPremium: ()=> import ("@/views/ebiz/saleFlowProImprove/components/TotalPremium.vue")
|
||||||
},
|
},
|
||||||
methods: {},
|
methods: {},
|
||||||
created() {},
|
created() {
|
||||||
|
if(process.env.NODE_ENV === "development") return
|
||||||
|
if (this.$route.query.orderNo) {
|
||||||
|
this.$router.push("/")
|
||||||
|
}
|
||||||
|
},
|
||||||
mounted() {}
|
mounted() {}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user