twmodule 0.0.39 → 0.0.41

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.
@@ -1477,8 +1477,6 @@ module.exports = function (it, TAG, STATIC) {
1477
1477
 
1478
1478
  _this.currTarget = item;
1479
1479
  _this.radioCheckBoxShow = true;
1480
-
1481
- _this.gotoPage(item);
1482
1480
  },
1483
1481
  checkAll: function checkAll() {
1484
1482
  //全选
@@ -1527,6 +1525,9 @@ module.exports = function (it, TAG, STATIC) {
1527
1525
  }
1528
1526
 
1529
1527
  _this.currTarget.valueCopy = _this.currTarget.value;
1528
+
1529
+ _this.gotoPage(_this.currTarget);
1530
+
1530
1531
  _this.radioCheckBoxShow = false;
1531
1532
  },
1532
1533
  radioCheckClick: function radioCheckClick(item) {
@@ -4084,21 +4085,6 @@ var es_string_split = __webpack_require__("0d7a");
4084
4085
  // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/web.dom-collections.iterator.js
4085
4086
  var web_dom_collections_iterator = __webpack_require__("af86");
4086
4087
 
4087
- // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/defineProperty.js
4088
- function _defineProperty(obj, key, value) {
4089
- if (key in obj) {
4090
- Object.defineProperty(obj, key, {
4091
- value: value,
4092
- enumerable: true,
4093
- configurable: true,
4094
- writable: true
4095
- });
4096
- } else {
4097
- obj[key] = value;
4098
- }
4099
-
4100
- return obj;
4101
- }
4102
4088
  // EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/slicedToArray.js + 3 modules
4103
4089
  var slicedToArray = __webpack_require__("1998");
4104
4090
 
@@ -4117,10 +4103,6 @@ var slicedToArray = __webpack_require__("1998");
4117
4103
 
4118
4104
 
4119
4105
 
4120
-
4121
-
4122
- var _methods;
4123
-
4124
4106
  /* harmony default export */ var formItemvue_type_script_lang_js_ = ({
4125
4107
  name: 'formItem',
4126
4108
  props: ['formData'],
@@ -4144,7 +4126,7 @@ var _methods;
4144
4126
  };
4145
4127
  },
4146
4128
  mounted: function mounted() {},
4147
- methods: (_methods = {
4129
+ methods: {
4148
4130
  numberChange: function numberChange(data) {
4149
4131
  //数字类型时,字数限制
4150
4132
  if (data.type == 'tel' && data.value) {
@@ -4201,10 +4183,12 @@ var _methods;
4201
4183
  }
4202
4184
 
4203
4185
  data.clicked = true;
4186
+ this.gotoPage(data);
4204
4187
  this.$forceUpdate();
4205
4188
  },
4206
4189
  radioCheckClick: function radioCheckClick(item) {
4207
4190
  item.clicked = true;
4191
+ this.gotoPage(item);
4208
4192
  },
4209
4193
 
4210
4194
  /******************单选复选******start*****************/
@@ -4217,6 +4201,8 @@ var _methods;
4217
4201
 
4218
4202
  _this.currTarget = item;
4219
4203
  _this.radioCheckBoxShow = true;
4204
+
4205
+ _this.gotoPage(item);
4220
4206
  },
4221
4207
  checkAll: function checkAll() {
4222
4208
  //全选
@@ -4266,248 +4252,278 @@ var _methods;
4266
4252
 
4267
4253
  _this.currTarget.valueCopy = _this.currTarget.value;
4268
4254
  _this.radioCheckBoxShow = false;
4269
- }
4270
- }, _defineProperty(_methods, "radioCheckClick", function radioCheckClick(item) {
4271
- item.clicked = true;
4272
- }), _defineProperty(_methods, "gotoPage", function gotoPage(item) {
4273
- setTimeout(function () {
4274
- item.clicked = true;
4275
- }, 300);
4276
- this.$emit('gotoPage', item);
4277
- }), _defineProperty(_methods, "rangeOpenFun", function rangeOpenFun(item) {
4278
- setTimeout(function () {
4279
- item.clicked = true;
4280
- }, 300);
4255
+ },
4281
4256
 
4282
- var _this = this;
4257
+ /******************单选复选******end*****************/
4258
+ gotoPage: function gotoPage(item) {
4259
+ setTimeout(function () {
4260
+ item.clicked = true;
4261
+ }, 300);
4262
+ this.$emit('gotoPage', item);
4263
+ },
4283
4264
 
4284
- _this.currTime = item;
4285
- _this.rangeType = item.rangeType ? item.rangeType : 'range';
4286
- _this.rangeColor = item.rangeColor ? item.rangeColor : '#3399ff';
4287
- _this.startDate = item.startDate ? new Date(item.startDate) : new Date(new Date().setFullYear(new Date().getFullYear() - 10));
4288
- _this.endDate = item.endDate ? new Date(item.endDate) : new Date(new Date().setFullYear(new Date().getFullYear() + 10));
4265
+ /******** 时间段选择触发 ***** start *****/
4266
+ rangeOpenFun: function rangeOpenFun(item) {
4267
+ setTimeout(function () {
4268
+ item.clicked = true;
4269
+ }, 300);
4289
4270
 
4290
- if ((item.startText || item.endText) && item.rangeType == 'range') {
4291
- this.rangeRowHeight = 64;
4292
- }
4271
+ var _this = this;
4293
4272
 
4294
- _this.rangeOpen = true;
4295
- }), _defineProperty(_methods, "rangeConfirm", function rangeConfirm(date) {
4296
- if (this.rangeType == 'range') {
4297
- var _date = Object(slicedToArray["a" /* default */])(date, 2),
4298
- start = _date[0],
4299
- end = _date[1];
4273
+ _this.currTime = item;
4274
+ _this.rangeType = item.rangeType ? item.rangeType : 'range';
4275
+ _this.rangeColor = item.rangeColor ? item.rangeColor : '#3399ff';
4276
+ _this.startDate = item.startDate ? new Date(item.startDate) : new Date(new Date().setFullYear(new Date().getFullYear() - 10));
4277
+ _this.endDate = item.endDate ? new Date(item.endDate) : new Date(new Date().setFullYear(new Date().getFullYear() + 10));
4300
4278
 
4301
- this.currTime.value = "".concat(this.changeDate(start), " - ").concat(this.changeDate(end));
4302
- } else {
4303
- this.currTime.value = this.changeDate(date);
4304
- }
4279
+ if ((item.startText || item.endText) && item.rangeType == 'range') {
4280
+ this.rangeRowHeight = 64;
4281
+ }
4305
4282
 
4306
- this.rangeOpen = false;
4307
- }), _defineProperty(_methods, "formatterRange", function formatterRange(day) {
4308
- if (this.changeDate(day.date) == this.changeDate(new Date())) {
4309
- day.topInfo = '今天';
4310
- }
4283
+ _this.rangeOpen = true;
4284
+ },
4285
+ rangeConfirm: function rangeConfirm(date) {
4286
+ if (this.rangeType == 'range') {
4287
+ var _date = Object(slicedToArray["a" /* default */])(date, 2),
4288
+ start = _date[0],
4289
+ end = _date[1];
4311
4290
 
4312
- if (day.type === 'start') {
4313
- day.bottomInfo = this.currTime.startText ? this.currTime.startText : '';
4314
- } else if (day.type === 'end') {
4315
- day.bottomInfo = this.currTime.endText ? this.currTime.endText : '';
4316
- }
4291
+ this.currTime.value = "".concat(this.changeDate(start), " - ").concat(this.changeDate(end));
4292
+ } else {
4293
+ this.currTime.value = this.changeDate(date);
4294
+ }
4317
4295
 
4318
- return day;
4319
- }), _defineProperty(_methods, "jumpToday", function jumpToday() {
4320
- this.$refs.rangeChoose.reset();
4321
- }), _defineProperty(_methods, "timeOpenFun", function timeOpenFun(item) {
4322
- setTimeout(function () {
4323
- item.clicked = true;
4324
- }, 300);
4296
+ this.rangeOpen = false;
4297
+ this.gotoPage(this.currTime);
4298
+ },
4299
+ formatterRange: function formatterRange(day) {
4300
+ if (this.changeDate(day.date) == this.changeDate(new Date())) {
4301
+ day.topInfo = '今天';
4302
+ }
4325
4303
 
4326
- var _this = this;
4304
+ if (day.type === 'start') {
4305
+ day.bottomInfo = this.currTime.startText ? this.currTime.startText : '';
4306
+ } else if (day.type === 'end') {
4307
+ day.bottomInfo = this.currTime.endText ? this.currTime.endText : '';
4308
+ }
4327
4309
 
4328
- _this.currTime = item;
4329
- _this.timeType = item.timeType ? item.timeType : 'datetime';
4310
+ return day;
4311
+ },
4312
+ jumpToday: function jumpToday() {
4313
+ this.$refs.rangeChoose.reset();
4314
+ },
4330
4315
 
4331
- if (_this.timeType == 'time') {
4332
- _this.pickerValueDate = '';
4333
- }
4316
+ /******** 时间段选择触发 ***** end *****/
4334
4317
 
4335
- _this.startDate = item.startDate ? new Date(item.startDate) : new Date(new Date().setFullYear(new Date().getFullYear() - 10));
4336
- _this.endDate = item.endDate ? new Date(item.endDate) : new Date(new Date().setFullYear(new Date().getFullYear() + 10));
4337
- _this.timeOpen = true;
4338
- }), _defineProperty(_methods, "timeChange", function timeChange(picker) {}), _defineProperty(_methods, "timeConfirm", function timeConfirm(time) {
4339
- this.pickerValueDate = time;
4340
- this.currTime.value = this.timeType == 'time' ? time : this.changeDate(time, this.timeType);
4341
- this.timeOpen = false;
4342
- }), _defineProperty(_methods, "filter", function filter(type, options) {
4343
- if (type === 'minute') {
4344
- return options.filter(function (option) {
4345
- return option % 10 === 0;
4346
- });
4347
- }
4318
+ /******** 时间点选择触发 ***** start *****/
4319
+ timeOpenFun: function timeOpenFun(item) {
4320
+ setTimeout(function () {
4321
+ item.clicked = true;
4322
+ }, 300);
4348
4323
 
4349
- return options;
4350
- }), _defineProperty(_methods, "formatterTime", function formatterTime(type, val) {
4351
- if (type === 'year') {
4352
- return "".concat(val, "\u5E74");
4353
- } else if (type === 'month') {
4354
- return "".concat(val, "\u6708");
4355
- } else if (type === 'day') {
4356
- return "".concat(val, "\u65E5");
4357
- } else if (type === 'hour') {
4358
- return "".concat(val, "\u65F6");
4359
- } else if (type === 'minute') {
4360
- return "".concat(val, "\u5206");
4361
- }
4324
+ var _this = this;
4362
4325
 
4363
- return val;
4364
- }), _defineProperty(_methods, "selectChange", function selectChange(picker, values, index) {
4365
- console.log(index);
4366
- }), _defineProperty(_methods, "rebuildData", function rebuildData(data, num) {
4367
- var _this = this;
4326
+ _this.currTime = item;
4327
+ _this.timeType = item.timeType ? item.timeType : 'datetime';
4368
4328
 
4369
- if (data.length > 0) {
4370
- data.map(function (i) {
4371
- if (i.children && i.children.length > 0) {
4372
- _this.rebuildData(i.children);
4373
- }
4374
- });
4329
+ if (_this.timeType == 'time') {
4330
+ _this.pickerValueDate = '';
4331
+ }
4375
4332
 
4376
- if (num == 2) {
4377
- data.unshift({
4378
- text: '全部',
4379
- value: '',
4380
- children: [{
4381
- text: '',
4382
- value: '',
4383
- children: ''
4384
- }]
4333
+ _this.startDate = item.startDate ? new Date(item.startDate) : new Date(new Date().setFullYear(new Date().getFullYear() - 10));
4334
+ _this.endDate = item.endDate ? new Date(item.endDate) : new Date(new Date().setFullYear(new Date().getFullYear() + 10));
4335
+ _this.timeOpen = true;
4336
+ },
4337
+ timeChange: function timeChange(picker) {},
4338
+ timeConfirm: function timeConfirm(time) {
4339
+ this.pickerValueDate = time;
4340
+ this.currTime.value = this.timeType == 'time' ? time : this.changeDate(time, this.timeType);
4341
+ this.timeOpen = false;
4342
+ this.gotoPage(this.currTime);
4343
+ },
4344
+ filter: function filter(type, options) {
4345
+ if (type === 'minute') {
4346
+ return options.filter(function (option) {
4347
+ return option % 10 === 0;
4385
4348
  });
4386
- } else if (num == 3) {
4387
- data.unshift({
4388
- text: '全部',
4389
- value: '',
4390
- children: [{
4391
- text: '',
4349
+ }
4350
+
4351
+ return options;
4352
+ },
4353
+ formatterTime: function formatterTime(type, val) {
4354
+ if (type === 'year') {
4355
+ return "".concat(val, "\u5E74");
4356
+ } else if (type === 'month') {
4357
+ return "".concat(val, "\u6708");
4358
+ } else if (type === 'day') {
4359
+ return "".concat(val, "\u65E5");
4360
+ } else if (type === 'hour') {
4361
+ return "".concat(val, "\u65F6");
4362
+ } else if (type === 'minute') {
4363
+ return "".concat(val, "\u5206");
4364
+ }
4365
+
4366
+ return val;
4367
+ },
4368
+
4369
+ /******** 时间点选择触发 ***** end *****/
4370
+
4371
+ /**************上拉选择******start*********/
4372
+ selectChange: function selectChange(picker, values, index) {
4373
+ console.log(index);
4374
+ },
4375
+ rebuildData: function rebuildData(data, num) {
4376
+ var _this = this;
4377
+
4378
+ if (data.length > 0) {
4379
+ data.map(function (i) {
4380
+ if (i.children && i.children.length > 0) {
4381
+ _this.rebuildData(i.children);
4382
+ }
4383
+ });
4384
+
4385
+ if (num == 2) {
4386
+ data.unshift({
4387
+ text: '全部',
4392
4388
  value: '',
4393
4389
  children: [{
4394
4390
  text: '',
4395
4391
  value: '',
4396
4392
  children: ''
4397
4393
  }]
4398
- }]
4399
- });
4400
- } else {
4401
- data.unshift({
4402
- text: '全部',
4403
- value: '',
4404
- children: [{
4405
- text: '',
4394
+ });
4395
+ } else if (num == 3) {
4396
+ data.unshift({
4397
+ text: '全部',
4406
4398
  value: '',
4407
- children: ''
4408
- }]
4409
- });
4399
+ children: [{
4400
+ text: '',
4401
+ value: '',
4402
+ children: [{
4403
+ text: '',
4404
+ value: '',
4405
+ children: ''
4406
+ }]
4407
+ }]
4408
+ });
4409
+ } else {
4410
+ data.unshift({
4411
+ text: '全部',
4412
+ value: '',
4413
+ children: [{
4414
+ text: '',
4415
+ value: '',
4416
+ children: ''
4417
+ }]
4418
+ });
4419
+ }
4410
4420
  }
4411
- }
4412
4421
 
4413
- return [{
4414
- text: '',
4415
- value: 0,
4416
- children: data
4417
- }];
4418
- }), _defineProperty(_methods, "selectOneBoxOpen", function selectOneBoxOpen(item) {
4419
- setTimeout(function () {
4420
- item.clicked = true;
4421
- }, 300);
4422
+ return [{
4423
+ text: '',
4424
+ value: 0,
4425
+ children: data
4426
+ }];
4427
+ },
4428
+ selectOneBoxOpen: function selectOneBoxOpen(item) {
4429
+ setTimeout(function () {
4430
+ item.clicked = true;
4431
+ }, 300);
4422
4432
 
4423
- var _this = this;
4433
+ var _this = this;
4424
4434
 
4425
- this.currTarget = item;
4426
- this.selectOneList = [];
4427
- this.selectOneList = JSON.parse(JSON.stringify(item.list));
4435
+ this.currTarget = item;
4436
+ this.selectOneList = [];
4437
+ this.selectOneList = JSON.parse(JSON.stringify(item.list));
4428
4438
 
4429
- if (item.type == 'selectOneContact') {
4430
- var currList = this.rebuildData(this.selectOneList, item.levelNum);
4439
+ if (item.type == 'selectOneContact') {
4440
+ var currList = this.rebuildData(this.selectOneList, item.levelNum);
4431
4441
 
4432
- if (item.valueIndex && item.valueIndex.length > 0) {
4433
- var currIndex = item.valueIndex;
4434
- currList[0].defaultIndex = currIndex[1];
4435
- currList[0].children[currIndex[1]].defaultIndex = currIndex[2];
4436
- currList[0].children[currIndex[1]].children[currIndex[2]].defaultIndex = currIndex[3];
4437
- }
4442
+ if (item.valueIndex && item.valueIndex.length > 0) {
4443
+ var currIndex = item.valueIndex;
4444
+ currList[0].defaultIndex = currIndex[1];
4445
+ currList[0].children[currIndex[1]].defaultIndex = currIndex[2];
4446
+ currList[0].children[currIndex[1]].children[currIndex[2]].defaultIndex = currIndex[3];
4447
+ }
4438
4448
 
4439
- this.selectOneList = currList;
4440
- setTimeout(function () {
4441
- document.getElementsByClassName('van-picker-column')[0].style.display = 'none';
4449
+ this.selectOneList = currList;
4450
+ setTimeout(function () {
4451
+ document.getElementsByClassName('van-picker-column')[0].style.display = 'none';
4442
4452
 
4443
- if (item.valueIndex && item.valueIndex[item.levelNum] == '0') {
4444
- document.getElementsByClassName('van-picker-column')[item.levelNum + 1] ? document.getElementsByClassName('van-picker-column')[item.levelNum + 1].style.display = 'none' : '';
4445
- }
4446
- }, 100);
4447
- } else {
4448
- if (item.value) {
4449
- item.value.split(',').map(function (j) {
4450
- _this.selectOneList.map(function (k) {
4451
- k.values.map(function (l, p) {
4452
- if (j == l.value) {
4453
- k.defaultIndex = p + 1;
4454
- }
4453
+ if (item.valueIndex && item.valueIndex[item.levelNum] == '0') {
4454
+ document.getElementsByClassName('van-picker-column')[item.levelNum + 1] ? document.getElementsByClassName('van-picker-column')[item.levelNum + 1].style.display = 'none' : '';
4455
+ }
4456
+ }, 100);
4457
+ } else {
4458
+ if (item.value) {
4459
+ item.value.split(',').map(function (j) {
4460
+ _this.selectOneList.map(function (k) {
4461
+ k.values.map(function (l, p) {
4462
+ if (j == l.value) {
4463
+ k.defaultIndex = p + 1;
4464
+ }
4465
+ });
4455
4466
  });
4456
4467
  });
4468
+ }
4469
+
4470
+ this.selectOneList.map(function (i) {
4471
+ i.values.unshift({
4472
+ text: '请选择',
4473
+ value: ''
4474
+ });
4457
4475
  });
4476
+ setTimeout(function () {
4477
+ document.getElementsByClassName('van-picker-column')[0].style.display = 'inline-block';
4478
+ }, 100);
4458
4479
  }
4459
4480
 
4460
- this.selectOneList.map(function (i) {
4461
- i.values.unshift({
4462
- text: '请选择',
4463
- value: ''
4464
- });
4465
- });
4466
- setTimeout(function () {
4467
- document.getElementsByClassName('van-picker-column')[0].style.display = 'inline-block';
4468
- }, 100);
4469
- }
4481
+ this.selectOneOpen = true;
4482
+ },
4483
+ selectOneConfirm: function selectOneConfirm(val, index) {
4484
+ var _this = this;
4470
4485
 
4471
- this.selectOneOpen = true;
4472
- }), _defineProperty(_methods, "selectOneConfirm", function selectOneConfirm(val, index) {
4473
- var _this = this;
4486
+ _this.currTarget.showName = '';
4487
+ _this.currTarget.value = '';
4474
4488
 
4475
- _this.currTarget.showName = '';
4476
- _this.currTarget.value = '';
4489
+ if (_this.currTarget.type == 'selectOneContact') {
4490
+ val.map(function (i, j) {
4491
+ if (i) {
4492
+ _this.currTarget.showName += i + '-';
4493
+ }
4494
+ });
4495
+ _this.currTarget.valueIndex = index;
4496
+ var data = _this.selectOneList;
4477
4497
 
4478
- if (_this.currTarget.type == 'selectOneContact') {
4479
- val.map(function (i, j) {
4480
- if (i) {
4481
- _this.currTarget.showName += i + '-';
4498
+ if ((index[1] || index[1] == 0) && data[index[0]].children[index[1]].value) {
4499
+ _this.currTarget.value += data[index[0]].children[index[1]].value + ',';
4482
4500
  }
4483
- });
4484
- _this.currTarget.valueIndex = index;
4485
- var data = _this.selectOneList;
4486
4501
 
4487
- if ((index[1] || index[1] == 0) && data[index[0]].children[index[1]].value) {
4488
- _this.currTarget.value += data[index[0]].children[index[1]].value + ',';
4489
- }
4502
+ if ((index[2] || index[2] == 0) && data[index[0]].children[index[1]].children[index[2]].value) {
4503
+ _this.currTarget.value += data[index[0]].children[index[1]].children[index[2]].value + ',';
4504
+ }
4490
4505
 
4491
- if ((index[2] || index[2] == 0) && data[index[0]].children[index[1]].children[index[2]].value) {
4492
- _this.currTarget.value += data[index[0]].children[index[1]].children[index[2]].value + ',';
4506
+ if ((index[3] || index[3] == 0) && _this.currTarget.levelNum == 3 && data[index[0]].children[index[1]].children[index[2]].children[index[3]].value) {
4507
+ _this.currTarget.value += data[index[0]].children[index[1]].children[index[2]].children[index[3]].value + ',';
4508
+ }
4509
+ } else {
4510
+ val.map(function (i) {
4511
+ if (i.value) {
4512
+ _this.currTarget.showName += i.text + ',';
4513
+ _this.currTarget.value += i.value + ',';
4514
+ }
4515
+ });
4493
4516
  }
4494
4517
 
4495
- if ((index[3] || index[3] == 0) && _this.currTarget.levelNum == 3 && data[index[0]].children[index[1]].children[index[2]].children[index[3]].value) {
4496
- _this.currTarget.value += data[index[0]].children[index[1]].children[index[2]].children[index[3]].value + ',';
4497
- }
4498
- } else {
4499
- val.map(function (i) {
4500
- if (i.value) {
4501
- _this.currTarget.showName += i.text + ',';
4502
- _this.currTarget.value += i.value + ',';
4503
- }
4504
- });
4518
+ _this.currTarget.showName = _this.currTarget.showName.substring(0, _this.currTarget.showName.length - 1);
4519
+ _this.currTarget.value = _this.currTarget.value.substring(0, _this.currTarget.value.length - 1);
4520
+ _this.selectOneOpen = false;
4521
+
4522
+ _this.gotoPage(_this.currTarget);
4505
4523
  }
4524
+ /**************上拉选择******end***************/
4506
4525
 
4507
- _this.currTarget.showName = _this.currTarget.showName.substring(0, _this.currTarget.showName.length - 1);
4508
- _this.currTarget.value = _this.currTarget.value.substring(0, _this.currTarget.value.length - 1);
4509
- _this.selectOneOpen = false;
4510
- }), _methods)
4526
+ }
4511
4527
  });
4512
4528
  var formData1 = {
4513
4529
  //input:text tel正整数 number数字 digit整数 password密码
@@ -8792,7 +8808,7 @@ var mainvue_type_template_id_7c575200_staticRenderFns = []
8792
8808
 
8793
8809
  // CONCATENATED MODULE: ./packages/twFormItem/src/main.vue?vue&type=template&id=7c575200&
8794
8810
 
8795
- // EXTERNAL MODULE: ./examples/components/comPage/formItem/formItem.vue + 5 modules
8811
+ // EXTERNAL MODULE: ./examples/components/comPage/formItem/formItem.vue + 4 modules
8796
8812
  var formItem = __webpack_require__("a303");
8797
8813
 
8798
8814
  // CONCATENATED MODULE: ./node_modules/_cache-loader@4.1.0@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_thread-loader@2.1.3@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.1.0@babel-loader/lib!./node_modules/_cache-loader@4.1.0@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.9.3@vue-loader/lib??vue-loader-options!./packages/twFormItem/src/main.vue?vue&type=script&lang=js&