-

+
{{ score }}分
@@ -110,6 +80,11 @@ export default {
data() {
return {
radio: 6,
+ form: {
+ //单选部分渲染数据
+ radioArray: [],
+ checkboxArray: []
+ },
radioList: [],
indexList: [
'A',
@@ -209,6 +184,13 @@ export default {
(result) => {
if (result.result) {
that.courseDetail = result.result.safeEducation
+ for (var i = 0; i < this.courseDetail.questionList.length; i++) {
+ let indexArry = []
+ this.form.checkboxArray.push(indexArry)
+ }
+
+ console.log("得到的课程详细数据 :", result.result)
+ console.log("得到的checkboxArray :", this.form.checkboxArray)
}
}
)
@@ -249,6 +231,7 @@ export default {
margin: 5rem 5rem;
text-align: center;
}
+
.blockBox {
box-shadow: 0 2rem 12rem 0px rgba(212, 220, 236, 0.69);
border-radius: 4rem;
@@ -256,18 +239,22 @@ export default {
padding: 5rem;
position: relative;
}
+
.optionItem {
/* padding-left: 20px; */
margin-top: 5rem;
font-size: 7rem;
display: block;
}
+
.desc {
margin-left: 2.5rem;
}
+
.checkbox {
transform: scale(0.8);
}
+
.submitBtn {
margin: -70rem 5rem;
position: fixed;
@@ -281,6 +268,7 @@ export default {
font-size: 7.5rem;
border-radius: 10rem;
}
+
.testResultBox {
position: fixed;
width: 100%;
@@ -289,11 +277,13 @@ export default {
top: 0;
z-index: 99999;
}
+
.resultImg {
width: 100%;
height: 307%;
margin: -70rem 0rem;
}
+
.score {
position: relative;
left: 50%;
@@ -316,6 +306,7 @@ export default {
margin-left: -28rem;
}
}
+
.headers {
/* border-bottom: 0.5rem solid #f3f3f3; */
height: 8rem;
@@ -326,6 +317,7 @@ export default {
margin-top: -55%;
/* background-color: pink; */
}
+
.testTilte {
font-size: 6rem;
}
@@ -334,6 +326,7 @@ export default {
font-size: 4rem;
line-height: 10rem;
}
+
::v-deep .el-checkbox__inner {
margin-top: -2rem;
@@ -343,6 +336,7 @@ export default {
/* border: 0.5rem solid #fff; */
}
+
::v-deep .el-radio__inner {
margin-top: -2rem;
@@ -350,6 +344,7 @@ export default {
height: 4rem;
line-height: 10rem;
}
+
::v-deep .el-radio__label {
font-size: 4rem;
line-height: 10rem;
diff --git a/src/views/projectFront/markingRoom/devManage.vue b/src/views/projectFront/markingRoom/devManage.vue
index 0147a491..37985440 100644
--- a/src/views/projectFront/markingRoom/devManage.vue
+++ b/src/views/projectFront/markingRoom/devManage.vue
@@ -305,13 +305,13 @@
-
-
@@ -320,11 +320,11 @@
:placeholder="$t('message.alarmValueSet.placeholder')"> -->
-
-
diff --git a/src/views/projectFront/projectSummary/cooperatorDatails.vue b/src/views/projectFront/projectSummary/cooperatorDatails.vue
index 8ece5954..35c0f9e2 100644
--- a/src/views/projectFront/projectSummary/cooperatorDatails.vue
+++ b/src/views/projectFront/projectSummary/cooperatorDatails.vue
@@ -373,7 +373,7 @@ export default {
getEnterpriseInfoById() {
let data = {
enterpriseId: this.$props.detailId,
- projectSn: this.projectSn,
+ projectSn: this.$store.state.userInfo.headquartersSn,
};
getEnterpriseInfoByIdApi(data).then((res) => {
if (res.code == 200) {