|
|
@@ -0,0 +1,90 @@
|
|
|
+<template>
|
|
|
+ <div class="creditIndex">
|
|
|
+ <credit-common-title/>
|
|
|
+ <section class="contentArea">
|
|
|
+ <div class="list">
|
|
|
+ <div class="cell" v-for="(item, index) in list" v-key="'creditIndexList' + index">
|
|
|
+ <div class="cellBody">
|
|
|
+ <div class="left">
|
|
|
+ <img :src="item.icon" alt="">
|
|
|
+ </div>
|
|
|
+ <div class="center">
|
|
|
+ <p class="title">{{item.title}}</p>
|
|
|
+ <p class="subTitle">{{item.subTitle}}</p>
|
|
|
+ </div>
|
|
|
+ <div class="right"></div>
|
|
|
+ </div>
|
|
|
+ <div class="lines"></div>
|
|
|
+ <div class="cellBottom">
|
|
|
+ <p class="bottomBox"
|
|
|
+ v-for="(item1, index1) in item.children"
|
|
|
+ v-key="'children' + index + index1">
|
|
|
+ {{item1.name}}
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import CreditCommonTitle from '@/components/credit/header.vue'
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 首页
|
|
|
+ */
|
|
|
+ export default {
|
|
|
+ layout: "opacity_header",
|
|
|
+ components: { CreditCommonTitle },
|
|
|
+ head() {
|
|
|
+ return {
|
|
|
+ title: '驻场工作招聘,2019年最新驻场工作招聘信息-程序员客栈',
|
|
|
+ meta: [ {
|
|
|
+ 'name': 'keywords',
|
|
|
+ 'content': '驻场招聘,驻场工作招聘,2019年最新驻场招聘信息'
|
|
|
+ }, {
|
|
|
+ 'name': 'descrption',
|
|
|
+ 'content': '程序员客栈提供全国各地城市IT驻场工作最新招聘信息,核实企业资质,让有工作需求的程序员能得到一份满意的驻场工作;对程序员从业者能力进行严格把关,保障企业能在驻场招聘平台找到靠谱的程序员,确保项目正常进行。找工作、招聘合格的程序员,就上程序员客栈驻场招聘平台!'
|
|
|
+ } ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ list: [ {
|
|
|
+ icon: require('@/assets/img/credit/indexIcon0.png'),
|
|
|
+ title: '身份特征',
|
|
|
+ subTitle: '我们会从您的实名认证信息、学历信息、驾驶证、职业证书等信息,来考察您的身份特征',
|
|
|
+ jumpUrl: '', //跳转至身份特征页
|
|
|
+ children: [ { name: '实名认证'}, { name: '最高学历认证' }, { name: '驾驶证' }]
|
|
|
+ },{
|
|
|
+ icon: require('@/assets/img/credit/indexIcon0.png'),
|
|
|
+ title: '项目经历',
|
|
|
+ subTitle: '我们会从您在程序员客栈,远程工作实际项目评价,来动态考察您的项目经历',
|
|
|
+ jumpUrl: '', //跳转至技能水平页
|
|
|
+ children: [ { name: '整包项目'}, { name: '云端工作' }, { name: '雇佣项目' }]
|
|
|
+ }, {
|
|
|
+ icon: require('@/assets/img/credit/indexIcon0.png'),
|
|
|
+ title: '专业经历',
|
|
|
+ subTitle: '我们会从您在程序员客栈,远程工作专业经历认证信息,来动态考察您的专业经历',
|
|
|
+ jumpUrl: '', //跳转至项目经验页
|
|
|
+ children: [ { name: '工作经历'}, { name: '产品经理认证' }, { name: '项目经理认证' }, { name: '自由工作着' }]
|
|
|
+ }, {
|
|
|
+ icon: require('@/assets/img/credit/indexIcon0.png'),
|
|
|
+ title: '社会信用',
|
|
|
+ subTitle: '我们会从工商信息、失信记录、金融风险、芝麻信用等第三方信用机构,来考察您的社会信用',
|
|
|
+ jumpUrl: '', //跳转至社会信用页
|
|
|
+ children: [ { name: '工商信息' }, { name: '失信记录' }, { name: '金融风险' }, { name: '芝麻信用' }, ]
|
|
|
+ } ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+
|
|
|
+ },
|
|
|
+ methods: {}
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scope lang="scss">
|
|
|
+ @import "../../../assets/css/credit/pages/index.scss";
|
|
|
+</style>
|