zydx-plus 1.35.575 → 1.35.577

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zydx-plus",
3
- "version": "1.35.575",
3
+ "version": "1.35.577",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -2740,7 +2740,7 @@ let buttonNames = {
2740
2740
  }
2741
2741
  },
2742
2742
  resource_lesson_homework: {
2743
- actionName: '作业资源',
2743
+ actionName: '学习思考',
2744
2744
  buttonList: {
2745
2745
  0: {
2746
2746
  // headLevel: {
@@ -2752,7 +2752,7 @@ let buttonNames = {
2752
2752
  // },
2753
2753
  headLevel: {
2754
2754
  default: "resourceIndex",
2755
- resourceIndex: '作业题目',
2755
+ resourceIndex: '思考题目',
2756
2756
  pipeGuideAnalysis: '管导评析'
2757
2757
  },
2758
2758
  otherLevel: {
@@ -6,14 +6,22 @@
6
6
  <div class="subject-title" :class="{'padd': item.top !== 0}" v-if="item.subject">
7
7
  <input v-if="multipleShow" type="checkbox" :checked="item.checked" @change="checkboxChange($event,index)"
8
8
  name="check"/>
9
- <span :style="{'font-weight': titleCrude?700:'normal'}">{{ item.order ? item.order : index + 1 }}{{ item.order === ' ' ? '' : '.' }}<em
9
+ <span v-if="item.quesNumber" :style="{'font-weight': titleCrude?700:'normal'}">{{ item.quesNumber }}<em
10
10
  v-html="item.title"></em><em v-if="scoreShow">({{ item.score }}分)</em>
11
- <i class="subject-but" ref="subject">
12
- <!-- <b :style="{right: -item.right + 'px', top: item.top + 'px'}" ref="b"> -->
13
- <button class="sees-but" :disabled="it.disabled" v-for="(it) in item.customBut" :class="{'buts-actives theme-text': it.active&&it.butStart,'buts-disabled': it.disabled}" @click="customButTap(it,item)">{{ it.active? it.nameActive: it.name }}</button>
14
- <!-- </b> -->
15
- </i>
16
- </span>
11
+ <i class="subject-but" ref="subject">
12
+ <!-- <b :style="{right: -item.right + 'px', top: item.top + 'px'}" ref="b"> -->
13
+ <button class="sees-but" :disabled="it.disabled" v-for="(it) in item.customBut" :class="{'buts-actives theme-text': it.active&&it.butStart,'buts-disabled': it.disabled}" @click="customButTap(it,item)">{{ it.active? it.nameActive: it.name }}</button>
14
+ <!-- </b> -->
15
+ </i>
16
+ </span>
17
+ <span v-else :style="{'font-weight': titleCrude?700:'normal'}">{{ item.order ? item.order : index + 1 }}{{ item.order === ' ' ? '' : '.' }}<em
18
+ v-html="item.title"></em><em v-if="scoreShow">({{ item.score }}分)</em>
19
+ <i class="subject-but" ref="subject">
20
+ <!-- <b :style="{right: -item.right + 'px', top: item.top + 'px'}" ref="b"> -->
21
+ <button class="sees-but" :disabled="it.disabled" v-for="(it) in item.customBut" :class="{'buts-actives theme-text': it.active&&it.butStart,'buts-disabled': it.disabled}" @click="customButTap(it,item)">{{ it.active? it.nameActive: it.name }}</button>
22
+ <!-- </b> -->
23
+ </i>
24
+ </span>
17
25
  </div>
18
26
  </div>
19
27
  <div v-if="item.alist" class="subject-html" v-show="item.open">
@@ -102,7 +102,7 @@
102
102
  <Year v-if="tipYear" style="top: 35px;" @cancel="cancelYear" @confirm="confirmYear($event,item)"></Year>
103
103
  </div>
104
104
  <div v-if="item.type === 'text'" class="text" v-html="item.value"></div>
105
- <div v-if="item.type === 'text2'" class="text2" v-html="item.value"></div>
105
+ <div v-if="item.type === 'text2'" class="input-text2" v-html="item.value"></div>
106
106
  <div v-if="item.type === 'code'" class="ph-code">
107
107
  <input type="text" v-model="item.value" :maxlength="item.maxlength" :placeholder="item.placeholder"/>
108
108
  <button ref="tipID" @click="item.codeTap($refs.tipID[0],inputArr)">{{
@@ -383,7 +383,7 @@ export default {
383
383
  :deep(.text) {
384
384
  padding:0 10px;
385
385
  }
386
- .text2{
386
+ .input-text2{
387
387
  font-size: 16px;
388
388
  text-indent: 2em;
389
389
  text-align: left;
package/src/index.js CHANGED
@@ -89,7 +89,7 @@ function install(app) {
89
89
  }
90
90
 
91
91
  export default {
92
- version: '1.35.575',
92
+ version: '1.35.577',
93
93
  install,
94
94
  Calendar,
95
95
  Message,