|
@@ -13,7 +13,7 @@
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="btn">
|
|
<el-col :span="24" class="btn">
|
|
<el-col :span="8" class="list" v-for="(item, index) in list" :key="index">
|
|
<el-col :span="8" class="list" v-for="(item, index) in list" :key="index">
|
|
- <el-link :underline="false" :href="item.url" target="_blank">
|
|
|
|
|
|
+ <el-link :underline="false" target="_blank" @click="clickUrl(item.title)">
|
|
<el-image style="width:55px;height:55px;border-radius: 10px;" :src="item.pic"></el-image>
|
|
<el-image style="width:55px;height:55px;border-radius: 10px;" :src="item.pic"></el-image>
|
|
<P>{{ item.title }}</P>
|
|
<P>{{ item.title }}</P>
|
|
</el-link>
|
|
</el-link>
|
|
@@ -27,50 +27,20 @@
|
|
<script>
|
|
<script>
|
|
export default {
|
|
export default {
|
|
name: 'daohang',
|
|
name: 'daohang',
|
|
- props: {},
|
|
|
|
|
|
+ props: {
|
|
|
|
+ list: null,
|
|
|
|
+ },
|
|
components: {},
|
|
components: {},
|
|
data: () => ({
|
|
data: () => ({
|
|
title: '快速导航',
|
|
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() {},
|
|
created() {},
|
|
computed: {},
|
|
computed: {},
|
|
- methods: {},
|
|
|
|
|
|
+ methods: {
|
|
|
|
+ clickUrl(title) {
|
|
|
|
+ this.$emit('onsave', { title });
|
|
|
|
+ },
|
|
|
|
+ },
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
|
|
|