style: 样式修改
parent
36fb3c8627
commit
8efeef0677
|
@ -1,8 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<el-card v-if="isLeaderPosition" body-class="custom-body">
|
<el-card v-if="isLeaderPosition">
|
||||||
|
<el-form>
|
||||||
|
<el-form-item label="所属阵地:">
|
||||||
<el-radio-group v-model="selectPostion" @change="SET_SELECTED_POSITION">
|
<el-radio-group v-model="selectPostion" @change="SET_SELECTED_POSITION">
|
||||||
<el-radio v-for="item in positionList" :key="item.value" :label="item.value">{{ item.name }}</el-radio>
|
<el-radio v-for="item in positionList" :key="item.value" :label="item.value">{{ item.name }}</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
</el-card>
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -71,7 +75,10 @@ export default {
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
::v-deep {
|
::v-deep {
|
||||||
.czhj-card__body {
|
.czhj-card__body {
|
||||||
padding: 10px;
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
|
.czhj-form-item {
|
||||||
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue