|
@@ -1,19 +1,35 @@
|
|
<template>
|
|
<template>
|
|
<contentDialogVue ref="commonPopup" @confirm-btn="confirmBtn" title="选择职业">
|
|
<contentDialogVue ref="commonPopup" @confirm-btn="confirmBtn" title="选择职业">
|
|
- <view style="height: 100vh">
|
|
|
|
|
|
+ <view class="phone-zydj-popup">
|
|
|
|
+ <view class="icon-title-navBar-box">
|
|
|
|
+ <view class="nav-bar-icon"></view>
|
|
|
|
+ <text class="nav-bar-title">职业等级</text>
|
|
|
|
+ </view>
|
|
<!-- 技能块展示 -->
|
|
<!-- 技能块展示 -->
|
|
- <view v-for="item in data.list" :key="item.id" class="phone-radio-item"
|
|
|
|
- :class="{ radioActive: !!item.zyLevelName }" @click="toggleSelect(item)">
|
|
|
|
- {{ item.name }}
|
|
|
|
- <view class="radio-item-tag" v-if="!!item.zyLevelName">{{item.zyLevelName[0]}}</view>
|
|
|
|
|
|
+ <view class="phone-select-group">
|
|
|
|
+ <view v-for="item in data.list" :key="item.id" class="phone-select-item"
|
|
|
|
+ :class="{ selectActive: !!item.zyLevelName }" @click="toggleSelect(item)">
|
|
|
|
+ {{ item.name }}
|
|
|
|
+ <view class="select-item-tag" v-if="!!item.zyLevelName">{{item.zyLevelName[0]}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="zydj-popup-btn-box">
|
|
|
|
+ <button type="default" class="phone-green-btn">保存</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</contentDialogVue>
|
|
</contentDialogVue>
|
|
<!-- 弹窗 -->
|
|
<!-- 弹窗 -->
|
|
<contentDialogVue ref="commonPopup2" type="center" :showBtn="false" title="请选择职业等级">
|
|
<contentDialogVue ref="commonPopup2" type="center" :showBtn="false" title="请选择职业等级">
|
|
- <!-- 等级选择 -->
|
|
|
|
- <view v-for="item in data.zyLevelList" :key="item.id" @click="handleSelectLevelId(item)">
|
|
|
|
- {{item.name}}
|
|
|
|
|
|
+ <view class="phone-common-dialog">
|
|
|
|
+ <view class="common-body-box">
|
|
|
|
+ <view class="common-title">选择等级</view>
|
|
|
|
+ <!-- 等级选择 -->
|
|
|
|
+ <view class="common-content">
|
|
|
|
+ <view class="dj-select-item" v-for="item in data.zyLevelList" :key="item.id" @click="handleSelectLevelId(item)">
|
|
|
|
+ {{item.name}}
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</contentDialogVue>
|
|
</contentDialogVue>
|
|
</template>
|
|
</template>
|