|
@@ -15,6 +15,8 @@
|
|
|
:zixunList="zixunList"
|
|
|
:nativeList="nativeList"
|
|
|
:backColor="backColor"
|
|
|
+ :list="list"
|
|
|
+ @onsave="onsaveClick"
|
|
|
></index-detail>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -60,6 +62,42 @@ export default {
|
|
|
jobinfoList: [], //招聘信息
|
|
|
nativeList: urlList, //网站导航
|
|
|
memberList: [], //党员之家
|
|
|
+ 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',
|
|
|
+ },
|
|
|
+ ],
|
|
|
backColor: '#0457c7',
|
|
|
}),
|
|
|
async created() {
|
|
@@ -260,6 +298,9 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
+ async onsaveClick({ title }) {
|
|
|
+ this.$router.push({ path: '/quiet', query: { title: title } });
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|