dld-vue-ui 0.2.1 → 0.3.0
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/README.md +23 -3
- package/dist/dld-vue-ui.js +352 -251
- package/dist/dld-vue-ui.umd.cjs +1 -1
- package/dist/packages/UpLoadFile/index.vue.d.ts +11 -0
- package/dist/packages/UpLoadFiles/index.vue.d.ts +51 -0
- package/dist/packages/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/dld-vue-ui.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { h as
|
|
2
|
-
const
|
|
1
|
+
import { h as Z, openBlock as r, createElementBlock as z, normalizeStyle as y, renderSlot as x, defineComponent as M, createBlock as p, unref as o, withCtx as m, createElementVNode as g, ref as U, onMounted as W, resolveComponent as v, createVNode as C, createTextVNode as k, withDirectives as ee, vShow as te, toDisplayString as B, Fragment as L, renderList as D, useSlots as I, createCommentVNode as c, reactive as ae, watch as T, normalizeClass as P } from "vue";
|
|
2
|
+
const ne = {
|
|
3
3
|
name: "splitpanes",
|
|
4
4
|
emits: ["ready", "resize", "resized", "pane-click", "pane-maximize", "pane-add", "pane-remove", "splitter-click"],
|
|
5
5
|
props: {
|
|
@@ -98,16 +98,16 @@ const te = {
|
|
|
98
98
|
};
|
|
99
99
|
const n = 0 + (this.pushOtherPanes ? 0 : i.prevPanesSize), s = 100 - (this.pushOtherPanes ? 0 : i.nextPanesSize), l = Math.max(Math.min(this.getCurrentDragPercentage(e), s), n);
|
|
100
100
|
let d = [a, a + 1], f = this.panes[d[0]] || null, _ = this.panes[d[1]] || null;
|
|
101
|
-
const
|
|
102
|
-
if (
|
|
103
|
-
|
|
101
|
+
const w = f.max < 100 && l >= f.max + i.prevPanesSize, F = _.max < 100 && l <= 100 - (_.max + this.sumNextPanesSize(a + 1));
|
|
102
|
+
if (w || F) {
|
|
103
|
+
w ? (f.size = f.max, _.size = Math.max(100 - f.max - i.prevPanesSize - i.nextPanesSize, 0)) : (f.size = Math.max(100 - _.max - i.prevPanesSize - this.sumNextPanesSize(a + 1), 0), _.size = _.max);
|
|
104
104
|
return;
|
|
105
105
|
}
|
|
106
106
|
if (this.pushOtherPanes) {
|
|
107
|
-
const
|
|
108
|
-
if (!
|
|
107
|
+
const b = this.doPushOtherPanes(i, l);
|
|
108
|
+
if (!b)
|
|
109
109
|
return;
|
|
110
|
-
({ sums: i, panesToResize: d } =
|
|
110
|
+
({ sums: i, panesToResize: d } = b), f = this.panes[d[0]] || null, _ = this.panes[d[1]] || null;
|
|
111
111
|
}
|
|
112
112
|
f !== null && (f.size = Math.min(Math.max(l - i.prevPanesSize - i.prevReachedMinPanes, f.min), f.max)), _ !== null && (_.size = Math.min(Math.max(100 - l - i.nextPanesSize - i.nextReachedMinPanes, _.min), _.max));
|
|
113
113
|
},
|
|
@@ -261,7 +261,7 @@ const te = {
|
|
|
261
261
|
this.container = this.$refs.container, this.checkSplitpanesNodes(), this.redoSplitters(), this.resetPaneSizes(), this.$emit("ready"), this.ready = !0;
|
|
262
262
|
},
|
|
263
263
|
render() {
|
|
264
|
-
return
|
|
264
|
+
return Z(
|
|
265
265
|
"div",
|
|
266
266
|
{
|
|
267
267
|
ref: "container",
|
|
@@ -276,12 +276,12 @@ const te = {
|
|
|
276
276
|
this.$slots.default()
|
|
277
277
|
);
|
|
278
278
|
}
|
|
279
|
-
},
|
|
279
|
+
}, ie = (e, a) => {
|
|
280
280
|
const i = e.__vccOpts || e;
|
|
281
281
|
for (const [n, s] of a)
|
|
282
282
|
i[n] = s;
|
|
283
283
|
return i;
|
|
284
|
-
},
|
|
284
|
+
}, se = {
|
|
285
285
|
name: "pane",
|
|
286
286
|
inject: ["requestUpdate", "onPaneAdd", "onPaneRemove", "onPaneClick"],
|
|
287
287
|
props: {
|
|
@@ -326,169 +326,183 @@ const te = {
|
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
328
|
};
|
|
329
|
-
function
|
|
330
|
-
return r(),
|
|
329
|
+
function le(e, a, i, n, s, l) {
|
|
330
|
+
return r(), z("div", {
|
|
331
331
|
class: "splitpanes__pane",
|
|
332
332
|
onClick: a[0] || (a[0] = (d) => l.onPaneClick(d, e._.uid)),
|
|
333
|
-
style:
|
|
333
|
+
style: y(e.style)
|
|
334
334
|
}, [
|
|
335
|
-
|
|
335
|
+
x(e.$slots, "default")
|
|
336
336
|
], 4);
|
|
337
337
|
}
|
|
338
|
-
const
|
|
339
|
-
const
|
|
338
|
+
const oe = /* @__PURE__ */ ie(se, [["render", le]]);
|
|
339
|
+
const re = /* @__PURE__ */ M({
|
|
340
340
|
__name: "index",
|
|
341
341
|
props: {
|
|
342
342
|
styles: { type: Object, required: !1, default: () => ({ width: "100%", height: "100%" }) },
|
|
343
343
|
horizontal: { type: Boolean, required: !1, default: !1 }
|
|
344
344
|
},
|
|
345
345
|
setup(e) {
|
|
346
|
-
return (a, i) => (r(), p(o(
|
|
346
|
+
return (a, i) => (r(), p(o(ne), {
|
|
347
347
|
horizontal: e.horizontal,
|
|
348
|
-
style:
|
|
348
|
+
style: y(e.styles),
|
|
349
349
|
class: "splitpanes"
|
|
350
350
|
}, {
|
|
351
351
|
default: m(() => [
|
|
352
|
-
|
|
352
|
+
x(a.$slots, "default", {}, void 0, !0)
|
|
353
353
|
]),
|
|
354
354
|
_: 3
|
|
355
355
|
}, 8, ["horizontal", "style"]));
|
|
356
356
|
}
|
|
357
357
|
});
|
|
358
|
-
const
|
|
358
|
+
const V = (e, a) => {
|
|
359
359
|
const i = e.__vccOpts || e;
|
|
360
360
|
for (const [n, s] of a)
|
|
361
361
|
i[n] = s;
|
|
362
362
|
return i;
|
|
363
|
-
},
|
|
363
|
+
}, de = /* @__PURE__ */ V(re, [["__scopeId", "data-v-4226b5d2"], ["__file", "D:/Code/front/dld-vue-ui/src/packages/SplitPanes/index.vue"]]), ue = /* @__PURE__ */ M({
|
|
364
364
|
__name: "pane",
|
|
365
365
|
props: {
|
|
366
366
|
styles: { type: Object, required: !0, default: () => ({ background: "#ececec" }) }
|
|
367
367
|
},
|
|
368
368
|
setup(e) {
|
|
369
|
-
return (a, i) => (r(), p(o(
|
|
370
|
-
style:
|
|
369
|
+
return (a, i) => (r(), p(o(oe), {
|
|
370
|
+
style: y(e.styles)
|
|
371
371
|
}, {
|
|
372
372
|
default: m(() => [
|
|
373
|
-
|
|
373
|
+
x(a.$slots, "default")
|
|
374
374
|
]),
|
|
375
375
|
_: 3
|
|
376
376
|
}, 8, ["style"]));
|
|
377
377
|
}
|
|
378
|
-
}),
|
|
378
|
+
}), ce = /* @__PURE__ */ V(ue, [["__file", "D:/Code/front/dld-vue-ui/src/packages/SplitPanes/pane.vue"]]);
|
|
379
379
|
/*! Element Plus Icons Vue v2.0.10 */
|
|
380
|
-
var
|
|
380
|
+
var E = (e, a) => {
|
|
381
381
|
let i = e.__vccOpts || e;
|
|
382
382
|
for (let [n, s] of a)
|
|
383
383
|
i[n] = s;
|
|
384
384
|
return i;
|
|
385
|
-
},
|
|
385
|
+
}, pe = {
|
|
386
386
|
name: "CircleClose"
|
|
387
|
-
},
|
|
387
|
+
}, he = {
|
|
388
388
|
viewBox: "0 0 1024 1024",
|
|
389
389
|
xmlns: "http://www.w3.org/2000/svg"
|
|
390
|
-
},
|
|
390
|
+
}, me = /* @__PURE__ */ g("path", {
|
|
391
391
|
fill: "currentColor",
|
|
392
392
|
d: "m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"
|
|
393
|
-
}, null, -1),
|
|
393
|
+
}, null, -1), fe = /* @__PURE__ */ g("path", {
|
|
394
394
|
fill: "currentColor",
|
|
395
395
|
d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"
|
|
396
|
-
}, null, -1),
|
|
397
|
-
|
|
398
|
-
|
|
396
|
+
}, null, -1), ve = [
|
|
397
|
+
me,
|
|
398
|
+
fe
|
|
399
399
|
];
|
|
400
|
-
function
|
|
401
|
-
return r(),
|
|
400
|
+
function _e(e, a, i, n, s, l) {
|
|
401
|
+
return r(), z("svg", he, ve);
|
|
402
402
|
}
|
|
403
|
-
var
|
|
403
|
+
var ze = /* @__PURE__ */ E(pe, [["render", _e], ["__file", "circle-close.vue"]]), ge = {
|
|
404
|
+
name: "Close"
|
|
405
|
+
}, ye = {
|
|
406
|
+
viewBox: "0 0 1024 1024",
|
|
407
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
408
|
+
}, xe = /* @__PURE__ */ g("path", {
|
|
409
|
+
fill: "currentColor",
|
|
410
|
+
d: "M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"
|
|
411
|
+
}, null, -1), we = [
|
|
412
|
+
xe
|
|
413
|
+
];
|
|
414
|
+
function Se(e, a, i, n, s, l) {
|
|
415
|
+
return r(), z("svg", ye, we);
|
|
416
|
+
}
|
|
417
|
+
var be = /* @__PURE__ */ E(ge, [["render", Se], ["__file", "close.vue"]]), Pe = {
|
|
404
418
|
name: "DeleteFilled"
|
|
405
|
-
},
|
|
419
|
+
}, Ce = {
|
|
406
420
|
viewBox: "0 0 1024 1024",
|
|
407
421
|
xmlns: "http://www.w3.org/2000/svg"
|
|
408
|
-
},
|
|
422
|
+
}, Fe = /* @__PURE__ */ g("path", {
|
|
409
423
|
fill: "currentColor",
|
|
410
424
|
d: "M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64h256zm64 0h192v-64H416v64zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32H192zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32zm192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32z"
|
|
411
|
-
}, null, -1),
|
|
412
|
-
|
|
425
|
+
}, null, -1), ke = [
|
|
426
|
+
Fe
|
|
413
427
|
];
|
|
414
|
-
function
|
|
415
|
-
return r(),
|
|
428
|
+
function Ee(e, a, i, n, s, l) {
|
|
429
|
+
return r(), z("svg", Ce, ke);
|
|
416
430
|
}
|
|
417
|
-
var
|
|
431
|
+
var $e = /* @__PURE__ */ E(Pe, [["render", Ee], ["__file", "delete-filled.vue"]]), Me = {
|
|
418
432
|
name: "Delete"
|
|
419
|
-
},
|
|
433
|
+
}, Ve = {
|
|
420
434
|
viewBox: "0 0 1024 1024",
|
|
421
435
|
xmlns: "http://www.w3.org/2000/svg"
|
|
422
|
-
},
|
|
436
|
+
}, Be = /* @__PURE__ */ g("path", {
|
|
423
437
|
fill: "currentColor",
|
|
424
438
|
d: "M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z"
|
|
425
|
-
}, null, -1),
|
|
426
|
-
|
|
439
|
+
}, null, -1), qe = [
|
|
440
|
+
Be
|
|
427
441
|
];
|
|
428
|
-
function
|
|
429
|
-
return r(),
|
|
442
|
+
function Ne(e, a, i, n, s, l) {
|
|
443
|
+
return r(), z("svg", Ve, qe);
|
|
430
444
|
}
|
|
431
|
-
var
|
|
445
|
+
var Le = /* @__PURE__ */ E(Me, [["render", Ne], ["__file", "delete.vue"]]), Ue = {
|
|
432
446
|
name: "Edit"
|
|
433
|
-
},
|
|
447
|
+
}, De = {
|
|
434
448
|
viewBox: "0 0 1024 1024",
|
|
435
449
|
xmlns: "http://www.w3.org/2000/svg"
|
|
436
|
-
},
|
|
450
|
+
}, Re = /* @__PURE__ */ g("path", {
|
|
437
451
|
fill: "currentColor",
|
|
438
452
|
d: "M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640V512z"
|
|
439
|
-
}, null, -1),
|
|
453
|
+
}, null, -1), Te = /* @__PURE__ */ g("path", {
|
|
440
454
|
fill: "currentColor",
|
|
441
455
|
d: "m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"
|
|
442
|
-
}, null, -1),
|
|
443
|
-
|
|
444
|
-
|
|
456
|
+
}, null, -1), We = [
|
|
457
|
+
Re,
|
|
458
|
+
Te
|
|
445
459
|
];
|
|
446
|
-
function
|
|
447
|
-
return r(),
|
|
460
|
+
function Ie(e, a, i, n, s, l) {
|
|
461
|
+
return r(), z("svg", De, We);
|
|
448
462
|
}
|
|
449
|
-
var
|
|
463
|
+
var He = /* @__PURE__ */ E(Ue, [["render", Ie], ["__file", "edit.vue"]]), Oe = {
|
|
450
464
|
name: "FolderOpened"
|
|
451
|
-
},
|
|
465
|
+
}, Ae = {
|
|
452
466
|
viewBox: "0 0 1024 1024",
|
|
453
467
|
xmlns: "http://www.w3.org/2000/svg"
|
|
454
|
-
},
|
|
468
|
+
}, je = /* @__PURE__ */ g("path", {
|
|
455
469
|
fill: "currentColor",
|
|
456
470
|
d: "M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384H832zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896z"
|
|
457
|
-
}, null, -1),
|
|
458
|
-
|
|
471
|
+
}, null, -1), Ge = [
|
|
472
|
+
je
|
|
459
473
|
];
|
|
460
|
-
function
|
|
461
|
-
return r(),
|
|
474
|
+
function Ye(e, a, i, n, s, l) {
|
|
475
|
+
return r(), z("svg", Ae, Ge);
|
|
462
476
|
}
|
|
463
|
-
var
|
|
477
|
+
var H = /* @__PURE__ */ E(Oe, [["render", Ye], ["__file", "folder-opened.vue"]]), Je = {
|
|
464
478
|
name: "Search"
|
|
465
|
-
},
|
|
479
|
+
}, Xe = {
|
|
466
480
|
viewBox: "0 0 1024 1024",
|
|
467
481
|
xmlns: "http://www.w3.org/2000/svg"
|
|
468
|
-
},
|
|
482
|
+
}, Ke = /* @__PURE__ */ g("path", {
|
|
469
483
|
fill: "currentColor",
|
|
470
484
|
d: "m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704z"
|
|
471
|
-
}, null, -1),
|
|
472
|
-
|
|
485
|
+
}, null, -1), Qe = [
|
|
486
|
+
Ke
|
|
473
487
|
];
|
|
474
|
-
function
|
|
475
|
-
return r(),
|
|
488
|
+
function Ze(e, a, i, n, s, l) {
|
|
489
|
+
return r(), z("svg", Xe, Qe);
|
|
476
490
|
}
|
|
477
|
-
var
|
|
491
|
+
var et = /* @__PURE__ */ E(Je, [["render", Ze], ["__file", "search.vue"]]), tt = {
|
|
478
492
|
name: "Upload"
|
|
479
|
-
},
|
|
493
|
+
}, at = {
|
|
480
494
|
viewBox: "0 0 1024 1024",
|
|
481
495
|
xmlns: "http://www.w3.org/2000/svg"
|
|
482
|
-
},
|
|
496
|
+
}, nt = /* @__PURE__ */ g("path", {
|
|
483
497
|
fill: "currentColor",
|
|
484
498
|
d: "M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248L544 253.696z"
|
|
485
|
-
}, null, -1),
|
|
486
|
-
|
|
499
|
+
}, null, -1), it = [
|
|
500
|
+
nt
|
|
487
501
|
];
|
|
488
|
-
function
|
|
489
|
-
return r(),
|
|
502
|
+
function st(e, a, i, n, s, l) {
|
|
503
|
+
return r(), z("svg", at, it);
|
|
490
504
|
}
|
|
491
|
-
var
|
|
505
|
+
var O = /* @__PURE__ */ E(tt, [["render", st], ["__file", "upload.vue"]]), lt = function() {
|
|
492
506
|
function e(a) {
|
|
493
507
|
if (!a)
|
|
494
508
|
throw new TypeError("Invalid argument; `value` has no value.");
|
|
@@ -520,18 +534,19 @@ var Ze = /* @__PURE__ */ P(Ye, [["render", Qe], ["__file", "upload.vue"]]), et =
|
|
|
520
534
|
value: this.value
|
|
521
535
|
};
|
|
522
536
|
}, e.validator = new RegExp("^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$", "i"), e.EMPTY = "00000000-0000-0000-0000-000000000000", e;
|
|
523
|
-
}(),
|
|
524
|
-
const
|
|
537
|
+
}(), ot = lt;
|
|
538
|
+
const rt = { style: {} }, dt = ["id", "accept"], ut = { class: "filename" }, ct = /* @__PURE__ */ M({
|
|
525
539
|
__name: "index",
|
|
526
540
|
props: {
|
|
527
541
|
size: { type: String, required: !1, default: "default" },
|
|
528
542
|
name: { type: String, required: !1, default: "\u4E0A\u4F20\u6587\u4EF6" },
|
|
529
|
-
icon: { type: null, required: !1, default:
|
|
530
|
-
type: { type: null, required: !1, default: "success" }
|
|
543
|
+
icon: { type: null, required: !1, default: O },
|
|
544
|
+
type: { type: null, required: !1, default: "success" },
|
|
545
|
+
accept: { type: String, required: !0, default: "*" }
|
|
531
546
|
},
|
|
532
547
|
emits: ["upload"],
|
|
533
548
|
setup(e, { expose: a, emit: i }) {
|
|
534
|
-
let n =
|
|
549
|
+
let n = ot.create().toString(), s, l = U("");
|
|
535
550
|
function d() {
|
|
536
551
|
s.click();
|
|
537
552
|
}
|
|
@@ -541,37 +556,38 @@ const at = { style: {} }, nt = ["id"], it = { class: "filename" }, st = /* @__PU
|
|
|
541
556
|
function _() {
|
|
542
557
|
s.files !== null && i("upload", s.files[0]);
|
|
543
558
|
}
|
|
544
|
-
function
|
|
559
|
+
function w() {
|
|
545
560
|
s.value = "", l.value = "";
|
|
546
561
|
}
|
|
547
|
-
return
|
|
562
|
+
return W(() => {
|
|
548
563
|
s = document.getElementById(n);
|
|
549
564
|
}), a({
|
|
550
|
-
Clear:
|
|
551
|
-
}), (
|
|
552
|
-
const
|
|
553
|
-
return r(),
|
|
554
|
-
|
|
565
|
+
Clear: w
|
|
566
|
+
}), (F, b) => {
|
|
567
|
+
const u = v("el-button");
|
|
568
|
+
return r(), z("div", rt, [
|
|
569
|
+
C(u, {
|
|
555
570
|
type: e.type,
|
|
556
|
-
icon: o(
|
|
571
|
+
icon: o(H),
|
|
557
572
|
size: e.size,
|
|
558
573
|
class: "btn",
|
|
559
574
|
onClick: d
|
|
560
575
|
}, {
|
|
561
576
|
default: m(() => [
|
|
562
|
-
|
|
577
|
+
k("\u9009\u62E9\u6587\u4EF6")
|
|
563
578
|
]),
|
|
564
579
|
_: 1
|
|
565
580
|
}, 8, ["type", "icon", "size"]),
|
|
566
|
-
|
|
581
|
+
ee(g("input", {
|
|
567
582
|
type: "file",
|
|
568
583
|
id: o(n),
|
|
569
|
-
onChange: f
|
|
570
|
-
|
|
571
|
-
|
|
584
|
+
onChange: f,
|
|
585
|
+
accept: e.accept
|
|
586
|
+
}, null, 40, dt), [
|
|
587
|
+
[te, !1]
|
|
572
588
|
]),
|
|
573
|
-
g("span",
|
|
574
|
-
|
|
589
|
+
g("span", ut, B(o(l)), 1),
|
|
590
|
+
C(u, {
|
|
575
591
|
type: e.type,
|
|
576
592
|
icon: e.icon,
|
|
577
593
|
size: e.size,
|
|
@@ -581,7 +597,7 @@ const at = { style: {} }, nt = ["id"], it = { class: "filename" }, st = /* @__PU
|
|
|
581
597
|
onClick: _
|
|
582
598
|
}, {
|
|
583
599
|
default: m(() => [
|
|
584
|
-
|
|
600
|
+
k(B(e.name), 1)
|
|
585
601
|
]),
|
|
586
602
|
_: 1
|
|
587
603
|
}, 8, ["type", "icon", "size", "disabled", "title"])
|
|
@@ -589,7 +605,82 @@ const at = { style: {} }, nt = ["id"], it = { class: "filename" }, st = /* @__PU
|
|
|
589
605
|
};
|
|
590
606
|
}
|
|
591
607
|
});
|
|
592
|
-
const
|
|
608
|
+
const pt = /* @__PURE__ */ V(ct, [["__scopeId", "data-v-83b9cdd7"], ["__file", "D:/Code/front/dld-vue-ui/src/packages/UpLoadFile/index.vue"]]), ht = ["accept"], mt = { class: "filename" }, ft = { class: "content" }, vt = /* @__PURE__ */ M({
|
|
609
|
+
__name: "index",
|
|
610
|
+
props: {
|
|
611
|
+
size: { type: String, required: !0, default: "default" },
|
|
612
|
+
accept: { type: String, required: !0, default: "*" }
|
|
613
|
+
},
|
|
614
|
+
emits: ["upload"],
|
|
615
|
+
setup(e, { emit: a }) {
|
|
616
|
+
const i = e, n = U(), s = U([]);
|
|
617
|
+
function l() {
|
|
618
|
+
var w;
|
|
619
|
+
(w = n.value) == null || w.click();
|
|
620
|
+
}
|
|
621
|
+
function d() {
|
|
622
|
+
var w, F, b;
|
|
623
|
+
if (s.value = [], (w = n.value) != null && w.files)
|
|
624
|
+
for (let u = 0; u < ((b = (F = n.value) == null ? void 0 : F.files) == null ? void 0 : b.length); u++)
|
|
625
|
+
s.value[u] = n.value.files[u];
|
|
626
|
+
else
|
|
627
|
+
s.value = [];
|
|
628
|
+
}
|
|
629
|
+
function f(w) {
|
|
630
|
+
s.value.splice(w, 1);
|
|
631
|
+
}
|
|
632
|
+
function _() {
|
|
633
|
+
a("upload", s.value);
|
|
634
|
+
}
|
|
635
|
+
return (w, F) => {
|
|
636
|
+
const b = v("el-button");
|
|
637
|
+
return r(), z("div", null, [
|
|
638
|
+
g("input", {
|
|
639
|
+
type: "file",
|
|
640
|
+
ref_key: "files",
|
|
641
|
+
ref: n,
|
|
642
|
+
multiple: "",
|
|
643
|
+
style: { display: "none" },
|
|
644
|
+
onChange: d,
|
|
645
|
+
accept: i.accept
|
|
646
|
+
}, null, 40, ht),
|
|
647
|
+
C(b, {
|
|
648
|
+
type: "success",
|
|
649
|
+
size: i.size,
|
|
650
|
+
icon: o(H),
|
|
651
|
+
onClick: l
|
|
652
|
+
}, {
|
|
653
|
+
default: m(() => [
|
|
654
|
+
k("\u9009\u62E9\u6587\u4EF6")
|
|
655
|
+
]),
|
|
656
|
+
_: 1
|
|
657
|
+
}, 8, ["size", "icon"]),
|
|
658
|
+
C(b, {
|
|
659
|
+
type: "success",
|
|
660
|
+
size: i.size,
|
|
661
|
+
icon: o(O),
|
|
662
|
+
onClick: _
|
|
663
|
+
}, {
|
|
664
|
+
default: m(() => [
|
|
665
|
+
k("\u4E0A\u4F20\u6587\u4EF6")
|
|
666
|
+
]),
|
|
667
|
+
_: 1
|
|
668
|
+
}, 8, ["size", "icon"]),
|
|
669
|
+
(r(!0), z(L, null, D(s.value, (u, S) => (r(), z("p", mt, [
|
|
670
|
+
g("span", ft, B(u.name), 1),
|
|
671
|
+
C(b, {
|
|
672
|
+
size: "small",
|
|
673
|
+
icon: o(be),
|
|
674
|
+
class: "operation",
|
|
675
|
+
link: "",
|
|
676
|
+
onClick: ($) => f(S)
|
|
677
|
+
}, null, 8, ["icon", "onClick"])
|
|
678
|
+
]))), 256))
|
|
679
|
+
]);
|
|
680
|
+
};
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
const _t = /* @__PURE__ */ V(vt, [["__scopeId", "data-v-50d3310f"], ["__file", "D:/Code/front/dld-vue-ui/src/packages/UpLoadFiles/index.vue"]]), zt = /* @__PURE__ */ M({
|
|
593
684
|
__name: "index",
|
|
594
685
|
props: {
|
|
595
686
|
asideWidth: { type: Number, required: !1, default: 220 },
|
|
@@ -597,7 +688,7 @@ const lt = /* @__PURE__ */ $(st, [["__scopeId", "data-v-83b9cdd7"], ["__file", "
|
|
|
597
688
|
horizontal: { type: Boolean, required: !1, default: !1 }
|
|
598
689
|
},
|
|
599
690
|
setup(e) {
|
|
600
|
-
const a =
|
|
691
|
+
const a = I();
|
|
601
692
|
return (i, n) => {
|
|
602
693
|
const s = v("el-aside"), l = v("el-header"), d = v("el-main"), f = v("el-container");
|
|
603
694
|
return r(), p(f, { class: "container" }, {
|
|
@@ -605,50 +696,50 @@ const lt = /* @__PURE__ */ $(st, [["__scopeId", "data-v-83b9cdd7"], ["__file", "
|
|
|
605
696
|
o(a).aside && !e.horizontal ? (r(), p(s, {
|
|
606
697
|
key: 0,
|
|
607
698
|
class: "aside",
|
|
608
|
-
style:
|
|
699
|
+
style: y("width: " + e.asideWidth + "px;")
|
|
609
700
|
}, {
|
|
610
701
|
default: m(() => [
|
|
611
|
-
|
|
702
|
+
x(i.$slots, "aside", {}, void 0, !0)
|
|
612
703
|
]),
|
|
613
704
|
_: 3
|
|
614
|
-
}, 8, ["style"])) :
|
|
705
|
+
}, 8, ["style"])) : c("v-if", !0),
|
|
615
706
|
o(a).header && e.horizontal ? (r(), p(l, {
|
|
616
707
|
key: 1,
|
|
617
708
|
class: "inside_header",
|
|
618
|
-
style:
|
|
709
|
+
style: y("height: " + e.headerMaxHeight + "px;")
|
|
619
710
|
}, {
|
|
620
711
|
default: m(() => [
|
|
621
|
-
|
|
712
|
+
x(i.$slots, "header", {}, void 0, !0)
|
|
622
713
|
]),
|
|
623
714
|
_: 3
|
|
624
|
-
}, 8, ["style"])) :
|
|
625
|
-
|
|
715
|
+
}, 8, ["style"])) : c("v-if", !0),
|
|
716
|
+
C(d, { class: "main" }, {
|
|
626
717
|
default: m(() => [
|
|
627
|
-
|
|
718
|
+
C(f, { class: "inside_container" }, {
|
|
628
719
|
default: m(() => [
|
|
629
720
|
o(a).header && !e.horizontal ? (r(), p(l, {
|
|
630
721
|
key: 0,
|
|
631
722
|
class: "inside_header",
|
|
632
|
-
style:
|
|
723
|
+
style: y("height: " + e.headerMaxHeight + "px;")
|
|
633
724
|
}, {
|
|
634
725
|
default: m(() => [
|
|
635
|
-
|
|
726
|
+
x(i.$slots, "header", {}, void 0, !0)
|
|
636
727
|
]),
|
|
637
728
|
_: 3
|
|
638
|
-
}, 8, ["style"])) :
|
|
729
|
+
}, 8, ["style"])) : c("v-if", !0),
|
|
639
730
|
o(a).aside && e.horizontal ? (r(), p(s, {
|
|
640
731
|
key: 1,
|
|
641
732
|
class: "aside",
|
|
642
|
-
style:
|
|
733
|
+
style: y("width: " + e.asideWidth + "px;")
|
|
643
734
|
}, {
|
|
644
735
|
default: m(() => [
|
|
645
|
-
|
|
736
|
+
x(i.$slots, "aside", {}, void 0, !0)
|
|
646
737
|
]),
|
|
647
738
|
_: 3
|
|
648
|
-
}, 8, ["style"])) :
|
|
649
|
-
|
|
739
|
+
}, 8, ["style"])) : c("v-if", !0),
|
|
740
|
+
C(d, { class: "inside_main" }, {
|
|
650
741
|
default: m(() => [
|
|
651
|
-
|
|
742
|
+
x(i.$slots, "default", {}, void 0, !0)
|
|
652
743
|
]),
|
|
653
744
|
_: 3
|
|
654
745
|
})
|
|
@@ -664,10 +755,10 @@ const lt = /* @__PURE__ */ $(st, [["__scopeId", "data-v-83b9cdd7"], ["__file", "
|
|
|
664
755
|
};
|
|
665
756
|
}
|
|
666
757
|
});
|
|
667
|
-
const
|
|
758
|
+
const gt = /* @__PURE__ */ V(zt, [["__scopeId", "data-v-5d747d9d"], ["__file", "D:/Code/front/dld-vue-ui/src/packages/Layout/index.vue"]]), yt = {
|
|
668
759
|
key: 0,
|
|
669
760
|
class: "header"
|
|
670
|
-
},
|
|
761
|
+
}, xt = { class: "header_title" }, wt = { class: "header_title" }, St = { class: "pagination" }, bt = /* @__PURE__ */ M({
|
|
671
762
|
__name: "index",
|
|
672
763
|
props: {
|
|
673
764
|
maxHeight: { type: Number, required: !1, default: 550 },
|
|
@@ -700,49 +791,49 @@ const rt = /* @__PURE__ */ $(ot, [["__scopeId", "data-v-5d747d9d"], ["__file", "
|
|
|
700
791
|
emits: ["row-click", "row-dblclick", "selection-change", "search", "clear", "delete", "edit", "page-index", "page-size"],
|
|
701
792
|
setup(e, { emit: a }) {
|
|
702
793
|
const i = e;
|
|
703
|
-
let n =
|
|
794
|
+
let n = ae({
|
|
704
795
|
pageIndex: 1,
|
|
705
796
|
pageSize: 5
|
|
706
797
|
});
|
|
707
|
-
const s =
|
|
708
|
-
a("row-click",
|
|
709
|
-
}, d = (
|
|
710
|
-
a("row-click",
|
|
711
|
-
}, f = (
|
|
712
|
-
a("selection-change",
|
|
798
|
+
const s = I(), l = (u) => {
|
|
799
|
+
a("row-click", u);
|
|
800
|
+
}, d = (u) => {
|
|
801
|
+
a("row-click", u);
|
|
802
|
+
}, f = (u) => {
|
|
803
|
+
a("selection-change", u);
|
|
713
804
|
}, _ = () => {
|
|
714
805
|
if (i.tableColumn.length > 0)
|
|
715
|
-
for (let
|
|
716
|
-
let
|
|
717
|
-
n[
|
|
806
|
+
for (let u = 0; u < i.tableColumn.length; u++) {
|
|
807
|
+
let S = i.tableColumn[u];
|
|
808
|
+
n[S.prop] = "";
|
|
718
809
|
}
|
|
719
810
|
a("clear");
|
|
720
|
-
},
|
|
811
|
+
}, w = () => {
|
|
721
812
|
a("search", n);
|
|
722
|
-
},
|
|
723
|
-
a("edit",
|
|
724
|
-
},
|
|
725
|
-
a("delete",
|
|
813
|
+
}, F = (u) => {
|
|
814
|
+
a("edit", u);
|
|
815
|
+
}, b = (u) => {
|
|
816
|
+
a("delete", u);
|
|
726
817
|
};
|
|
727
|
-
return
|
|
728
|
-
a("page-index", Number(
|
|
729
|
-
}),
|
|
730
|
-
a("page-size", Number(
|
|
731
|
-
}),
|
|
818
|
+
return T(() => n.pageIndex, (u, S) => {
|
|
819
|
+
a("page-index", Number(u), Number(S));
|
|
820
|
+
}), T(() => n.pageSize, (u, S) => {
|
|
821
|
+
a("page-size", Number(u), Number(S));
|
|
822
|
+
}), W(() => {
|
|
732
823
|
if (i.tableColumn.length > 0)
|
|
733
|
-
for (let
|
|
734
|
-
let
|
|
735
|
-
n[
|
|
824
|
+
for (let u = 0; u < i.tableColumn.length; u++) {
|
|
825
|
+
let S = i.tableColumn[u];
|
|
826
|
+
n[S.prop] = "";
|
|
736
827
|
}
|
|
737
|
-
}), (
|
|
738
|
-
const
|
|
739
|
-
return r(),
|
|
740
|
-
o(s).header ? (r(),
|
|
741
|
-
|
|
742
|
-
])) :
|
|
743
|
-
|
|
828
|
+
}), (u, S) => {
|
|
829
|
+
const $ = v("el-table-column"), A = v("el-input"), j = v("el-input-number"), G = v("el-option"), Y = v("el-select"), q = v("el-date-picker"), R = v("el-time-picker"), J = v("el-switch"), N = v("el-button"), X = v("el-popconfirm"), K = v("el-table"), Q = v("el-pagination");
|
|
830
|
+
return r(), z(L, null, [
|
|
831
|
+
o(s).header ? (r(), z("div", yt, [
|
|
832
|
+
x(u.$slots, "header", {}, void 0, !0)
|
|
833
|
+
])) : c("v-if", !0),
|
|
834
|
+
C(K, {
|
|
744
835
|
data: e.tableData,
|
|
745
|
-
class:
|
|
836
|
+
class: P([e.size && e.size == "small" ? "mini-table" : "table"]),
|
|
746
837
|
"max-height": e.maxHeight,
|
|
747
838
|
size: e.size,
|
|
748
839
|
stripe: e.stripe,
|
|
@@ -753,22 +844,22 @@ const rt = /* @__PURE__ */ $(ot, [["__scopeId", "data-v-5d747d9d"], ["__file", "
|
|
|
753
844
|
onSelectionChange: f
|
|
754
845
|
}, {
|
|
755
846
|
default: m(() => [
|
|
756
|
-
e.type && e.type == "index" ? (r(), p(
|
|
847
|
+
e.type && e.type == "index" ? (r(), p($, {
|
|
757
848
|
key: 0,
|
|
758
849
|
align: "center",
|
|
759
850
|
type: "index",
|
|
760
851
|
width: e.typeWidth + "px",
|
|
761
852
|
fixed: e.typeIsFixed ? "left" : !1,
|
|
762
853
|
label: e.typeLabel
|
|
763
|
-
}, null, 8, ["width", "fixed", "label"])) :
|
|
764
|
-
e.type == "selection" ? (r(), p(
|
|
854
|
+
}, null, 8, ["width", "fixed", "label"])) : c("v-if", !0),
|
|
855
|
+
e.type == "selection" ? (r(), p($, {
|
|
765
856
|
key: 1,
|
|
766
857
|
align: "center",
|
|
767
858
|
type: "selection",
|
|
768
859
|
width: e.typeWidth + "px",
|
|
769
860
|
fixed: e.typeIsFixed ? "left" : !1
|
|
770
|
-
}, null, 8, ["width", "fixed"])) :
|
|
771
|
-
e.type == "expand" ? (r(), p(
|
|
861
|
+
}, null, 8, ["width", "fixed"])) : c("v-if", !0),
|
|
862
|
+
e.type == "expand" ? (r(), p($, {
|
|
772
863
|
key: 2,
|
|
773
864
|
align: "center",
|
|
774
865
|
type: "expand",
|
|
@@ -777,105 +868,106 @@ const rt = /* @__PURE__ */ $(ot, [["__scopeId", "data-v-5d747d9d"], ["__file", "
|
|
|
777
868
|
label: e.typeLabel
|
|
778
869
|
}, {
|
|
779
870
|
default: m((t) => [
|
|
780
|
-
|
|
871
|
+
x(u.$slots, "expand", {
|
|
781
872
|
row: t.row
|
|
782
873
|
}, void 0, !0)
|
|
783
874
|
]),
|
|
784
875
|
_: 3
|
|
785
|
-
}, 8, ["width", "fixed", "label"])) :
|
|
786
|
-
(r(!0),
|
|
876
|
+
}, 8, ["width", "fixed", "label"])) : c("v-if", !0),
|
|
877
|
+
(r(!0), z(L, null, D(e.tableColumn, (t) => (r(), p($, {
|
|
787
878
|
prop: t.prop,
|
|
788
879
|
width: t.width ? t.width : "",
|
|
789
880
|
fixed: t.fixed ? t.fixed : !1,
|
|
790
881
|
align: t.align ? t.align : "left"
|
|
791
882
|
}, {
|
|
792
883
|
header: m(() => [
|
|
793
|
-
g("div",
|
|
794
|
-
|
|
795
|
-
t.search && (!t.type || t.type == "text") ? (r(), p(
|
|
884
|
+
g("div", xt, B(t.label), 1),
|
|
885
|
+
c(" \u6587\u672C\u641C\u7D22\u6846 "),
|
|
886
|
+
t.search && (!t.type || t.type == "text") ? (r(), p(A, {
|
|
796
887
|
key: 0,
|
|
797
888
|
modelValue: o(n)[t.prop],
|
|
798
889
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
799
890
|
size: t.size,
|
|
800
891
|
clearable: "",
|
|
801
|
-
style:
|
|
892
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
802
893
|
disabled: t.disabled,
|
|
803
894
|
placeholder: t.placeholder ? t.placeholder : "\u8BF7\u8F93\u5165" + t.label,
|
|
804
|
-
class:
|
|
805
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "style", "disabled", "placeholder", "class"])) :
|
|
806
|
-
|
|
807
|
-
t.search && t.type == "number" ? (r(), p(
|
|
895
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
896
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "style", "disabled", "placeholder", "class"])) : c("v-if", !0),
|
|
897
|
+
c(" \u6570\u5B57\u6846\u641C\u7D22 "),
|
|
898
|
+
t.search && t.type == "number" ? (r(), p(j, {
|
|
808
899
|
key: 1,
|
|
809
900
|
modelValue: o(n)[t.prop],
|
|
810
901
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
811
902
|
size: t.size,
|
|
812
903
|
clearable: "",
|
|
813
|
-
style:
|
|
904
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
814
905
|
disabled: t.disabled,
|
|
815
906
|
placeholder: t.placeholder ? t.placeholder : "\u8BF7\u8F93\u5165" + t.label,
|
|
816
|
-
class:
|
|
907
|
+
class: P([t.align && t.align == "center" ? "center" : ""]),
|
|
817
908
|
max: t.max != null ? t.max : 1 / 0,
|
|
818
909
|
min: t.min != null ? t.min : -1 / 0,
|
|
819
910
|
step: t.step != null ? t.step : 1
|
|
820
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "style", "disabled", "placeholder", "class", "max", "min", "step"])) :
|
|
821
|
-
|
|
822
|
-
t.search && t.type == "select" ? (r(), p(
|
|
911
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "style", "disabled", "placeholder", "class", "max", "min", "step"])) : c("v-if", !0),
|
|
912
|
+
c(" \u9009\u62E9\u641C\u7D22 "),
|
|
913
|
+
t.search && t.type == "select" ? (r(), p(Y, {
|
|
823
914
|
key: 2,
|
|
824
915
|
modelValue: o(n)[t.prop],
|
|
825
916
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
826
917
|
size: t.size,
|
|
827
918
|
clearable: "",
|
|
828
|
-
|
|
919
|
+
filterable: "",
|
|
920
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
829
921
|
disabled: t.disabled,
|
|
830
922
|
multiple: t.multiple,
|
|
831
923
|
"collapse-tags": t.omit,
|
|
832
924
|
placeholder: t.placeholder ? t.placeholder : "\u8BF7\u9009\u62E9" + t.label,
|
|
833
|
-
class:
|
|
925
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
834
926
|
}, {
|
|
835
927
|
default: m(() => [
|
|
836
|
-
(r(!0),
|
|
928
|
+
(r(!0), z(L, null, D(t.options, (h) => (r(), p(G, {
|
|
837
929
|
label: h.label ? h.label : h.value,
|
|
838
930
|
value: h.value,
|
|
839
931
|
disabled: h.disabled
|
|
840
932
|
}, null, 8, ["label", "value", "disabled"]))), 256))
|
|
841
933
|
]),
|
|
842
934
|
_: 2
|
|
843
|
-
}, 1032, ["modelValue", "onUpdate:modelValue", "size", "style", "disabled", "multiple", "collapse-tags", "placeholder", "class"])) :
|
|
844
|
-
|
|
845
|
-
t.search && t.type == "date" ? (r(), p(
|
|
935
|
+
}, 1032, ["modelValue", "onUpdate:modelValue", "size", "style", "disabled", "multiple", "collapse-tags", "placeholder", "class"])) : c("v-if", !0),
|
|
936
|
+
c(" \u65E5\u671F\u9009\u62E9 "),
|
|
937
|
+
t.search && t.type == "date" ? (r(), p(q, {
|
|
846
938
|
key: 3,
|
|
847
939
|
modelValue: o(n)[t.prop],
|
|
848
940
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
849
941
|
type: "date",
|
|
850
|
-
style:
|
|
942
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : ""),
|
|
851
943
|
placeholder: t.placeholder ? t.placeholder : "\u8BF7\u9009\u62E9\u65E5\u671F",
|
|
852
944
|
size: t.size,
|
|
853
|
-
class:
|
|
854
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "style", "placeholder", "size", "class"])) :
|
|
855
|
-
|
|
856
|
-
t.search && t.type == "time" ? (r(), p(
|
|
945
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
946
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "style", "placeholder", "size", "class"])) : c("v-if", !0),
|
|
947
|
+
c(" \u65F6\u95F4\u9009\u62E9 "),
|
|
948
|
+
t.search && t.type == "time" ? (r(), p(R, {
|
|
857
949
|
key: 4,
|
|
858
950
|
modelValue: o(n)[t.prop],
|
|
859
951
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
860
952
|
"arrow-control": "",
|
|
861
|
-
style:
|
|
953
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
862
954
|
placeholder: t.placeholder ? t.placeholder : "\u8BF7\u9009\u62E9\u65F6\u95F4",
|
|
863
955
|
size: t.size,
|
|
864
|
-
class:
|
|
865
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "style", "placeholder", "size", "class"])) :
|
|
866
|
-
|
|
867
|
-
t.search && t.type == "datetime" ? (r(), p(
|
|
956
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
957
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "style", "placeholder", "size", "class"])) : c("v-if", !0),
|
|
958
|
+
c(" \u65E5\u671F\u65F6\u95F4\u641C\u7D22 "),
|
|
959
|
+
t.search && t.type == "datetime" ? (r(), p(q, {
|
|
868
960
|
key: 5,
|
|
869
961
|
modelValue: o(n)[t.prop],
|
|
870
962
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
871
963
|
type: "datetime",
|
|
872
|
-
style:
|
|
964
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
873
965
|
placeholder: t.placeholder ? t.placeholder : "\u8BF7\u9009\u62E9\u65E5\u671F\u65F6\u95F4",
|
|
874
966
|
size: t.size,
|
|
875
|
-
class:
|
|
876
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "style", "placeholder", "size", "class"])) :
|
|
877
|
-
|
|
878
|
-
t.search && t.type == "daterange" ? (r(), p(
|
|
967
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
968
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "style", "placeholder", "size", "class"])) : c("v-if", !0),
|
|
969
|
+
c(" \u65E5\u671F\u8303\u56F4\u9009\u62E9 "),
|
|
970
|
+
t.search && t.type == "daterange" ? (r(), p(q, {
|
|
879
971
|
key: 6,
|
|
880
972
|
modelValue: o(n)[t.prop],
|
|
881
973
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
@@ -883,12 +975,12 @@ const rt = /* @__PURE__ */ $(ot, [["__scopeId", "data-v-5d747d9d"], ["__file", "
|
|
|
883
975
|
"range-separator": "-",
|
|
884
976
|
"start-placeholder": t.placeholder ? t.placeholder.split("&&")[0] : "\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",
|
|
885
977
|
"end-placeholder": t.placeholder ? t.placeholder.split("&&")[1] : "\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",
|
|
886
|
-
style:
|
|
978
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
887
979
|
size: t.size,
|
|
888
|
-
class:
|
|
889
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "start-placeholder", "end-placeholder", "style", "size", "class"])) :
|
|
890
|
-
|
|
891
|
-
t.search && t.type == "timerange" ? (r(), p(
|
|
980
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
981
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "start-placeholder", "end-placeholder", "style", "size", "class"])) : c("v-if", !0),
|
|
982
|
+
c(" \u65F6\u95F4\u8303\u56F4\u9009\u62E9 "),
|
|
983
|
+
t.search && t.type == "timerange" ? (r(), p(R, {
|
|
892
984
|
key: 7,
|
|
893
985
|
modelValue: o(n)[t.prop],
|
|
894
986
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
@@ -897,12 +989,12 @@ const rt = /* @__PURE__ */ $(ot, [["__scopeId", "data-v-5d747d9d"], ["__file", "
|
|
|
897
989
|
"range-separator": "-",
|
|
898
990
|
"start-placeholder": t.placeholder ? t.placeholder.split("&&")[0] : "\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",
|
|
899
991
|
"end-placeholder": t.placeholder ? t.placeholder.split("&&")[1] : "\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4",
|
|
900
|
-
style:
|
|
992
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
901
993
|
size: t.size,
|
|
902
|
-
class:
|
|
903
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "start-placeholder", "end-placeholder", "style", "size", "class"])) :
|
|
904
|
-
|
|
905
|
-
t.search && t.type == "datetimerange" ? (r(), p(
|
|
994
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
995
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "start-placeholder", "end-placeholder", "style", "size", "class"])) : c("v-if", !0),
|
|
996
|
+
c(" \u65E5\u671F\u65F6\u95F4\u8303\u56F4\u9009\u62E9 "),
|
|
997
|
+
t.search && t.type == "datetimerange" ? (r(), p(q, {
|
|
906
998
|
key: 8,
|
|
907
999
|
modelValue: o(n)[t.prop],
|
|
908
1000
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
@@ -910,113 +1002,121 @@ const rt = /* @__PURE__ */ $(ot, [["__scopeId", "data-v-5d747d9d"], ["__file", "
|
|
|
910
1002
|
"range-separator": "-",
|
|
911
1003
|
"start-placeholder": t.placeholder ? t.placeholder.split("&&")[0] : "\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F\u65F6\u95F4",
|
|
912
1004
|
"end-placeholder": t.placeholder ? t.placeholder.split("&&")[1] : "\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F\u65F6\u95F4",
|
|
913
|
-
style:
|
|
1005
|
+
style: y(t.searchWidth ? "width: " + t.searchWidth + "px;" : "width: 92%"),
|
|
914
1006
|
size: t.size,
|
|
915
|
-
class:
|
|
916
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "start-placeholder", "end-placeholder", "style", "size", "class"])) :
|
|
917
|
-
|
|
918
|
-
t.search && t.type == "switch" ? (r(), p(
|
|
1007
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
1008
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "start-placeholder", "end-placeholder", "style", "size", "class"])) : c("v-if", !0),
|
|
1009
|
+
c(" \u5F00\u5173 "),
|
|
1010
|
+
t.search && t.type == "switch" ? (r(), p(J, {
|
|
919
1011
|
key: 9,
|
|
920
1012
|
modelValue: o(n)[t.prop],
|
|
921
1013
|
"onUpdate:modelValue": (h) => o(n)[t.prop] = h,
|
|
922
1014
|
size: t.size,
|
|
923
1015
|
"active-text": t.openText,
|
|
924
1016
|
"inactive-text": t.closeText,
|
|
925
|
-
class:
|
|
926
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "active-text", "inactive-text", "class"])) :
|
|
1017
|
+
class: P([t.align && t.align == "center" ? "center" : ""])
|
|
1018
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "active-text", "inactive-text", "class"])) : c("v-if", !0)
|
|
927
1019
|
]),
|
|
928
1020
|
_: 2
|
|
929
1021
|
}, 1032, ["prop", "width", "fixed", "align"]))), 256)),
|
|
930
|
-
e.operate ? (r(), p(
|
|
1022
|
+
e.operate ? (r(), p($, {
|
|
931
1023
|
key: 3,
|
|
932
1024
|
align: "center",
|
|
933
1025
|
width: e.operateWidth ? e.operateWidth : "",
|
|
934
1026
|
fixed: e.operateIsFixed ? "right" : !1
|
|
935
1027
|
}, {
|
|
936
1028
|
header: m(() => [
|
|
937
|
-
g("div",
|
|
938
|
-
|
|
1029
|
+
g("div", wt, B(e.operateLabel), 1),
|
|
1030
|
+
x(u.$slots, "operate-front", {}, void 0, !0),
|
|
1031
|
+
e.search ? (r(), p(N, {
|
|
939
1032
|
key: 0,
|
|
940
1033
|
type: "primary",
|
|
941
1034
|
size: e.operateSize,
|
|
942
|
-
icon: o(
|
|
943
|
-
onClick:
|
|
1035
|
+
icon: o(et),
|
|
1036
|
+
onClick: w
|
|
944
1037
|
}, {
|
|
945
1038
|
default: m(() => [
|
|
946
|
-
|
|
1039
|
+
k("\u641C\u7D22")
|
|
947
1040
|
]),
|
|
948
1041
|
_: 1
|
|
949
|
-
}, 8, ["size", "icon"])) :
|
|
950
|
-
|
|
1042
|
+
}, 8, ["size", "icon"])) : c("v-if", !0),
|
|
1043
|
+
x(u.$slots, "operate-middle", {}, void 0, !0),
|
|
1044
|
+
e.clear ? (r(), p(N, {
|
|
951
1045
|
key: 1,
|
|
952
1046
|
type: "info",
|
|
953
1047
|
size: e.operateSize,
|
|
954
|
-
icon: o(
|
|
1048
|
+
icon: o(ze),
|
|
955
1049
|
onClick: _
|
|
956
1050
|
}, {
|
|
957
1051
|
default: m(() => [
|
|
958
|
-
|
|
1052
|
+
k("\u6E05\u7A7A")
|
|
959
1053
|
]),
|
|
960
1054
|
_: 1
|
|
961
|
-
}, 8, ["size", "icon"])) :
|
|
962
|
-
|
|
1055
|
+
}, 8, ["size", "icon"])) : c("v-if", !0),
|
|
1056
|
+
x(u.$slots, "operate", {}, void 0, !0)
|
|
963
1057
|
]),
|
|
964
1058
|
default: m((t) => [
|
|
965
|
-
|
|
1059
|
+
x(u.$slots, "row-operate-front", {
|
|
1060
|
+
row: t.row
|
|
1061
|
+
}, void 0, !0),
|
|
1062
|
+
e.edit ? (r(), p(N, {
|
|
966
1063
|
key: 0,
|
|
967
1064
|
link: "",
|
|
968
1065
|
type: "primary",
|
|
969
1066
|
size: e.rowButtonSize,
|
|
970
|
-
icon: o(
|
|
971
|
-
onClick: (h) =>
|
|
1067
|
+
icon: o(He),
|
|
1068
|
+
onClick: (h) => F(t.row)
|
|
972
1069
|
}, {
|
|
973
1070
|
default: m(() => [
|
|
974
|
-
|
|
1071
|
+
k("\u4FEE\u6539")
|
|
975
1072
|
]),
|
|
976
1073
|
_: 2
|
|
977
|
-
}, 1032, ["size", "icon", "onClick"])) :
|
|
978
|
-
|
|
1074
|
+
}, 1032, ["size", "icon", "onClick"])) : c("v-if", !0),
|
|
1075
|
+
x(u.$slots, "row-operate-middle", {
|
|
1076
|
+
row: t.row
|
|
1077
|
+
}, void 0, !0),
|
|
1078
|
+
e.delete ? (r(), p(X, {
|
|
979
1079
|
key: 1,
|
|
980
1080
|
"confirm-button-text": "\u5426",
|
|
981
1081
|
"cancel-button-text": "\u662F",
|
|
982
1082
|
"confirm-button-type": "text",
|
|
983
1083
|
"cancel-button-type": "danger",
|
|
984
|
-
icon: o(
|
|
1084
|
+
icon: o($e),
|
|
985
1085
|
width: "auto",
|
|
986
|
-
onCancel: (h) =>
|
|
1086
|
+
onCancel: (h) => b(t.row),
|
|
987
1087
|
title: e.deleteTitle ? e.deleteTitle : "\u662F\u5426\u8981\u5220\u9664\u5F53\u524D\u884C\uFF1F"
|
|
988
1088
|
}, {
|
|
989
1089
|
reference: m(() => [
|
|
990
|
-
|
|
1090
|
+
C(N, {
|
|
991
1091
|
link: "",
|
|
992
1092
|
type: "danger",
|
|
993
1093
|
size: e.rowButtonSize,
|
|
994
|
-
icon: o(
|
|
1094
|
+
icon: o(Le)
|
|
995
1095
|
}, {
|
|
996
1096
|
default: m(() => [
|
|
997
|
-
|
|
1097
|
+
k("\u5220\u9664")
|
|
998
1098
|
]),
|
|
999
1099
|
_: 1
|
|
1000
1100
|
}, 8, ["size", "icon"])
|
|
1001
1101
|
]),
|
|
1002
1102
|
_: 2
|
|
1003
|
-
}, 1032, ["icon", "onCancel", "title"])) :
|
|
1004
|
-
|
|
1103
|
+
}, 1032, ["icon", "onCancel", "title"])) : c("v-if", !0),
|
|
1104
|
+
x(u.$slots, "row-operate", {
|
|
1005
1105
|
row: t.row
|
|
1006
1106
|
}, void 0, !0)
|
|
1007
1107
|
]),
|
|
1008
1108
|
_: 3
|
|
1009
|
-
}, 8, ["width", "fixed"])) :
|
|
1109
|
+
}, 8, ["width", "fixed"])) : c("v-if", !0)
|
|
1010
1110
|
]),
|
|
1011
1111
|
_: 3
|
|
1012
1112
|
}, 8, ["data", "class", "max-height", "size", "stripe", "border", "highlight-current-row"]),
|
|
1013
|
-
g("div",
|
|
1014
|
-
e.pagination ? (r(), p(
|
|
1113
|
+
g("div", St, [
|
|
1114
|
+
e.pagination ? (r(), p(Q, {
|
|
1015
1115
|
key: 0,
|
|
1016
1116
|
"current-page": o(n).pageIndex,
|
|
1017
|
-
"onUpdate:current-page":
|
|
1117
|
+
"onUpdate:current-page": S[0] || (S[0] = (t) => o(n).pageIndex = t),
|
|
1018
1118
|
"page-size": o(n).pageSize,
|
|
1019
|
-
"onUpdate:page-size":
|
|
1119
|
+
"onUpdate:page-size": S[1] || (S[1] = (t) => o(n).pageSize = t),
|
|
1020
1120
|
small: e.small,
|
|
1021
1121
|
"hide-on-Single-page": e.hideOnSinglePage,
|
|
1022
1122
|
background: "",
|
|
@@ -1024,22 +1124,23 @@ const rt = /* @__PURE__ */ $(ot, [["__scopeId", "data-v-5d747d9d"], ["__file", "
|
|
|
1024
1124
|
"page-sizes": [5, 10, 20, 50],
|
|
1025
1125
|
total: e.total,
|
|
1026
1126
|
class: "mt-4"
|
|
1027
|
-
}, null, 8, ["current-page", "page-size", "small", "hide-on-Single-page", "total"])) :
|
|
1127
|
+
}, null, 8, ["current-page", "page-size", "small", "hide-on-Single-page", "total"])) : c("v-if", !0)
|
|
1028
1128
|
])
|
|
1029
1129
|
], 64);
|
|
1030
1130
|
};
|
|
1031
1131
|
}
|
|
1032
1132
|
});
|
|
1033
|
-
const
|
|
1133
|
+
const Pt = /* @__PURE__ */ V(bt, [["__scopeId", "data-v-f4c855de"], ["__file", "D:/Code/front/dld-vue-ui/src/packages/TableForm/index.vue"]]), Ft = {
|
|
1034
1134
|
install: (e) => {
|
|
1035
|
-
e.component("SplitPanes",
|
|
1135
|
+
e.component("SplitPanes", de), e.component("Pane", ce), e.component("UpLoadFile", pt), e.component("Layout", gt), e.component("TableForm", Pt), e.component("UpLoadFiles", _t);
|
|
1036
1136
|
}
|
|
1037
1137
|
};
|
|
1038
1138
|
export {
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1139
|
+
gt as Layout,
|
|
1140
|
+
ce as Pane,
|
|
1141
|
+
de as SplitPanes,
|
|
1142
|
+
Pt as TableForm,
|
|
1143
|
+
pt as UpLoadFile,
|
|
1144
|
+
_t as UpLoadFiles,
|
|
1145
|
+
Ft as default
|
|
1045
1146
|
};
|