This commit is contained in:
shijingjing
2022-09-29 13:58:18 +08:00
parent ef58ec52d2
commit 5c59c6fb1c

View File

@@ -1,5 +1,6 @@
<template>
<div class="getewayAdd">
<div class="addBox" v-show="pageShow">
<div class="tips">请确保以下信息全部由本人填写本人对所填写内容的真实性和完整性负责</div>
<!-- 基本信息 -->
<div class="title">基本信息</div>
@@ -301,7 +302,7 @@
<div class="btn-wrapper">
<div class="btn" hover-class="text-hover" @click="submit">提交</div>
</div>
</div>
<AiLogin ref="login"/>
</div>
</template>
@@ -369,6 +370,7 @@ export default {
travelTypeDict: [],
startAreaId: '',
startAreaName: '',
pageShow: false,
}
},
@@ -392,8 +394,10 @@ export default {
this.travelTypeDict = this.$dict.getDict('EP_travelType')
})
this.getewayList()
if(!this.token) {
if(!this.token.length) {
this.$refs.login.show()
} else {
this.pageShow = true
this.form.gatewayId = decodeURIComponent(o.scene) || ''
}
},
@@ -642,6 +646,7 @@ export default {
<style lang="scss" scoped>
.getewayAdd {
.addBox {
padding-bottom: 140px;
.tips {
@@ -880,4 +885,5 @@ export default {
box-sizing: border-box;
}
}
}
</style>