diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ed3da7..52c72f5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-# 0.1.0 (2021-12-08)
+# 0.1.0 (2021-12-09)
### 🌟 新功能
范围|描述|commitId
@@ -153,6 +153,7 @@
- | 修改接口路径 | [df6acf2](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/df6acf2)
- | 修改时间轴bug | [fe08608](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/fe08608)
- | 修改样式 | [f0ddc90](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/f0ddc90)
+ - | 修改添加基本信息 压缩代码 | [ce20ff7](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/ce20ff7)
- | 修改角色栏组件 | [a54c601](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/a54c601)
- | 切换到默认项目角色没有激活状态的bug | [438d448](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/438d448)
- | 切换日历时查询小红点 | [7091789](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/7091789)
diff --git a/rest/燕园.http b/rest/燕园.http
index 1b35f78..1fe8f01 100644
--- a/rest/燕园.http
+++ b/rest/燕园.http
@@ -369,5 +369,5 @@ title
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="param"; filename="D:\项目\山大一院-燕园\过程\导入\燕园Zarit导入v1.0.xlsx"
-< D:\项目\山大一院-燕园\过程\导入\燕园Zarit导入v1.0.xlsx
+< E:\ccsens\yanyuan\燕园脑力测评导入v1.1.xlsx
------WebKitFormBoundary7MA4YWxkTrZu0gW--
diff --git a/src/pagesYanyuan/assess/components/Test/answerPage.vue b/src/pagesYanyuan/assess/components/Test/answerPage.vue
index fa198c4..6c95f40 100644
--- a/src/pagesYanyuan/assess/components/Test/answerPage.vue
+++ b/src/pagesYanyuan/assess/components/Test/answerPage.vue
@@ -4,7 +4,7 @@
- {{ questionInfo.num }}.{{ con.content }}
+ {{ questionInfo.num }}.{{ con.content }}
diff --git a/src/pagesYanyuan/assess/components/Test/components/TestMain.vue b/src/pagesYanyuan/assess/components/Test/components/TestMain.vue
index 62f4c85..1033672 100644
--- a/src/pagesYanyuan/assess/components/Test/components/TestMain.vue
+++ b/src/pagesYanyuan/assess/components/Test/components/TestMain.vue
@@ -1,17 +1,19 @@
-
-
-
-
+
+
+
- {{ item.content }}
-
-
+
+
+ {{ item.content }}
+
+
+
@@ -28,7 +30,13 @@ export default {
},
data() {
- return {};
+ return {
+ lists: [
+ { id: 1, content: '张三', col: 1, showType: 0 },
+ { id: 2, content: '李四', col: 1, showType: 0 },
+ { id: 3, content: '王五', col: 1, showType: 0 },
+ ],
+ };
},
computed: {
@@ -52,6 +60,7 @@ export default {
// 选中任一radio时,由radio-group触发
radioChange(e) {
+ console.log('e: ', e);
this.setOptionId(e);
},
},