| 123456789101112131415161718192021222324252627 |
- <template>
- <view></view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 1为商户,2为业主
- type: ''
- }
- },
- onLoad(options) {
- this.type = options.type
- this.handleCheck(this.type)
- },
- methods: {
- handleCheck(type) {
- uni.navigateTo({
- url: `/pages/web/web?url=https://chtech.ncjti.edu.cn/hotelReservation/getLoginCode/&type=${type}&check=1`
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped></style>
|