|
|
|
|
@ -101,7 +101,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 性别输入框 -->
|
|
|
|
|
<div class="form-new-sex g_flex_rowRight_columnCenter g_w_all" v-if="item.tip == 'slot-sex'">
|
|
|
|
|
<u-radio-group v-model="item.value" @change="(e) => handleSex(e, item, index)" active-color="#6A81FF">
|
|
|
|
|
<u-radio-group v-model="item.value" @change="(e) => handleSex(e, item, index)" active-color="#1890ff">
|
|
|
|
|
<u-radio :mr="sexItem.mr" v-for="(sexItem, sexIndex) in sexList" :key="sexIndex" :name="sexItem.tip">
|
|
|
|
|
{{ sexItem.name }}
|
|
|
|
|
</u-radio>
|
|
|
|
|
@ -240,7 +240,7 @@
|
|
|
|
|
class="iconfont icon-a-duigoubeifen2"
|
|
|
|
|
style="font-size: 24px"
|
|
|
|
|
:style="{
|
|
|
|
|
color: item.isSelected ? '#6A81FF' : '#fff',
|
|
|
|
|
color: item.isSelected ? '#1890ff' : '#fff',
|
|
|
|
|
}"
|
|
|
|
|
></i>
|
|
|
|
|
</div>
|
|
|
|
|
@ -267,7 +267,7 @@
|
|
|
|
|
:key="index"
|
|
|
|
|
@click="navigateToDeptLevel(index)"
|
|
|
|
|
>
|
|
|
|
|
<div :style="{ color: index === deptBreadcrumb.length - 1 ? '#333' : '#6A81FF' }">{{ crumb.teamName }}</div>
|
|
|
|
|
<div :style="{ color: index === deptBreadcrumb.length - 1 ? '#333' : '#1890ff' }">{{ crumb.teamName }}</div>
|
|
|
|
|
<div class="g_c_9 g_ml_4 g_mr_4" v-if="index < deptBreadcrumb.length - 1">/</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@ -285,7 +285,7 @@
|
|
|
|
|
<i
|
|
|
|
|
class="iconfont"
|
|
|
|
|
:class="isDeptSelected(dept.id) ? 'icon-check-circle-fill' : 'icon-yuanxingweixuanzhong'"
|
|
|
|
|
:style="{ fontSize: '20px', color: isDeptSelected(dept.id) ? '#6A81FF' : '#cccccc' }"
|
|
|
|
|
:style="{ fontSize: '20px', color: isDeptSelected(dept.id) ? '#1890ff' : '#cccccc' }"
|
|
|
|
|
></i>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 内容区域:点击进入子级 -->
|
|
|
|
|
@ -348,7 +348,7 @@
|
|
|
|
|
class="iconfont icon-a-duigoubeifen2"
|
|
|
|
|
style="font-size: 24px"
|
|
|
|
|
:style="{
|
|
|
|
|
color: role.disabled ? '#ddd' : (isRoleSelected(role.id) ? '#6A81FF' : '#fff'),
|
|
|
|
|
color: role.disabled ? '#ddd' : (isRoleSelected(role.id) ? '#1890ff' : '#fff'),
|
|
|
|
|
}"
|
|
|
|
|
></i>
|
|
|
|
|
</div>
|
|
|
|
|
@ -1139,7 +1139,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
.dept-selected-tag {
|
|
|
|
|
background-color: #f0f2ff;
|
|
|
|
|
color: #6A81FF;
|
|
|
|
|
color: #1890ff;
|
|
|
|
|
padding: 6rpx 16rpx;
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
margin-right: 12rpx;
|
|
|
|
|
@ -1148,7 +1148,7 @@ export default {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.dept-submit-btn {
|
|
|
|
|
background-color: #6A81FF;
|
|
|
|
|
background-color: #1890ff;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
padding: 8rpx 24rpx;
|
|
|
|
|
|