huangtao 3 лет назад
Родитель
Сommit
1bec502b8b

+ 1 - 1
src/views/answerManagement/answerManagementSpecial.vue

@@ -255,7 +255,7 @@ export default {
       current_columns: [], // form表单的列参数
       current_tableData: [], // 表单数据
       current_pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数

+ 3 - 3
src/views/articleManagement/articleList.vue

@@ -66,7 +66,7 @@
         >
           <div class="article-list-item-title">{{ item.name }}</div>
           <div class="article-list-item-contgents">
-              <p v-html="item.contentsShow">{{ item.contentsShow }}</p>
+            <p v-html="item.contentsShow">{{ item.contentsShow }}</p>
           </div>
           <div class="article-list-item-createtime">
             {{ item.createdTime | formatDateTime }}
@@ -152,7 +152,7 @@ export default {
       engineeringWorkChooseValue: '', // 所选工种
       articleList: [], // 文章列表数据
       pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数
@@ -275,7 +275,7 @@ export default {
     // 初始化分页参数
     initPagination() {
       this.pagination.current = 1;
-      this.pagination.pageSize = 7;
+      this.pagination.pageSize = 10;
       this.pagination.total = 0;
     },
     // 操作:选择某个文章类型-子类

+ 1 - 1
src/views/examManagement/examAutomaticVolumeFormation.vue

@@ -432,7 +432,7 @@ export default {
       current_columns: [], // form表单的列参数
       current_tableData: [], // 表单数据
       current_pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数

+ 1 - 1
src/views/examManagement/examManagementDetail.vue

@@ -152,7 +152,7 @@ export default {
       // tableHeight: 400, // 表格高度
       columns: [], // form表单的列参数
       pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数

+ 2 - 2
src/views/examManagement/examManagementList.vue

@@ -152,7 +152,7 @@ export default {
       columns: [], // form表单的列参数
       tableData: [], // 表单数据
       pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数
@@ -249,7 +249,7 @@ export default {
     // 初始化分页参数
     initPagination() {
       this.pagination.current = 1;
-      this.pagination.pageSize = 7;
+      this.pagination.pageSize = 10;
       this.pagination.total = 0;
     },
     // 操作:选择某个试题类型

+ 3 - 3
src/views/examManagement/examManualVolumeFormation.vue

@@ -540,7 +540,7 @@ export default {
       current_columns: [], // form表单的列参数
       current_tableData: [], // 表单数据
       current_pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数
@@ -557,7 +557,7 @@ export default {
       bank_columns: [], // form表单的列参数
       bank_tableData: [], // 表单数据
       bank_pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数
@@ -972,7 +972,7 @@ export default {
     // 初始化分页参数
     initPagination() {
       this.bank_pagination.current = 1;
-      this.bank_pagination.pageSize = 7;
+      this.bank_pagination.pageSize = 10;
       this.bank_pagination.total = 0;
     },
     // 操作:选择某个试题类型

+ 3 - 3
src/views/examQuestionManagement/examQuestionList.vue

@@ -135,7 +135,7 @@
             }}</span>
           </template>
           <template slot="action" slot-scope="text, record">
-            <a @click="toQuestionDetailFun(record)">详情</a>
+            <a @click="toQuestionDetailFun(record)">编辑</a>
             <a-divider type="vertical" />
             <a @click="deleteQuestionFun(record)">删除</a>
           </template>
@@ -183,7 +183,7 @@ export default {
       columns: [], // form表单的列参数
       tableData: [], // 表单数据
       pagination: {
-        pageSize: 7,
+        pageSize: 10,
         current: 1,
         total: 0,
       }, // 分页参数
@@ -293,7 +293,7 @@ export default {
     // 初始化分页参数
     initPagination() {
       this.pagination.current = 1;
-      this.pagination.pageSize = 7;
+      this.pagination.pageSize = 10;
       this.pagination.total = 0;
     },
     // 查询:试题类型列表-子类

+ 2 - 2
src/views/examQuestionManagement/examQusetionCreateGapFilling.vue

@@ -241,11 +241,11 @@ export default {
           // )[0];
           // 试题类型-父类
           this.typeConditionParentValue =
-            this.examQuestionDetail.rootQuestionCategory || '';
+            this.examQuestionDetail.rootQuestionCategory.id || '';
           this.selectTypeConditionParent(); // 查询:试题类型列表-子类
           // 试题类型-子类
           this.typeConditionChildrenValue =
-            this.examQuestionDetail.questionCategory || '';
+            this.examQuestionDetail.questionCategory.id || '';
           // 工种
           this.engineeringWorkChooseValue = this.examQuestionDetail.engineerTypes[0];
           this.loading = false;

+ 2 - 2
src/views/examQuestionManagement/examQusetionCreateMultiple.vue

@@ -267,11 +267,11 @@ export default {
           );
           // 试题类型-父类
           this.typeConditionParentValue =
-            this.examQuestionDetail.rootQuestionCategory || '';
+            this.examQuestionDetail.rootQuestionCategory.id || '';
           this.selectTypeConditionParent(); // 查询:试题类型列表-子类
           // 试题类型-子类
           this.typeConditionChildrenValue =
-            this.examQuestionDetail.questionCategory || '';
+            this.examQuestionDetail.questionCategory.id || '';
           // 工种
           this.engineeringWorkChooseValue = this.examQuestionDetail.engineerTypes[0];
           this.loading = false;

+ 2 - 2
src/views/examQuestionManagement/examQusetionCreateSingle.vue

@@ -284,11 +284,11 @@ export default {
           )[0];
           // 试题类型-父类
           this.typeConditionParentValue =
-            this.examQuestionDetail.rootQuestionCategory || '';
+            this.examQuestionDetail.rootQuestionCategory.id || '';
           this.selectTypeConditionParent(); // 查询:试题类型列表-子类
           // 试题类型-子类
           this.typeConditionChildrenValue =
-            this.examQuestionDetail.questionCategory || '';
+            this.examQuestionDetail.questionCategory.id || '';
           // 工种
           this.engineeringWorkChooseValue = this.examQuestionDetail.engineerTypes[0];
           this.loading = false;

+ 2 - 2
src/views/examQuestionManagement/examQusetionCreateTrueOrFalse.vue

@@ -258,11 +258,11 @@ export default {
           )[0];
           // 试题类型-父类
           this.typeConditionParentValue =
-            this.examQuestionDetail.rootQuestionCategory || '';
+            this.examQuestionDetail.rootQuestionCategory.id || '';
           this.selectTypeConditionParent(); // 查询:试题类型列表-子类
           // 试题类型-子类
           this.typeConditionChildrenValue =
-            this.examQuestionDetail.questionCategory || '';
+            this.examQuestionDetail.questionCategory.id || '';
           // 工种
           this.engineeringWorkChooseValue = this.examQuestionDetail.engineerTypes[0];
           this.loading = false;

+ 1 - 0
src/views/login/login.vue

@@ -83,6 +83,7 @@ export default {
     };
   },
   created() {
+    // this.setUserInfo({ name: '111', token: 'WFFFF' });
     this.initDataFun(); // 初始化数据
   },
   mounted() {},