zydx-plus 1.32.306 → 1.32.307

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.32.306",
3
+ "version": "1.32.307",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -2391,7 +2391,7 @@ let buttonNames = {
2391
2391
  headLevel: {
2392
2392
  default: "demand",
2393
2393
  demand: '项目要求',
2394
- resourceIndex: '项目主题',
2394
+ resourceIndex: '学习项目',
2395
2395
  guideIndex: '指导意见',
2396
2396
  review: '项目点评',
2397
2397
  analyse: '项目分析',
@@ -2419,7 +2419,7 @@ let buttonNames = {
2419
2419
  headLevel: {
2420
2420
  default: "demand",
2421
2421
  demand: '创新要求',
2422
- resourceIndex: '创新任务',
2422
+ resourceIndex: '创新主题',
2423
2423
  guideIndex: '指导意见',
2424
2424
  review: '创新点评',
2425
2425
  analyse: '创新分析',
@@ -2427,8 +2427,8 @@ let buttonNames = {
2427
2427
  },
2428
2428
  otherLevel: {
2429
2429
  default: "singletonClass",
2430
- singletonClass: this.getCurrentPrefix(item) + '项目',
2431
- allClass: this.getPrefix(item) + '项目'
2430
+ singletonClass: this.getCurrentPrefix(item) + '主题',
2431
+ allClass: this.getPrefix(item) + '主题'
2432
2432
  },
2433
2433
  lowLevel: {
2434
2434
  default: "singletonClass",
@@ -15,7 +15,7 @@
15
15
  <template v-if="!readonly">
16
16
  <zydx-input v-model:value="info.examJoinTime"
17
17
  :readonly="readonly"
18
- :placeholder="'不限制'"
18
+ :placeholder="'请输入时长'"
19
19
  :border="!readonly"
20
20
  :type="'number'">
21
21
  <template #suffix>
@@ -43,7 +43,7 @@
43
43
  </template>
44
44
  <template v-else>
45
45
  <zydx-input :value="dateFormat(info.endTime)"
46
- :placeholder="'不限制'"
46
+ :placeholder="'请选择日期'"
47
47
  :readonly="readonly"
48
48
  :border="!readonly"
49
49
  :key="JSON.stringify(info.endTime)"
@@ -92,8 +92,8 @@
92
92
  </div>
93
93
  <div v-if="actionConfig[actionId].isShowVirtualScore" class="task_item_main" style="z-index: 1">
94
94
  <div class="task_text_desc">虚仿成绩:</div>
95
- <div class="width250">
96
- <zydxSelect :color="'#000000'" :readonly="readonly" :options="virtualScoreOptions" v-model:value="virtualScore"></zydxSelect>
95
+ <div class="width250" title="操作虚仿软件所得成绩在该题总得分占比">
96
+ <zydxSelect :color="'#000000'" :readonly="readonly" :placeholder="'操作虚仿软件所得成绩在该题...'" :options="virtualScoreOptions" v-model:value="virtualScore"></zydxSelect>
97
97
  </div>
98
98
  </div>
99
99
  <div class="default_item_main width100" >
@@ -765,7 +765,7 @@
765
765
  screenLimit: '0',
766
766
  funDisable: '0',
767
767
  round: 1,
768
- virtualScore: '0'
768
+ virtualScore: ''
769
769
  }
770
770
  ]
771
771
  }
@@ -818,6 +818,10 @@
818
818
  if(item.endTime != null) {
819
819
  item.endTime = new Date(item.endTime);
820
820
  }
821
+ // 设置虚仿默认值
822
+ if(item.virtualScore == '') {
823
+ item.virtualScore = "0";
824
+ }
821
825
  Object.keys(item).forEach(key=>{
822
826
  if(!that.keysArr.includes(key) || item[key] == null) {
823
827
  delete item[key];
@@ -30,8 +30,8 @@
30
30
  <div v-else>
31
31
  <div class="choice-list">
32
32
  <div class="list-title">
33
- <span><i>*</i>试题选项:</span>
34
- <button class="but" @click="addOption">增加选项</button>
33
+ <span>试题选项:<em>(必选项)</em></span>
34
+ <button class="but" @click="addOption">增加选项</button>
35
35
  </div>
36
36
  <div class="list-cont">
37
37
  <div class="list-cont-li" v-for="(item,index) in list">
@@ -249,7 +249,7 @@ export default {
249
249
  line-height: 30px;
250
250
  }
251
251
  .list-cont{
252
- padding: 0 0 8px 30px;
252
+ padding: 0 0 8px 0;
253
253
  }
254
254
  .lv-color span{
255
255
  color: #13BF6C;
@@ -272,6 +272,10 @@ export default {
272
272
  margin-right: 2px;
273
273
  font-style: normal;
274
274
  }
275
+ .list-title em{
276
+ font-weight: normal;
277
+ font-style: normal;
278
+ }
275
279
  .choice-title{
276
280
  display: flex;
277
281
  justify-content: center;
@@ -0,0 +1,7 @@
1
+ import menu from './src/menu.vue';
2
+
3
+ menu.install = function(Vue) {
4
+ Vue.component(menu.name, menu);
5
+ };
6
+
7
+ export default menu;
@@ -0,0 +1,140 @@
1
+ <template>
2
+ <div class="menu-container">
3
+ <menu-list-item
4
+ v-for="(value, idx) in list"
5
+ :key="idx"
6
+ :value="value"
7
+ @trigger:click="click"
8
+ >
9
+ <template #default="{ item }">
10
+ <div
11
+ class="title"
12
+ :class="{
13
+ green: handleActive(item, 'green'),
14
+ red: handleActive(item, 'red'),
15
+ }"
16
+ :title="item.title"
17
+ >
18
+ {{ idx + 1 }}.{{ item.title }}
19
+ </div>
20
+ <div
21
+ class="detail"
22
+ :class="{
23
+ green: handleActive(item, 'green'),
24
+ red: handleActive(item, 'red'),
25
+ }"
26
+ >
27
+ <div
28
+ class="detail-item"
29
+ :title="item.detail[idx].value"
30
+ v-for="({ name, value }, idx) in item.detail"
31
+ :key="idx"
32
+ >
33
+ {{ name }}:
34
+ {{ value }}
35
+ </div>
36
+ </div>
37
+ </template>
38
+ </menu-list-item>
39
+ </div>
40
+ </template>
41
+
42
+ <script>
43
+ import menuListItem from "./menuList.vue";
44
+ export default {
45
+ name: "zydx-menu",
46
+ components: {
47
+ menuListItem,
48
+ },
49
+ props: {
50
+ list: {
51
+ type: Array,
52
+ default: () => [],
53
+ },
54
+ styleConfig: {
55
+ type: Object,
56
+ default: () => {
57
+ return {
58
+ activeColor: "green",
59
+ };
60
+ },
61
+ },
62
+ },
63
+ data() {
64
+ return {
65
+ activeIndex: -1,
66
+ };
67
+ },
68
+ methods: {
69
+ click: function (item) {
70
+ const idx = this.list.findIndex(({ id }) => id === item.id);
71
+ this.activeIndex = idx;
72
+ this.$emit("trigger:click", item);
73
+ },
74
+ handleActive: function (item, color) {
75
+ const idx = this.list.findIndex(({ id }) => id === item.id);
76
+ return this.activeIndex === idx
77
+ ? this.checkColor(this.styleConfig.activeColor, color)
78
+ ? true
79
+ : false
80
+ : false;
81
+ },
82
+ checkColor: function (activeColor, color) {
83
+ switch (color) {
84
+ case "green":
85
+ return activeColor === color;
86
+ case "red":
87
+ return activeColor === color;
88
+ default:
89
+ return false;
90
+ }
91
+ },
92
+ },
93
+ computed: {
94
+ activeColor: function () {
95
+ return this.styleConfig.activeColor;
96
+ },
97
+ },
98
+ };
99
+ </script>
100
+
101
+ <style scoped>
102
+ .menu-container {
103
+ width: 100%;
104
+ height: auto;
105
+ margin: 0 auto;
106
+ display: flex;
107
+ flex-direction: column;
108
+ align-items: center;
109
+ justify-content: flex-start;
110
+ gap: 10px;
111
+ padding: 15px;
112
+ font-size: 14px;
113
+ line-height: 30px;
114
+ letter-spacing: 1px;
115
+ }
116
+ .title {
117
+ width: 100%;
118
+ font-size: 16px;
119
+ }
120
+ .title.red {
121
+ color:red
122
+ }
123
+ .title.green {
124
+ color:#00ff00
125
+ }
126
+ .detail {
127
+ width: 100%;
128
+ text-indent: 28px;
129
+ text-overflow: ellipsis;
130
+ white-space: nowrap;
131
+ overflow: hidden;
132
+ }
133
+ .detail.red {
134
+ color:red
135
+ }
136
+ .detail.green {
137
+ color:#00ff00
138
+ }
139
+ </style>
140
+
@@ -0,0 +1,35 @@
1
+ <template>
2
+ <div class="menu-list-item" @click="click">
3
+ <slot v-bind="{ item: value }"></slot>
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: "menuListItem",
10
+ props: {
11
+ value: {
12
+ type: Object,
13
+ default: () => ({}),
14
+ },
15
+ },
16
+ methods: {
17
+ click() {
18
+ this.$emit("trigger:click", this.value);
19
+ },
20
+ },
21
+ };
22
+ </script>
23
+
24
+ <style scoped>
25
+ .menu-list-item {
26
+ width: 100%;
27
+ height: auto;
28
+ display: flex;
29
+ flex-direction: column;
30
+ align-items: center;
31
+ justify-content: flex-start;
32
+ min-height: 60px;
33
+ cursor: pointer;
34
+ }
35
+ </style>
@@ -146,6 +146,9 @@
146
146
  cursor: pointer;
147
147
  min-width: 60px;
148
148
  height: 21px;
149
+ text-align-last: justify;
150
+ word-break: break-all;
151
+ text-justify: distribute;
149
152
  }
150
153
  .buts-actives{
151
154
  color: #00ff00 !important;
package/src/index.js CHANGED
@@ -81,7 +81,7 @@ function install(app) {
81
81
  }
82
82
 
83
83
  export default {
84
- version: '1.32.306',
84
+ version: '1.32.307',
85
85
  install,
86
86
  Calendar,
87
87
  Message,