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