|
@@ -7,7 +7,7 @@
|
|
|
<v-tabs v-model="current" :tabs="tabs" :scroll="false" @change="changeTab" field="name" class="admin-tab-box"></v-tabs>
|
|
|
<gerenZiliao ref="gerenZiliao" @goNext="gerenziliaoNext" v-show="current ==0"></gerenZiliao>
|
|
|
<qiuzhiXinxi ref="qiuzhiXinxi" @goUp="goUpQiuzhixinxi" @goNext="goNextQiuzhixinxi" v-show="current ==1"></qiuzhiXinxi>
|
|
|
- <zhaopianZiliao ref="zhaopianZiliao" v-show="current ==2"></zhaopianZiliao>
|
|
|
+ <zhaopianZiliao ref="zhaopianZiliao" @goUp="goUpZhaopianZiliao" @goNext="goNextZhaopianZiliao" v-show="current ==2"></zhaopianZiliao>
|
|
|
<banzhengXinxi ref="banzhengXinxi" v-show="current ==3"></banzhengXinxi>
|
|
|
</view>
|
|
|
</template>
|
|
@@ -23,7 +23,7 @@
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
- current:1,
|
|
|
+ current:3,
|
|
|
// tabs: ['个人资料', '求职信息', '照片资料', '办证信息']
|
|
|
tabs: [
|
|
|
{ id: 1, name: '个人资料', disabled: false },
|
|
@@ -62,6 +62,13 @@
|
|
|
goNextQiuzhixinxi(data,num){
|
|
|
this.current = num + 1
|
|
|
this.tabs[this.current].disabled = false
|
|
|
+ },
|
|
|
+ goUpZhaopianZiliao(data,num){
|
|
|
+ this.current = num - 1
|
|
|
+ },
|
|
|
+ goNextZhaopianZiliao(data,num){
|
|
|
+ this.current = num + 1
|
|
|
+ this.tabs[this.current].disabled = false
|
|
|
},
|
|
|
}
|
|
|
}
|