123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <div id="daohang">
- <el-row>
- <el-col :span="24" class="top">
- <el-col :span="20" class="topTit">
- <span>{{ title }}</span>
- </el-col>
- </el-col>
- <el-col :span="24" class="info">
- <el-col :span="24" class="phone">
- <p class="tit"><i class="el-icon-phone"></i>咨询电话:</p>
- <p class="haoma">0431-84657570</p>
- </el-col>
- <el-col :span="24" class="btn">
- <el-col :span="8" class="list" v-for="(item, index) in list" :key="index">
- <el-link :underline="false" :href="item.url" target="_blank">
- <el-image style="width:55px;height:55px;border-radius: 10px;" :src="item.pic"></el-image>
- <P>{{ item.title }}</P>
- </el-link>
- </el-col>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'daohang',
- props: {},
- components: {},
- data: () => ({
- title: '快速导航',
- list: [
- {
- pic: require('@/assets/kuaisu1.jpg'),
- title: '就业派遣',
- url: 'http://www.jilinjobs.cn/JobSending.htm',
- },
- {
- pic: require('@/assets/kuaisu2.jpg'),
- title: '档案管理',
- url: 'http://www.jilinjobs.cn/FileManagement.htm',
- },
- {
- pic: require('@/assets/kuaisu3.jpg'),
- title: '流动党员',
- url: 'http://www.jilinjobs.cn/CaucusRelation.htm',
- },
- {
- pic: require('@/assets/kuaisu4.jpg'),
- title: '户籍管理',
- url: 'http://www.jilinjobs.cn/RegisterManagement.htm',
- },
- {
- pic: require('@/assets/kuaisu5.jpg'),
- title: '学历认证',
- url: 'http://www.jilinjobs.cn/EducationCertify.htm',
- },
- {
- pic: require('@/assets/kuaisu6.jpg'),
- title: '常见问题',
- url:
- 'https://mp.weixin.qq.com/s?__biz=MzAxMzg2ODE0NA==&mid=100000727&idx=1&sn=c2a38aca7482a930ceeff01779827faa&chksm=1b9d4ec82ceac7dee8cf6f89701e9af1fdedeed6c7e5ecba20356b1584d6ee76b069649f5cd9&mpshare=1&scene=23&srcid=0917J2IHeM4fxs3dHnJBhis4#rd',
- },
- ],
- }),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- p {
- padding: 0;
- margin: 0;
- }
- .textOver {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .top {
- height: 39px;
- line-height: 39px;
- border-bottom: 1px solid #ccc;
- }
- .top .topTit span {
- display: inline-block;
- width: 110px;
- height: 39px;
- line-height: 39px;
- text-align: center;
- color: #000;
- font-size: 16px;
- border-bottom: 1px solid #176ebb;
- }
- .phone {
- padding: 15px 20px;
- }
- .phone .tit {
- font-size: 20px;
- }
- .phone .haoma {
- font-size: 20px;
- color: #176ebb;
- padding: 10px 0px;
- }
- .list {
- text-align: center;
- padding: 10px 0;
- }
- </style>
|