12345678910111213141516171819202122232425262728 |
- <template>
- <view>
-
- <u-button type="primary" @click="mygoto('#/pages/job/index/index')" >我要求职</u-button>
- <u-button type="success" @click="mygoto('#/pages/hr/index/index')" >企业招聘</u-button>
- <view style="margin-top:50px ;">
- <template v-for="(item,index) in list">
- <u-button type="success" :key="index" @click="gotoUrl(item.path)" >{{item.style.navigationBarTitleText}}</u-button>
-
- </template>
-
- </view>
-
- <u-button type="error" @click="clear()" >清理本地缓存</u-button>
-
-
-
- </view>
- </template>
- <script>
- import api from './index.js'
- export default api;
- </script>
- <style>
- </style>
|