123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <my-common mytitle="公共标题" :login="false" ref="common"></my-common>
-
- <u-button type="primary" @click="gotoUrl('pages/job/index/index')" >我要求职</u-button>
- <u-button type="success" @click="gotoUrl('pages/hr/index/index')" >企业招聘</u-button>
- <view style="margin-top:50px ;">
- <template v-for="(item,index) in list">
- <u-button type="success" @click="gotoUrl(item.path)" >{{item.style.navigationBarTitleText}}</u-button>
-
- </template>
-
- </view>
-
-
-
- </view>
- </template>
- <script>
- import api from './index.js'
- export default api;
- </script>
- <style>
- </style>
|