|
@@ -157,13 +157,13 @@
|
|
|
class="orgData"
|
|
|
>
|
|
|
<div @click="lookPrize(item2.courseId)">
|
|
|
- {{ item2.title }}:{{ item2.num }}份
|
|
|
+ <!-- {{ item2.title }} -->
|
|
|
+ 查看:{{ item2.num }}份
|
|
|
</div>
|
|
|
<div
|
|
|
- style="color: black;"
|
|
|
@click="goFillIn(item2.courseId)"
|
|
|
>
|
|
|
- 去填写
|
|
|
+ 填写
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -182,6 +182,10 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <div class="brief" v-if="brief">
|
|
|
+ <span v-html="brief" style="white-space: pre-wrap;word-break: break-all;"></span>
|
|
|
+ </div>
|
|
|
+
|
|
|
<!-- 点击数据来源 -->
|
|
|
<el-dialog
|
|
|
title=""
|
|
@@ -242,6 +246,7 @@ export default {
|
|
|
timeA:"",
|
|
|
timeB:"",
|
|
|
testExamineBaseList:[],
|
|
|
+ brief:"",
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -418,7 +423,9 @@ export default {
|
|
|
console.log("getTestExamineByUserId", res);
|
|
|
|
|
|
if (res.data[0].length > 0) {
|
|
|
+
|
|
|
this.allData = res.data[0][0];
|
|
|
+
|
|
|
let val = JSON.parse(res.data[0][0].json);
|
|
|
|
|
|
this.PageBaseData.forEach(e => {
|
|
@@ -471,6 +478,8 @@ export default {
|
|
|
// console.log("resresresres", res.data[0]);
|
|
|
// this.allData = res.data[0][0];
|
|
|
let testExamineBaseList = res.data[0];
|
|
|
+ console.log("res.data[0][0]", res.data[0][0]);
|
|
|
+ this.brief = res.data[0][0].brief;
|
|
|
this.testExamineBaseList = testExamineBaseList;
|
|
|
console.log("selectTestExamineBase", res.data[0][0]);
|
|
|
this.PageBaseData = JSON.parse(res.data[0][0].json);
|