index.vue 648 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <u-button type="primary" @click="mygoto('#/pages/job/index/index')" >我要求职</u-button>
  4. <u-button type="success" @click="mygoto('#/pages/hr/index/index')" >企业招聘</u-button>
  5. <view style="margin-top:50px ;">
  6. <template v-for="(item,index) in list">
  7. <u-button type="success" :key="index" @click="gotoUrl(item.path)" >{{item.style.navigationBarTitleText}}</u-button>
  8. </template>
  9. </view>
  10. <u-button type="error" @click="clear()" >清理本地缓存</u-button>
  11. </view>
  12. </template>
  13. <script>
  14. import api from './index.js'
  15. export default api;
  16. </script>
  17. <style>
  18. </style>