zydx-plus 1.32.269 → 1.32.271
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 +1 -1
- package/src/components/biz_header/src/button_name.js +4 -4
- package/src/components/calendar/src/Calendar.css +1 -0
- package/src/components/calendar/src/Calendar.vue +10 -10
- package/src/components/mind/src/mind.vue +4 -0
- package/src/components/tab/src/tab.vue +1 -0
- package/src/components/textarea/src/textarea.vue +1 -0
- package/src/components/time/src/time.vue +1 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -2109,19 +2109,19 @@ let buttonNames = {
|
|
|
2109
2109
|
headLevel: {
|
|
2110
2110
|
default: "demand",
|
|
2111
2111
|
demand: '回答要求',
|
|
2112
|
-
resourceIndex: '
|
|
2112
|
+
resourceIndex: '追问主题',
|
|
2113
2113
|
review: '回答点评',
|
|
2114
2114
|
analyse: '回答分析',
|
|
2115
2115
|
countermeasure: '教学对策'
|
|
2116
2116
|
},
|
|
2117
2117
|
otherLevel: {
|
|
2118
2118
|
default: "singletonClass",
|
|
2119
|
-
singletonClass: this.getCurrentPrefix(item) + '
|
|
2120
|
-
allClass: this.getPrefix(item) + '
|
|
2119
|
+
singletonClass: this.getCurrentPrefix(item) + '主题',
|
|
2120
|
+
allClass: this.getPrefix(item) + '主题'
|
|
2121
2121
|
},
|
|
2122
2122
|
lowLevel: {
|
|
2123
2123
|
default: "singletonClass",
|
|
2124
|
-
singletonClass: this.getCurrentPrefix(item) + '
|
|
2124
|
+
singletonClass: this.getCurrentPrefix(item) + '主题'
|
|
2125
2125
|
}
|
|
2126
2126
|
}
|
|
2127
2127
|
}
|
|
@@ -148,7 +148,7 @@ export default {
|
|
|
148
148
|
*/
|
|
149
149
|
showLunar: {
|
|
150
150
|
type: Boolean,
|
|
151
|
-
default:
|
|
151
|
+
default: false
|
|
152
152
|
},
|
|
153
153
|
/**
|
|
154
154
|
* @description 设置标记范围
|
|
@@ -208,15 +208,15 @@ export default {
|
|
|
208
208
|
firstRangeSelected: false, // 范围开始时间是否已经选择
|
|
209
209
|
rangeStart_: undefined, //标记范围开始,yyyyMM-dd
|
|
210
210
|
rangeEnd_: undefined, //标记范围结束,yyyyMM-dd
|
|
211
|
-
transform_x:0,
|
|
212
|
-
transform_time:0,
|
|
213
|
-
cleDate: '00:00',
|
|
214
|
-
cleFocusShow: false,
|
|
215
|
-
transHour: 0,
|
|
216
|
-
transMinute: 0,
|
|
217
|
-
hour: '00',
|
|
218
|
-
minute: '00',
|
|
219
|
-
dayChange: undefined,
|
|
211
|
+
transform_x:0, // 顶部日期选择器的偏移量
|
|
212
|
+
transform_time:0, // 顶部时间选择器的偏移量
|
|
213
|
+
cleDate: '00:00', //时间选择器的时间
|
|
214
|
+
cleFocusShow: false, // 是否显示时间选择器
|
|
215
|
+
transHour: 0, // 小时选择器的偏移量
|
|
216
|
+
transMinute: 0, // 分钟选择器的偏移量
|
|
217
|
+
hour: '00', // 选择的小时
|
|
218
|
+
minute: '00', // 选择的分钟
|
|
219
|
+
dayChange: undefined, // 选择的日期
|
|
220
220
|
};
|
|
221
221
|
},
|
|
222
222
|
methods: {
|