| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <!-- 首页面 -->
- <view class="container">
- <view class="item-image"> </view>
- <view class="item-title">
- <view class="item-title-line"></view>
- <view class="item-title-font">迎新指南</view>
- </view>
- <view class="item-list">
- <view class="item-list-one" @click="navigateToMap">
- <image src="../../static/images/map.png" class="img-btn"></image>
- <text class="list-txt">地图导览</text>
- </view>
- <view class="item-list-one" @click="navigateToCard">
- <image src="../../static/images/card.png" class="img-btn"></image>
- <text class="list-txt">临时卡领取</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad() {
- //预加载页面
- uni.preloadPage({ url: "../map/map" });
- uni.preloadPage({ url: "../weiChat/weiChat" });
- },
- upUnload() {},
- methods: {
- //跳转地图导览页面
- navigateToMap() {
- uni.navigateTo({
- url: "../map/map",
- });
- },
- //跳转临时卡页面
- navigateToCard() {
- uni.navigateTo({
- url: "../weiChat/weiChat",
- });
- },
- //跳转学校官网
- navigateToGW() {
- let gwUrl = "https://www.ecjtuit.edu.cn/?ivk_sa=1024320u";
- window.location.href = gwUrl;
- },
- },
- };
- </script>
- <style>
- @import url("./css/index.css");
- </style>
|