doway-coms 1.1.94 → 1.1.97
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
|
@@ -340,13 +340,11 @@ import {
|
|
|
340
340
|
RangePicker,
|
|
341
341
|
Tag,
|
|
342
342
|
DatePicker,
|
|
343
|
-
Tag,
|
|
344
|
-
DatePicker,
|
|
345
343
|
InputGroup,
|
|
346
344
|
Input,
|
|
347
345
|
InputNumber,
|
|
348
346
|
} from 'ant-design-vue'
|
|
349
|
-
import { controlType } from "
|
|
347
|
+
import { controlType } from "../../utils/enum";
|
|
350
348
|
import moment from "moment";
|
|
351
349
|
import { mapGetters } from "vuex";
|
|
352
350
|
export default {
|
|
@@ -355,12 +353,12 @@ export default {
|
|
|
355
353
|
Button,
|
|
356
354
|
Icon,
|
|
357
355
|
Select,
|
|
358
|
-
SelectOption,
|
|
356
|
+
SelectOption: Select.Option,
|
|
359
357
|
RangePicker,
|
|
360
358
|
Tag,
|
|
361
359
|
DatePicker,
|
|
362
|
-
InputGroup,
|
|
363
360
|
Input,
|
|
361
|
+
InputGroup: Input.Group,
|
|
364
362
|
InputNumber,
|
|
365
363
|
},
|
|
366
364
|
computed: {
|