zydx-plus 1.32.269 → 1.32.270
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/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/time/src/time.vue +1 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -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: {
|