@panpanzhao/component-ui 1.25.828 → 1.25.1028
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/lib/component-ui.common.js +29 -48
- package/lib/components/crud.js +2 -6
- package/lib/components/form-dialog.js +1 -3
- package/lib/components/form-drawer.js +1 -3
- package/lib/components/form-input.js +1 -6
- package/lib/components/form-item.js +4 -1
- package/lib/components/form-view-dialog.js +1 -3
- package/lib/components/table-column.js +1 -4
- package/lib/components/table-editable.js +6 -7
- package/lib/components/table-operate.js +2 -6
- package/lib/components/table.js +10 -17
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -2070,9 +2070,7 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
|
2070
2070
|
},
|
|
2071
2071
|
computed: {
|
|
2072
2072
|
attrs: function attrs() {
|
|
2073
|
-
return Object.assign({
|
|
2074
|
-
size: "mini"
|
|
2075
|
-
}, this.$attrs);
|
|
2073
|
+
return Object.assign({}, this.$attrs);
|
|
2076
2074
|
}
|
|
2077
2075
|
},
|
|
2078
2076
|
data: function data() {
|
|
@@ -2871,9 +2869,7 @@ form_view_group_src.install = function (Vue) {
|
|
|
2871
2869
|
},
|
|
2872
2870
|
computed: {
|
|
2873
2871
|
attrs: function attrs() {
|
|
2874
|
-
return Object.assign({
|
|
2875
|
-
size: "mini"
|
|
2876
|
-
}, this.$attrs);
|
|
2872
|
+
return Object.assign({}, this.$attrs);
|
|
2877
2873
|
}
|
|
2878
2874
|
},
|
|
2879
2875
|
data: function data() {
|
|
@@ -4254,9 +4250,7 @@ var drawer_default = /*#__PURE__*/__webpack_require__.n(drawer_);
|
|
|
4254
4250
|
},
|
|
4255
4251
|
computed: {
|
|
4256
4252
|
attrs: function attrs() {
|
|
4257
|
-
return Object.assign({
|
|
4258
|
-
size: "mini"
|
|
4259
|
-
}, this.$attrs);
|
|
4253
|
+
return Object.assign({}, this.$attrs);
|
|
4260
4254
|
}
|
|
4261
4255
|
},
|
|
4262
4256
|
data: function data() {
|
|
@@ -7358,8 +7352,6 @@ var upload_process_component = normalizeComponent(
|
|
|
7358
7352
|
props: {
|
|
7359
7353
|
control: String,
|
|
7360
7354
|
render: Function,
|
|
7361
|
-
inputClass: String,
|
|
7362
|
-
inputStyle: [String, Object],
|
|
7363
7355
|
slots: {
|
|
7364
7356
|
type: Object
|
|
7365
7357
|
}
|
|
@@ -7370,10 +7362,7 @@ var upload_process_component = normalizeComponent(
|
|
|
7370
7362
|
return this.render.call(this, h, this.$attrs);
|
|
7371
7363
|
}
|
|
7372
7364
|
var param = {
|
|
7373
|
-
attrs: Object.assign({
|
|
7374
|
-
class: this.inputClass,
|
|
7375
|
-
style: this.inputStyle
|
|
7376
|
-
}, this.$attrs),
|
|
7365
|
+
attrs: Object.assign({}, this.$attrs),
|
|
7377
7366
|
on: this.$listeners,
|
|
7378
7367
|
slots: this.$slots,
|
|
7379
7368
|
scopedSlots: this.$scopedSlots
|
|
@@ -7435,6 +7424,8 @@ var form_input_default = /*#__PURE__*/__webpack_require__.n(form_input_);
|
|
|
7435
7424
|
size: String,
|
|
7436
7425
|
slots: Object,
|
|
7437
7426
|
rules: [Object, Array],
|
|
7427
|
+
inputClass: String,
|
|
7428
|
+
inputStyle: [String, Object],
|
|
7438
7429
|
required: Boolean,
|
|
7439
7430
|
actions: Array,
|
|
7440
7431
|
on: Object,
|
|
@@ -7629,7 +7620,8 @@ var form_input_default = /*#__PURE__*/__webpack_require__.n(form_input_);
|
|
|
7629
7620
|
"size": this.size
|
|
7630
7621
|
}
|
|
7631
7622
|
}, [h("div", {
|
|
7632
|
-
"class": "form-input_wrap"
|
|
7623
|
+
"class": ["form-input_wrap", this.inputClass],
|
|
7624
|
+
"style": this.inputStyle
|
|
7633
7625
|
}, [typeof ((_this$slots = this.slots) == null ? void 0 : _this$slots.prependItem) === "function" ? (_this$slots2 = this.slots) == null || (_this$slots2 = _this$slots2.prependItem) == null ? void 0 : _this$slots2.call(this, h, {
|
|
7634
7626
|
form: this.form,
|
|
7635
7627
|
formModel: this.form.formModel,
|
|
@@ -11139,8 +11131,7 @@ var sequence_component = normalizeComponent(
|
|
|
11139
11131
|
return h("el-radio", {
|
|
11140
11132
|
"attrs": {
|
|
11141
11133
|
"value": _this.table.rowId,
|
|
11142
|
-
"label": scoped.row[key]
|
|
11143
|
-
"size": "mini"
|
|
11134
|
+
"label": scoped.row[key]
|
|
11144
11135
|
}
|
|
11145
11136
|
}, [h("i")]);
|
|
11146
11137
|
};
|
|
@@ -11468,7 +11459,6 @@ var dropdown_menu_default = /*#__PURE__*/__webpack_require__.n(dropdown_menu_);
|
|
|
11468
11459
|
return Object.assign({
|
|
11469
11460
|
control: "Link",
|
|
11470
11461
|
label: "更多",
|
|
11471
|
-
size: "mini",
|
|
11472
11462
|
plain: true,
|
|
11473
11463
|
type: "primary",
|
|
11474
11464
|
underline: false
|
|
@@ -11646,7 +11636,6 @@ var dropdown_menu_default = /*#__PURE__*/__webpack_require__.n(dropdown_menu_);
|
|
|
11646
11636
|
attrs: function attrs() {
|
|
11647
11637
|
return Object.assign({
|
|
11648
11638
|
type: "primary",
|
|
11649
|
-
size: "mini",
|
|
11650
11639
|
plain: true
|
|
11651
11640
|
}, this.$attrs);
|
|
11652
11641
|
}
|
|
@@ -11818,8 +11807,8 @@ table_column.install = function (Vue) {
|
|
|
11818
11807
|
Vue.component(table_column.name, table_column);
|
|
11819
11808
|
};
|
|
11820
11809
|
/* harmony default export */ var components_table_column = (table_column);
|
|
11821
|
-
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table-editable/src/index.vue?vue&type=template&id=
|
|
11822
|
-
var
|
|
11810
|
+
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table-editable/src/index.vue?vue&type=template&id=315ab042
|
|
11811
|
+
var srcvue_type_template_id_315ab042_render = function render() {
|
|
11823
11812
|
var _vm = this,
|
|
11824
11813
|
_c = _vm._self._c
|
|
11825
11814
|
return _c(
|
|
@@ -11861,11 +11850,11 @@ var srcvue_type_template_id_6b45ef10_render = function render() {
|
|
|
11861
11850
|
1
|
|
11862
11851
|
)
|
|
11863
11852
|
}
|
|
11864
|
-
var
|
|
11865
|
-
|
|
11853
|
+
var srcvue_type_template_id_315ab042_staticRenderFns = []
|
|
11854
|
+
srcvue_type_template_id_315ab042_render._withStripped = true
|
|
11866
11855
|
|
|
11867
11856
|
|
|
11868
|
-
// CONCATENATED MODULE: ./src/components/table-editable/src/index.vue?vue&type=template&id=
|
|
11857
|
+
// CONCATENATED MODULE: ./src/components/table-editable/src/index.vue?vue&type=template&id=315ab042
|
|
11869
11858
|
|
|
11870
11859
|
// EXTERNAL MODULE: external "element-ui/lib/table"
|
|
11871
11860
|
var table_ = __webpack_require__(29);
|
|
@@ -12323,8 +12312,7 @@ var external_async_validator_default = /*#__PURE__*/__webpack_require__.n(extern
|
|
|
12323
12312
|
return Object.assign({
|
|
12324
12313
|
highlightCurrentRow: true,
|
|
12325
12314
|
stripe: true,
|
|
12326
|
-
defaultExpandAll: true
|
|
12327
|
-
size: "mini"
|
|
12315
|
+
defaultExpandAll: true
|
|
12328
12316
|
}, this.$attrs, {
|
|
12329
12317
|
rowKey: this.rowKey,
|
|
12330
12318
|
data: this.data
|
|
@@ -12539,8 +12527,8 @@ var external_async_validator_default = /*#__PURE__*/__webpack_require__.n(extern
|
|
|
12539
12527
|
|
|
12540
12528
|
var table_editable_src_component = normalizeComponent(
|
|
12541
12529
|
components_table_editable_srcvue_type_script_lang_js,
|
|
12542
|
-
|
|
12543
|
-
|
|
12530
|
+
srcvue_type_template_id_315ab042_render,
|
|
12531
|
+
srcvue_type_template_id_315ab042_staticRenderFns,
|
|
12544
12532
|
false,
|
|
12545
12533
|
null,
|
|
12546
12534
|
null,
|
|
@@ -13114,8 +13102,8 @@ table_search_src.install = function (Vue) {
|
|
|
13114
13102
|
Vue.component(table_search_src.name, table_search_src);
|
|
13115
13103
|
};
|
|
13116
13104
|
/* harmony default export */ var table_search = (table_search_src);
|
|
13117
|
-
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table/src/table.vue?vue&type=template&id=
|
|
13118
|
-
var
|
|
13105
|
+
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table/src/table.vue?vue&type=template&id=240a9059
|
|
13106
|
+
var tablevue_type_template_id_240a9059_render = function render() {
|
|
13119
13107
|
var _vm = this,
|
|
13120
13108
|
_c = _vm._self._c
|
|
13121
13109
|
return _c("div", { staticClass: "table" }, [
|
|
@@ -13254,18 +13242,13 @@ var tablevue_type_template_id_7098845f_render = function render() {
|
|
|
13254
13242
|
},
|
|
13255
13243
|
},
|
|
13256
13244
|
[
|
|
13245
|
+
_c("el-button", { on: { click: _vm.resetColumn } }, [
|
|
13246
|
+
_vm._v("重置"),
|
|
13247
|
+
]),
|
|
13257
13248
|
_c(
|
|
13258
13249
|
"el-button",
|
|
13259
13250
|
{
|
|
13260
|
-
attrs: {
|
|
13261
|
-
on: { click: _vm.resetColumn },
|
|
13262
|
-
},
|
|
13263
|
-
[_vm._v("重置")]
|
|
13264
|
-
),
|
|
13265
|
-
_c(
|
|
13266
|
-
"el-button",
|
|
13267
|
-
{
|
|
13268
|
-
attrs: { type: "primary", size: "mini" },
|
|
13251
|
+
attrs: { type: "primary" },
|
|
13269
13252
|
on: { click: _vm.saveColumn },
|
|
13270
13253
|
},
|
|
13271
13254
|
[_vm._v("保存")]
|
|
@@ -13288,11 +13271,11 @@ var tablevue_type_template_id_7098845f_render = function render() {
|
|
|
13288
13271
|
: _vm._e(),
|
|
13289
13272
|
])
|
|
13290
13273
|
}
|
|
13291
|
-
var
|
|
13292
|
-
|
|
13274
|
+
var tablevue_type_template_id_240a9059_staticRenderFns = []
|
|
13275
|
+
tablevue_type_template_id_240a9059_render._withStripped = true
|
|
13293
13276
|
|
|
13294
13277
|
|
|
13295
|
-
// CONCATENATED MODULE: ./src/components/table/src/table.vue?vue&type=template&id=
|
|
13278
|
+
// CONCATENATED MODULE: ./src/components/table/src/table.vue?vue&type=template&id=240a9059
|
|
13296
13279
|
|
|
13297
13280
|
// EXTERNAL MODULE: external "element-ui/lib/pagination"
|
|
13298
13281
|
var pagination_ = __webpack_require__(62);
|
|
@@ -13335,8 +13318,7 @@ var pagination_default = /*#__PURE__*/__webpack_require__.n(pagination_);
|
|
|
13335
13318
|
computed: {
|
|
13336
13319
|
attrs: function attrs() {
|
|
13337
13320
|
return Object.assign({
|
|
13338
|
-
type: "primary"
|
|
13339
|
-
size: "mini"
|
|
13321
|
+
type: "primary"
|
|
13340
13322
|
}, this.$attrs);
|
|
13341
13323
|
}
|
|
13342
13324
|
},
|
|
@@ -13559,7 +13541,6 @@ var pagination_default = /*#__PURE__*/__webpack_require__.n(pagination_);
|
|
|
13559
13541
|
background: true,
|
|
13560
13542
|
// hideOnSinglePage: true,
|
|
13561
13543
|
align: "right",
|
|
13562
|
-
size: "mini",
|
|
13563
13544
|
layout: "total, prev, pager, next, slot"
|
|
13564
13545
|
}, this.pagination, {
|
|
13565
13546
|
total: this.total,
|
|
@@ -13707,8 +13688,8 @@ var pagination_default = /*#__PURE__*/__webpack_require__.n(pagination_);
|
|
|
13707
13688
|
|
|
13708
13689
|
var table_component = normalizeComponent(
|
|
13709
13690
|
src_tablevue_type_script_lang_js,
|
|
13710
|
-
|
|
13711
|
-
|
|
13691
|
+
tablevue_type_template_id_240a9059_render,
|
|
13692
|
+
tablevue_type_template_id_240a9059_staticRenderFns,
|
|
13712
13693
|
false,
|
|
13713
13694
|
null,
|
|
13714
13695
|
null,
|
package/lib/components/crud.js
CHANGED
|
@@ -1615,9 +1615,7 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
|
1615
1615
|
},
|
|
1616
1616
|
computed: {
|
|
1617
1617
|
attrs: function attrs() {
|
|
1618
|
-
return Object.assign({
|
|
1619
|
-
size: "mini"
|
|
1620
|
-
}, this.$attrs);
|
|
1618
|
+
return Object.assign({}, this.$attrs);
|
|
1621
1619
|
}
|
|
1622
1620
|
},
|
|
1623
1621
|
data: function data() {
|
|
@@ -2033,9 +2031,7 @@ var form_view_group = __webpack_require__(23);
|
|
|
2033
2031
|
},
|
|
2034
2032
|
computed: {
|
|
2035
2033
|
attrs: function attrs() {
|
|
2036
|
-
return Object.assign({
|
|
2037
|
-
size: "mini"
|
|
2038
|
-
}, this.$attrs);
|
|
2034
|
+
return Object.assign({}, this.$attrs);
|
|
2039
2035
|
}
|
|
2040
2036
|
},
|
|
2041
2037
|
data: function data() {
|
|
@@ -1129,9 +1129,7 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
|
1129
1129
|
},
|
|
1130
1130
|
computed: {
|
|
1131
1131
|
attrs: function attrs() {
|
|
1132
|
-
return Object.assign({
|
|
1133
|
-
size: "mini"
|
|
1134
|
-
}, this.$attrs);
|
|
1132
|
+
return Object.assign({}, this.$attrs);
|
|
1135
1133
|
}
|
|
1136
1134
|
},
|
|
1137
1135
|
data: function data() {
|
|
@@ -1117,9 +1117,7 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
1117
1117
|
},
|
|
1118
1118
|
computed: {
|
|
1119
1119
|
attrs: function attrs() {
|
|
1120
|
-
return Object.assign({
|
|
1121
|
-
size: "mini"
|
|
1122
|
-
}, this.$attrs);
|
|
1120
|
+
return Object.assign({}, this.$attrs);
|
|
1123
1121
|
}
|
|
1124
1122
|
},
|
|
1125
1123
|
data: function data() {
|
|
@@ -3869,8 +3869,6 @@ var upload_process_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3869
3869
|
props: {
|
|
3870
3870
|
control: String,
|
|
3871
3871
|
render: Function,
|
|
3872
|
-
inputClass: String,
|
|
3873
|
-
inputStyle: [String, Object],
|
|
3874
3872
|
slots: {
|
|
3875
3873
|
type: Object
|
|
3876
3874
|
}
|
|
@@ -3881,10 +3879,7 @@ var upload_process_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3881
3879
|
return this.render.call(this, h, this.$attrs);
|
|
3882
3880
|
}
|
|
3883
3881
|
var param = {
|
|
3884
|
-
attrs: Object.assign({
|
|
3885
|
-
class: this.inputClass,
|
|
3886
|
-
style: this.inputStyle
|
|
3887
|
-
}, this.$attrs),
|
|
3882
|
+
attrs: Object.assign({}, this.$attrs),
|
|
3888
3883
|
on: this.$listeners,
|
|
3889
3884
|
slots: this.$slots,
|
|
3890
3885
|
scopedSlots: this.$scopedSlots
|
|
@@ -160,6 +160,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
160
160
|
size: String,
|
|
161
161
|
slots: Object,
|
|
162
162
|
rules: [Object, Array],
|
|
163
|
+
inputClass: String,
|
|
164
|
+
inputStyle: [String, Object],
|
|
163
165
|
required: Boolean,
|
|
164
166
|
actions: Array,
|
|
165
167
|
on: Object,
|
|
@@ -354,7 +356,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
354
356
|
"size": this.size
|
|
355
357
|
}
|
|
356
358
|
}, [h("div", {
|
|
357
|
-
"class": "form-input_wrap"
|
|
359
|
+
"class": ["form-input_wrap", this.inputClass],
|
|
360
|
+
"style": this.inputStyle
|
|
358
361
|
}, [typeof ((_this$slots = this.slots) == null ? void 0 : _this$slots.prependItem) === "function" ? (_this$slots2 = this.slots) == null || (_this$slots2 = _this$slots2.prependItem) == null ? void 0 : _this$slots2.call(this, h, {
|
|
359
362
|
form: this.form,
|
|
360
363
|
formModel: this.form.formModel,
|
|
@@ -810,9 +810,7 @@ var form_view_group = __webpack_require__(23);
|
|
|
810
810
|
},
|
|
811
811
|
computed: {
|
|
812
812
|
attrs: function attrs() {
|
|
813
|
-
return Object.assign({
|
|
814
|
-
size: "mini"
|
|
815
|
-
}, this.$attrs);
|
|
813
|
+
return Object.assign({}, this.$attrs);
|
|
816
814
|
}
|
|
817
815
|
},
|
|
818
816
|
data: function data() {
|
|
@@ -463,8 +463,7 @@ var radio_default = /*#__PURE__*/__webpack_require__.n(radio_);
|
|
|
463
463
|
return h("el-radio", {
|
|
464
464
|
"attrs": {
|
|
465
465
|
"value": _this.table.rowId,
|
|
466
|
-
"label": scoped.row[key]
|
|
467
|
-
"size": "mini"
|
|
466
|
+
"label": scoped.row[key]
|
|
468
467
|
}
|
|
469
468
|
}, [h("i")]);
|
|
470
469
|
};
|
|
@@ -813,7 +812,6 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
813
812
|
return Object.assign({
|
|
814
813
|
control: "Link",
|
|
815
814
|
label: "更多",
|
|
816
|
-
size: "mini",
|
|
817
815
|
plain: true,
|
|
818
816
|
type: "primary",
|
|
819
817
|
underline: false
|
|
@@ -991,7 +989,6 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
991
989
|
attrs: function attrs() {
|
|
992
990
|
return Object.assign({
|
|
993
991
|
type: "primary",
|
|
994
|
-
size: "mini",
|
|
995
992
|
plain: true
|
|
996
993
|
}, this.$attrs);
|
|
997
994
|
}
|
|
@@ -248,8 +248,8 @@ module.exports = require("async-validator");
|
|
|
248
248
|
// ESM COMPAT FLAG
|
|
249
249
|
__webpack_require__.r(__webpack_exports__);
|
|
250
250
|
|
|
251
|
-
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table-editable/src/index.vue?vue&type=template&id=
|
|
252
|
-
var
|
|
251
|
+
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table-editable/src/index.vue?vue&type=template&id=315ab042
|
|
252
|
+
var srcvue_type_template_id_315ab042_render = function render() {
|
|
253
253
|
var _vm = this,
|
|
254
254
|
_c = _vm._self._c
|
|
255
255
|
return _c(
|
|
@@ -292,10 +292,10 @@ var srcvue_type_template_id_6b45ef10_render = function render() {
|
|
|
292
292
|
)
|
|
293
293
|
}
|
|
294
294
|
var staticRenderFns = []
|
|
295
|
-
|
|
295
|
+
srcvue_type_template_id_315ab042_render._withStripped = true
|
|
296
296
|
|
|
297
297
|
|
|
298
|
-
// CONCATENATED MODULE: ./src/components/table-editable/src/index.vue?vue&type=template&id=
|
|
298
|
+
// CONCATENATED MODULE: ./src/components/table-editable/src/index.vue?vue&type=template&id=315ab042
|
|
299
299
|
|
|
300
300
|
// EXTERNAL MODULE: external "element-ui/lib/table"
|
|
301
301
|
var table_ = __webpack_require__(32);
|
|
@@ -764,8 +764,7 @@ var index_ = __webpack_require__(18);
|
|
|
764
764
|
return Object.assign({
|
|
765
765
|
highlightCurrentRow: true,
|
|
766
766
|
stripe: true,
|
|
767
|
-
defaultExpandAll: true
|
|
768
|
-
size: "mini"
|
|
767
|
+
defaultExpandAll: true
|
|
769
768
|
}, this.$attrs, {
|
|
770
769
|
rowKey: this.rowKey,
|
|
771
770
|
data: this.data
|
|
@@ -983,7 +982,7 @@ var componentNormalizer = __webpack_require__(1);
|
|
|
983
982
|
|
|
984
983
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
985
984
|
table_editable_srcvue_type_script_lang_js,
|
|
986
|
-
|
|
985
|
+
srcvue_type_template_id_315ab042_render,
|
|
987
986
|
staticRenderFns,
|
|
988
987
|
false,
|
|
989
988
|
null,
|
|
@@ -1615,9 +1615,7 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
|
1615
1615
|
},
|
|
1616
1616
|
computed: {
|
|
1617
1617
|
attrs: function attrs() {
|
|
1618
|
-
return Object.assign({
|
|
1619
|
-
size: "mini"
|
|
1620
|
-
}, this.$attrs);
|
|
1618
|
+
return Object.assign({}, this.$attrs);
|
|
1621
1619
|
}
|
|
1622
1620
|
},
|
|
1623
1621
|
data: function data() {
|
|
@@ -2033,9 +2031,7 @@ var form_view_group = __webpack_require__(23);
|
|
|
2033
2031
|
},
|
|
2034
2032
|
computed: {
|
|
2035
2033
|
attrs: function attrs() {
|
|
2036
|
-
return Object.assign({
|
|
2037
|
-
size: "mini"
|
|
2038
|
-
}, this.$attrs);
|
|
2034
|
+
return Object.assign({}, this.$attrs);
|
|
2039
2035
|
}
|
|
2040
2036
|
},
|
|
2041
2037
|
data: function data() {
|
package/lib/components/table.js
CHANGED
|
@@ -269,8 +269,8 @@ module.exports = require("element-ui/lib/pagination");
|
|
|
269
269
|
// ESM COMPAT FLAG
|
|
270
270
|
__webpack_require__.r(__webpack_exports__);
|
|
271
271
|
|
|
272
|
-
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table/src/table.vue?vue&type=template&id=
|
|
273
|
-
var
|
|
272
|
+
// CONCATENATED MODULE: ./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib/loaders/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@15.11.1_css-loader@2.1.1_lodash@4.17.21_vue-template-compiler@2.7.16_webpack@4.47.0/node_modules/vue-loader/lib??vue-loader-options!./src/components/table/src/table.vue?vue&type=template&id=240a9059
|
|
273
|
+
var tablevue_type_template_id_240a9059_render = function render() {
|
|
274
274
|
var _vm = this,
|
|
275
275
|
_c = _vm._self._c
|
|
276
276
|
return _c("div", { staticClass: "table" }, [
|
|
@@ -409,18 +409,13 @@ var tablevue_type_template_id_7098845f_render = function render() {
|
|
|
409
409
|
},
|
|
410
410
|
},
|
|
411
411
|
[
|
|
412
|
+
_c("el-button", { on: { click: _vm.resetColumn } }, [
|
|
413
|
+
_vm._v("重置"),
|
|
414
|
+
]),
|
|
412
415
|
_c(
|
|
413
416
|
"el-button",
|
|
414
417
|
{
|
|
415
|
-
attrs: {
|
|
416
|
-
on: { click: _vm.resetColumn },
|
|
417
|
-
},
|
|
418
|
-
[_vm._v("重置")]
|
|
419
|
-
),
|
|
420
|
-
_c(
|
|
421
|
-
"el-button",
|
|
422
|
-
{
|
|
423
|
-
attrs: { type: "primary", size: "mini" },
|
|
418
|
+
attrs: { type: "primary" },
|
|
424
419
|
on: { click: _vm.saveColumn },
|
|
425
420
|
},
|
|
426
421
|
[_vm._v("保存")]
|
|
@@ -444,10 +439,10 @@ var tablevue_type_template_id_7098845f_render = function render() {
|
|
|
444
439
|
])
|
|
445
440
|
}
|
|
446
441
|
var staticRenderFns = []
|
|
447
|
-
|
|
442
|
+
tablevue_type_template_id_240a9059_render._withStripped = true
|
|
448
443
|
|
|
449
444
|
|
|
450
|
-
// CONCATENATED MODULE: ./src/components/table/src/table.vue?vue&type=template&id=
|
|
445
|
+
// CONCATENATED MODULE: ./src/components/table/src/table.vue?vue&type=template&id=240a9059
|
|
451
446
|
|
|
452
447
|
// EXTERNAL MODULE: external "@vue/babel-helper-vue-jsx-merge-props"
|
|
453
448
|
var babel_helper_vue_jsx_merge_props_ = __webpack_require__(0);
|
|
@@ -523,8 +518,7 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
523
518
|
computed: {
|
|
524
519
|
attrs: function attrs() {
|
|
525
520
|
return Object.assign({
|
|
526
|
-
type: "primary"
|
|
527
|
-
size: "mini"
|
|
521
|
+
type: "primary"
|
|
528
522
|
}, this.$attrs);
|
|
529
523
|
}
|
|
530
524
|
},
|
|
@@ -747,7 +741,6 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
747
741
|
background: true,
|
|
748
742
|
// hideOnSinglePage: true,
|
|
749
743
|
align: "right",
|
|
750
|
-
size: "mini",
|
|
751
744
|
layout: "total, prev, pager, next, slot"
|
|
752
745
|
}, this.pagination, {
|
|
753
746
|
total: this.total,
|
|
@@ -898,7 +891,7 @@ var componentNormalizer = __webpack_require__(1);
|
|
|
898
891
|
|
|
899
892
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
900
893
|
src_tablevue_type_script_lang_js,
|
|
901
|
-
|
|
894
|
+
tablevue_type_template_id_240a9059_render,
|
|
902
895
|
staticRenderFns,
|
|
903
896
|
false,
|
|
904
897
|
null,
|