|
@@ -242,7 +242,8 @@ onUnmounted(() => {
|
|
|
<div class="scale_title">{{ topicIndex }}:{{ scaleList[topicIndex - 1].content }}</div>
|
|
|
|
|
|
<el-radio-group v-model="scaleList[topicIndex - 1].isCheck" class="scale_radio_group">
|
|
|
- <el-radio-button v-for="item in scaleList[topicIndex - 1].checkItems.split(';') "
|
|
|
+ <el-radio-button
|
|
|
+ v-for="item in scaleList[topicIndex - 1].checkItems.split(';').sort(() => { return Math.random() - 0.5 }) "
|
|
|
@change="radioFun" :label="item" :value="item" />
|
|
|
</el-radio-group>
|
|
|
<div class="scale_button">
|
|
@@ -372,7 +373,7 @@ onUnmounted(() => {
|
|
|
.report_jt {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
- font-size: 30px;
|
|
|
+ font-size: 20px;
|
|
|
font-weight: 700;
|
|
|
letter-spacing: 3px;
|
|
|
|