@king-one/antdv 1.2.30 → 2.0.1
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/CHANGELOG.md +6 -0
- package/dist/es/components/index.mjs +22 -20
- package/dist/es/components/pro-contract-view/apis/pro-contract-view.api.mjs +5 -5
- package/dist/es/components/pro-sign/src/components/date.vue.mjs +11 -8
- package/dist/es/components/pro-sign/src/components/middle.vue.mjs +122 -115
- package/dist/es/components/pro-tag-group/index.mjs +11 -0
- package/dist/es/components/pro-tag-group/src/ProTagGroup.vue.mjs +4 -0
- package/dist/es/components/pro-tag-group/src/ProTagGroup.vue2.mjs +113 -0
- package/dist/es/components/pro-tag-group/src/types.mjs +12 -0
- package/dist/es/components/pro-tag-group/style/index.mjs +2 -0
- package/dist/es/components/pro-user-avatar/src/index.vue2.mjs +39 -37
- package/dist/es/index.mjs +33 -29
- package/dist/lib/components/index.js +1 -1
- package/dist/lib/components/pro-contract-view/apis/pro-contract-view.api.js +1 -1
- package/dist/lib/components/pro-sign/src/components/date.vue.js +1 -1
- package/dist/lib/components/pro-sign/src/components/middle.vue.js +1 -1
- package/dist/lib/components/pro-tag-group/index.js +1 -0
- package/dist/lib/components/pro-tag-group/src/ProTagGroup.vue.js +1 -0
- package/dist/lib/components/pro-tag-group/src/ProTagGroup.vue2.js +1 -0
- package/dist/lib/components/pro-tag-group/src/types.js +1 -0
- package/dist/lib/components/pro-tag-group/style/index.js +1 -0
- package/dist/lib/components/pro-user-avatar/src/index.vue2.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/theme-chalk/fonts/iconfont.ttf +0 -0
- package/dist/theme-chalk/fonts/iconfont.woff +0 -0
- package/dist/theme-chalk/fonts/iconfont.woff2 +0 -0
- package/dist/theme-chalk/icon.css +1 -1
- package/dist/theme-chalk/index.css +1 -1
- package/dist/theme-chalk/pro-sign.css +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,47 +1,49 @@
|
|
|
1
1
|
import { KCollapseTranstion as t } from "./collapse-transtion/index.mjs";
|
|
2
2
|
import { KProModal as K } from "./pro-modal/index.mjs";
|
|
3
3
|
import { KProTitle as f } from "./pro-title/index.mjs";
|
|
4
|
-
import { KScrollBar as
|
|
4
|
+
import { KScrollBar as l } from "./scroll-bar/index.mjs";
|
|
5
5
|
import { KCoverScrollBar as P } from "./cover-scroll-bar/index.mjs";
|
|
6
6
|
import { KScaleVirtualList as i } from "./scale-virtual-list/index.mjs";
|
|
7
7
|
import { KProTag as s } from "./pro-tag/index.mjs";
|
|
8
|
-
import { KProPicker as
|
|
9
|
-
import { KProArea as
|
|
10
|
-
import { KProSignature as
|
|
8
|
+
import { KProPicker as T } from "./pro-picker/index.mjs";
|
|
9
|
+
import { KProArea as g } from "./pro-area/index.mjs";
|
|
10
|
+
import { KProSignature as v } from "./pro-signature/index.mjs";
|
|
11
11
|
import { KProTable as A } from "./pro-table/index.mjs";
|
|
12
12
|
import { KIcon as B } from "./icon/index.mjs";
|
|
13
13
|
import { KProUpload as V } from "./pro-upload/index.mjs";
|
|
14
14
|
import { KProContractView as k } from "./pro-contract-view/index.mjs";
|
|
15
15
|
import "./pro-loading/index.mjs";
|
|
16
16
|
import { KPlusUpload as y } from "./plus-upload/index.mjs";
|
|
17
|
-
import { KProOverlay as
|
|
18
|
-
import { KProSign as
|
|
19
|
-
import { KUserSelector as
|
|
20
|
-
import { KProUserAvatar as
|
|
21
|
-
import { KProRoleSelector as
|
|
17
|
+
import { KProOverlay as G } from "./pro-overlay/index.mjs";
|
|
18
|
+
import { KProSign as L } from "./pro-sign/index.mjs";
|
|
19
|
+
import { KUserSelector as O } from "./pro-selector/index.mjs";
|
|
20
|
+
import { KProUserAvatar as j, KUserAvatar as q } from "./pro-user-avatar/index.mjs";
|
|
21
|
+
import { KProRoleSelector as E, KRoleSelector as F } from "./role-selector/index.mjs";
|
|
22
22
|
import { KDeptSelector as J } from "./dept-selector/index.mjs";
|
|
23
|
+
import { KProTagGroup as Q } from "./pro-tag-group/index.mjs";
|
|
23
24
|
export {
|
|
24
25
|
t as KCollapseTranstion,
|
|
25
26
|
P as KCoverScrollBar,
|
|
26
27
|
J as KDeptSelector,
|
|
27
28
|
B as KIcon,
|
|
28
29
|
y as KPlusUpload,
|
|
29
|
-
|
|
30
|
+
g as KProArea,
|
|
30
31
|
k as KProContractView,
|
|
31
32
|
K as KProModal,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
G as KProOverlay,
|
|
34
|
+
T as KProPicker,
|
|
35
|
+
E as KProRoleSelector,
|
|
36
|
+
L as KProSign,
|
|
37
|
+
v as KProSignature,
|
|
37
38
|
A as KProTable,
|
|
38
39
|
s as KProTag,
|
|
40
|
+
Q as KProTagGroup,
|
|
39
41
|
f as KProTitle,
|
|
40
42
|
V as KProUpload,
|
|
41
|
-
|
|
42
|
-
|
|
43
|
+
j as KProUserAvatar,
|
|
44
|
+
F as KRoleSelector,
|
|
43
45
|
i as KScaleVirtualList,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
46
|
+
l as KScrollBar,
|
|
47
|
+
q as KUserAvatar,
|
|
48
|
+
O as KUserSelector
|
|
47
49
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
const i = {
|
|
2
|
-
getContractPrefix: (t) => globalThis.$http.get("/contract/uri/prefix", t),
|
|
3
|
-
getSignPrefix: (t) => globalThis.$http.get("/sign/uri/prefix", t),
|
|
4
|
-
getPreviewUrl: (t, e) => globalThis.$http.get(
|
|
5
|
-
getFileList: (t, e) => globalThis.$http.get(
|
|
6
|
-
getFilePreview: (t, e) => globalThis.$http.get(
|
|
2
|
+
getContractPrefix: (t) => globalThis.$http.get("/qy-contract/contract/uri/prefix", t),
|
|
3
|
+
getSignPrefix: (t) => globalThis.$http.get("/qy-contract/sign/uri/prefix", t),
|
|
4
|
+
getPreviewUrl: (t, e) => globalThis.$http.get(`/qy-contract${t}/redirect/contract-preview-url`, e),
|
|
5
|
+
getFileList: (t, e) => globalThis.$http.get(`/qy-contract${t}/contract/file/detail/list`, e),
|
|
6
|
+
getFilePreview: (t, e) => globalThis.$http.get(`/qy-contract${t}/file/preview`, e)
|
|
7
7
|
};
|
|
8
8
|
export {
|
|
9
9
|
i as proContractViewApi
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { createElementVNode as
|
|
1
|
+
import { createElementVNode as r, defineComponent as i, createElementBlock as f, openBlock as c, normalizeClass as d, unref as o, createVNode as m } from "vue";
|
|
2
2
|
import { useNamespace as l } from "../../../../hooks/use-namespace/index.mjs";
|
|
3
3
|
import "../../../index.mjs";
|
|
4
4
|
import { KIcon as p } from "../../../icon/index.mjs";
|
|
5
|
-
const u = /* @__PURE__ */
|
|
5
|
+
const u = /* @__PURE__ */ r(
|
|
6
6
|
"div",
|
|
7
7
|
null,
|
|
8
8
|
"添加签署日期(拖拽)",
|
|
@@ -11,8 +11,8 @@ const u = /* @__PURE__ */ n(
|
|
|
11
11
|
), T = /* @__PURE__ */ i({
|
|
12
12
|
__name: "date",
|
|
13
13
|
setup(g) {
|
|
14
|
-
const { b:
|
|
15
|
-
function
|
|
14
|
+
const { b: s } = l("pro-sign-date");
|
|
15
|
+
function n(e) {
|
|
16
16
|
var a;
|
|
17
17
|
const t = {
|
|
18
18
|
signType: "date",
|
|
@@ -26,15 +26,18 @@ const u = /* @__PURE__ */ n(
|
|
|
26
26
|
};
|
|
27
27
|
(a = e.dataTransfer) == null || a.setData("seal", JSON.stringify(t));
|
|
28
28
|
}
|
|
29
|
-
return (e, t) => (
|
|
29
|
+
return (e, t) => (c(), f(
|
|
30
30
|
"div",
|
|
31
31
|
{
|
|
32
|
-
class: d(o(
|
|
32
|
+
class: d(o(s)()),
|
|
33
33
|
draggable: "true",
|
|
34
|
-
onDragstart: t[0] || (t[0] = (a) =>
|
|
34
|
+
onDragstart: t[0] || (t[0] = (a) => n(a))
|
|
35
35
|
},
|
|
36
36
|
[
|
|
37
|
-
|
|
37
|
+
m(o(p), {
|
|
38
|
+
name: "carry-out",
|
|
39
|
+
class: "date-icon"
|
|
40
|
+
}),
|
|
38
41
|
u
|
|
39
42
|
],
|
|
40
43
|
34
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { createElementVNode as
|
|
2
|
-
import { Badge as
|
|
1
|
+
import { createElementVNode as n, defineComponent as H, ref as b, computed as v, toRaw as K, createElementBlock as d, openBlock as p, normalizeClass as r, unref as t, createVNode as i, toDisplayString as h, withCtx as f, createTextVNode as W, Fragment as I, renderList as T, normalizeStyle as $, createCommentVNode as M } from "vue";
|
|
2
|
+
import { Badge as q, Button as A, Popover as J, InputNumber as Q } from "ant-design-vue";
|
|
3
3
|
import { useNamespace as Z } from "../../../../hooks/use-namespace/index.mjs";
|
|
4
4
|
import "../../../index.mjs";
|
|
5
5
|
import { debounce as ee } from "lodash-es";
|
|
@@ -12,59 +12,53 @@ import ne from "./loader.vue2.mjs";
|
|
|
12
12
|
import { KIcon as g } from "../../../icon/index.mjs";
|
|
13
13
|
import se from "./batch.vue2.mjs";
|
|
14
14
|
import le from "./verify.vue2.mjs";
|
|
15
|
-
const re = /* @__PURE__ */
|
|
16
|
-
"span",
|
|
17
|
-
null,
|
|
18
|
-
"黑神话悟空A4",
|
|
19
|
-
-1
|
|
20
|
-
/* HOISTED */
|
|
21
|
-
), ae = { style: { flex: "1" } }, ie = ["data-index", "onMousedown"], ce = /* @__PURE__ */ s(
|
|
15
|
+
const ae = { style: { flex: "1" } }, ie = ["data-index", "onMousedown"], re = /* @__PURE__ */ n(
|
|
22
16
|
"span",
|
|
23
17
|
null,
|
|
24
18
|
"批量应用",
|
|
25
19
|
-1
|
|
26
20
|
/* HOISTED */
|
|
27
|
-
),
|
|
21
|
+
), ce = ["src", "data-index"], ue = {
|
|
28
22
|
key: 1,
|
|
29
23
|
class: "seal-time"
|
|
30
|
-
},
|
|
24
|
+
}, de = ["onMousedown"], pe = ["src"], fe = /* @__PURE__ */ n(
|
|
31
25
|
"span",
|
|
32
26
|
null,
|
|
33
27
|
"上一页",
|
|
34
28
|
-1
|
|
35
29
|
/* HOISTED */
|
|
36
|
-
),
|
|
30
|
+
), me = /* @__PURE__ */ n(
|
|
37
31
|
"span",
|
|
38
32
|
null,
|
|
39
33
|
"下一页",
|
|
40
34
|
-1
|
|
41
35
|
/* HOISTED */
|
|
42
|
-
),
|
|
36
|
+
), ve = /* @__PURE__ */ n(
|
|
43
37
|
"span",
|
|
44
38
|
null,
|
|
45
39
|
"跳转到",
|
|
46
40
|
-1
|
|
47
41
|
/* HOISTED */
|
|
48
|
-
),
|
|
42
|
+
), ge = /* @__PURE__ */ n(
|
|
49
43
|
"span",
|
|
50
44
|
null,
|
|
51
45
|
"页",
|
|
52
46
|
-1
|
|
53
47
|
/* HOISTED */
|
|
54
|
-
),
|
|
48
|
+
), Pe = /* @__PURE__ */ H({
|
|
55
49
|
__name: "middle",
|
|
56
|
-
setup(
|
|
57
|
-
const [U, { openModal:
|
|
50
|
+
setup(he) {
|
|
51
|
+
const [U, { openModal: z }] = oe(), a = te(), k = a.move, u = b(null), F = v(() => a.sharedStatus.fileList), { sealList: O, currentFile: _ } = a.sharedStatus, C = v(() => {
|
|
58
52
|
var e;
|
|
59
|
-
return (e =
|
|
60
|
-
}),
|
|
53
|
+
return (e = a.sharedStatus.currentSeal) == null ? void 0 : e.batchId;
|
|
54
|
+
}), y = v(() => {
|
|
61
55
|
var e;
|
|
62
56
|
return ((e = u.value) == null ? void 0 : e.virtuaState) || { current: 1 };
|
|
63
|
-
}), N = b(3), { b:
|
|
64
|
-
const { sealList: e, currentFile: l } =
|
|
65
|
-
return e.filter((
|
|
66
|
-
const
|
|
67
|
-
return
|
|
57
|
+
}), N = b(3), { b: R, e: m, em: S } = Z("pro-sign-middle"), B = v(() => (e) => O.filter((l) => (l.pageList[_.fileId] || []).includes(e) && l.signType !== "perforationSeal")), E = v(() => {
|
|
58
|
+
const { sealList: e, currentFile: l } = a.sharedStatus;
|
|
59
|
+
return e.filter((s) => {
|
|
60
|
+
const o = s.pageList[l.fileId] || [];
|
|
61
|
+
return s.signType === "perforationSeal" && o.length > 0;
|
|
68
62
|
});
|
|
69
63
|
});
|
|
70
64
|
function w(e) {
|
|
@@ -85,32 +79,32 @@ const re = /* @__PURE__ */ s(
|
|
|
85
79
|
var l;
|
|
86
80
|
return e ? (l = e.parentNode) == null ? void 0 : l.parentNode : document.body;
|
|
87
81
|
}
|
|
88
|
-
const x = () =>
|
|
82
|
+
const x = () => a.sharedStatus.loading = !1;
|
|
89
83
|
function D() {
|
|
90
|
-
const { sealList: e, verifyType: l } =
|
|
91
|
-
if (!
|
|
84
|
+
const { sealList: e, verifyType: l } = a.sharedStatus;
|
|
85
|
+
if (!a.hooks.beforeSign.call({ sealList: K(e) }))
|
|
92
86
|
return !0;
|
|
93
87
|
if (l.NONE) {
|
|
94
|
-
|
|
95
|
-
const
|
|
96
|
-
|
|
88
|
+
a.sharedStatus.loading = !0;
|
|
89
|
+
const o = a.getSignData();
|
|
90
|
+
a.notify(P.ON_SIGN_CONFIRM, { sealList: o, verifyType: "NONE" }, x);
|
|
97
91
|
} else
|
|
98
|
-
|
|
92
|
+
z();
|
|
99
93
|
}
|
|
100
94
|
function X(e, l) {
|
|
101
|
-
|
|
102
|
-
const
|
|
103
|
-
|
|
95
|
+
a.sharedStatus.loading = !0;
|
|
96
|
+
const s = a.getSignData();
|
|
97
|
+
a.notify(P.ON_SIGN_CONFIRM, { sealList: s, verifyType: l, securityCode: e }, x);
|
|
104
98
|
}
|
|
105
99
|
function j() {
|
|
106
100
|
if (u.value) {
|
|
107
|
-
const e =
|
|
101
|
+
const e = y.value.current;
|
|
108
102
|
u.value.scrollTo(e + 1);
|
|
109
103
|
}
|
|
110
104
|
}
|
|
111
105
|
function G() {
|
|
112
106
|
if (u.value) {
|
|
113
|
-
const e =
|
|
107
|
+
const e = y.value.current;
|
|
114
108
|
u.value.scrollTo(e - 1);
|
|
115
109
|
}
|
|
116
110
|
}
|
|
@@ -121,27 +115,33 @@ const re = /* @__PURE__ */ s(
|
|
|
121
115
|
return (e, l) => (p(), d(
|
|
122
116
|
"div",
|
|
123
117
|
{
|
|
124
|
-
class:
|
|
118
|
+
class: r(t(R)())
|
|
125
119
|
},
|
|
126
120
|
[
|
|
127
|
-
|
|
121
|
+
n(
|
|
128
122
|
"div",
|
|
129
123
|
{
|
|
130
|
-
class:
|
|
124
|
+
class: r(t(m)("title"))
|
|
131
125
|
},
|
|
132
126
|
[
|
|
133
|
-
|
|
134
|
-
i(
|
|
135
|
-
|
|
127
|
+
n("div", null, [
|
|
128
|
+
i(t(q), { status: "processing" }),
|
|
129
|
+
n(
|
|
130
|
+
"span",
|
|
131
|
+
null,
|
|
132
|
+
h(t(_).fileName),
|
|
133
|
+
1
|
|
134
|
+
/* TEXT */
|
|
135
|
+
)
|
|
136
136
|
]),
|
|
137
|
-
|
|
138
|
-
i(
|
|
137
|
+
n("div", null, [
|
|
138
|
+
i(t(A), {
|
|
139
139
|
type: "primary",
|
|
140
140
|
size: "middle",
|
|
141
141
|
onClick: D
|
|
142
142
|
}, {
|
|
143
143
|
default: f(() => [
|
|
144
|
-
|
|
144
|
+
W(" 确认签署 ")
|
|
145
145
|
]),
|
|
146
146
|
_: 1
|
|
147
147
|
/* STABLE */
|
|
@@ -151,65 +151,65 @@ const re = /* @__PURE__ */ s(
|
|
|
151
151
|
2
|
|
152
152
|
/* CLASS */
|
|
153
153
|
),
|
|
154
|
-
|
|
154
|
+
n("div", ae, [
|
|
155
155
|
i(
|
|
156
|
-
|
|
156
|
+
t(ne),
|
|
157
157
|
{
|
|
158
158
|
ref_key: "LoaderRef",
|
|
159
159
|
ref: u
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
|
-
seal: f(({ index:
|
|
162
|
+
seal: f(({ index: s }) => [
|
|
163
163
|
(p(!0), d(
|
|
164
|
-
|
|
164
|
+
I,
|
|
165
165
|
null,
|
|
166
|
-
T(B.value(
|
|
167
|
-
key:
|
|
168
|
-
style: $(L(
|
|
169
|
-
"data-index":
|
|
170
|
-
class:
|
|
171
|
-
onMousedown: (c) =>
|
|
166
|
+
T(B.value(s), (o) => (p(), d("div", {
|
|
167
|
+
key: o.batchId,
|
|
168
|
+
style: $(L(o)),
|
|
169
|
+
"data-index": s,
|
|
170
|
+
class: r(["contract-seal", [o.batchId === C.value && "mouse-check-seal"]]),
|
|
171
|
+
onMousedown: (c) => t(k).movedown(c, s, o)
|
|
172
172
|
}, [
|
|
173
|
-
i(
|
|
174
|
-
open:
|
|
175
|
-
"onUpdate:open": (c) =>
|
|
176
|
-
placement:
|
|
173
|
+
i(t(J), {
|
|
174
|
+
open: o.popoves[s],
|
|
175
|
+
"onUpdate:open": (c) => o.popoves[s] = c,
|
|
176
|
+
placement: o.offsetX < 100 ? "right" : "bottom",
|
|
177
177
|
"arrow-point-at-center": !0,
|
|
178
178
|
trigger: "click",
|
|
179
179
|
"get-popup-container": V,
|
|
180
180
|
"overlay-inner-style": { width: "450px", border: "1px solid #e4e4e4" }
|
|
181
181
|
}, {
|
|
182
182
|
content: f(() => [
|
|
183
|
-
i(
|
|
184
|
-
show:
|
|
185
|
-
"onUpdate:show": (c) =>
|
|
186
|
-
seal:
|
|
187
|
-
"file-list":
|
|
183
|
+
i(t(se), {
|
|
184
|
+
show: o.popoves[s],
|
|
185
|
+
"onUpdate:show": (c) => o.popoves[s] = c,
|
|
186
|
+
seal: o,
|
|
187
|
+
"file-list": F.value
|
|
188
188
|
}, null, 8, ["show", "onUpdate:show", "seal", "file-list"])
|
|
189
189
|
]),
|
|
190
190
|
title: f(() => [
|
|
191
|
-
|
|
191
|
+
re
|
|
192
192
|
]),
|
|
193
193
|
default: f(() => [
|
|
194
|
-
|
|
195
|
-
|
|
194
|
+
o.signType !== "date" ? (p(), d(
|
|
195
|
+
I,
|
|
196
196
|
{ key: 0 },
|
|
197
197
|
[
|
|
198
198
|
M(" eslint-disable-next-line vue/html-self-closing "),
|
|
199
|
-
|
|
200
|
-
src:
|
|
201
|
-
"data-index":
|
|
199
|
+
n("img", {
|
|
200
|
+
src: o.sealUrl,
|
|
201
|
+
"data-index": s,
|
|
202
202
|
alt: "",
|
|
203
203
|
width: "100%",
|
|
204
204
|
height: "100%"
|
|
205
|
-
}, null, 8,
|
|
205
|
+
}, null, 8, ce)
|
|
206
206
|
],
|
|
207
207
|
64
|
|
208
208
|
/* STABLE_FRAGMENT */
|
|
209
209
|
)) : (p(), d(
|
|
210
210
|
"div",
|
|
211
|
-
|
|
212
|
-
|
|
211
|
+
ue,
|
|
212
|
+
h(o.time),
|
|
213
213
|
1
|
|
214
214
|
/* TEXT */
|
|
215
215
|
))
|
|
@@ -217,42 +217,49 @@ const re = /* @__PURE__ */ s(
|
|
|
217
217
|
_: 2
|
|
218
218
|
/* DYNAMIC */
|
|
219
219
|
}, 1032, ["open", "onUpdate:open", "placement"]),
|
|
220
|
-
|
|
220
|
+
n("div", null, [
|
|
221
|
+
i(t(g), {
|
|
222
|
+
name: "sync",
|
|
223
|
+
color: "#f56c6c",
|
|
224
|
+
size: 18
|
|
225
|
+
})
|
|
226
|
+
]),
|
|
227
|
+
i(t(g), {
|
|
221
228
|
name: "close-circle",
|
|
222
229
|
class: "remove-icon",
|
|
223
230
|
color: "#f56c6c",
|
|
224
231
|
size: 18,
|
|
225
|
-
onClick: (c) => w(
|
|
232
|
+
onClick: (c) => w(o)
|
|
226
233
|
}, null, 8, ["onClick"])
|
|
227
234
|
], 46, ie))),
|
|
228
235
|
128
|
|
229
236
|
/* KEYED_FRAGMENT */
|
|
230
237
|
))
|
|
231
238
|
]),
|
|
232
|
-
crevice: f(({ index:
|
|
239
|
+
crevice: f(({ index: s }) => [
|
|
233
240
|
(p(!0), d(
|
|
234
|
-
|
|
241
|
+
I,
|
|
235
242
|
null,
|
|
236
|
-
T(E.value, (
|
|
237
|
-
key:
|
|
238
|
-
class:
|
|
239
|
-
style: $(L(
|
|
240
|
-
onMousedown: (c) =>
|
|
243
|
+
T(E.value, (o) => (p(), d("div", {
|
|
244
|
+
key: o.sealId,
|
|
245
|
+
class: r([[o.batchId === C.value && "mouse-check-seal"], "contract-crevice-seal"]),
|
|
246
|
+
style: $(L(o)),
|
|
247
|
+
onMousedown: (c) => t(k).movedown(c, s, o)
|
|
241
248
|
}, [
|
|
242
249
|
M(" eslint-disable-next-line vue/html-self-closing "),
|
|
243
|
-
|
|
244
|
-
src:
|
|
250
|
+
n("img", {
|
|
251
|
+
src: o.sealUrl,
|
|
245
252
|
alt: "印模图片;",
|
|
246
253
|
width: "100%"
|
|
247
|
-
}, null, 8,
|
|
248
|
-
i(
|
|
254
|
+
}, null, 8, pe),
|
|
255
|
+
i(t(g), {
|
|
249
256
|
name: "close-circle",
|
|
250
257
|
class: "remove-icon",
|
|
251
258
|
color: "#f56c6c",
|
|
252
259
|
size: 18,
|
|
253
|
-
onClick: (c) => w(
|
|
260
|
+
onClick: (c) => w(o)
|
|
254
261
|
}, null, 8, ["onClick"])
|
|
255
|
-
], 46,
|
|
262
|
+
], 46, de))),
|
|
256
263
|
128
|
|
257
264
|
/* KEYED_FRAGMENT */
|
|
258
265
|
))
|
|
@@ -264,49 +271,49 @@ const re = /* @__PURE__ */ s(
|
|
|
264
271
|
/* NEED_PATCH */
|
|
265
272
|
)
|
|
266
273
|
]),
|
|
267
|
-
|
|
274
|
+
n(
|
|
268
275
|
"div",
|
|
269
276
|
{
|
|
270
|
-
class:
|
|
277
|
+
class: r(t(m)("footer"))
|
|
271
278
|
},
|
|
272
279
|
[
|
|
273
|
-
|
|
280
|
+
n(
|
|
274
281
|
"div",
|
|
275
282
|
{
|
|
276
|
-
class:
|
|
283
|
+
class: r(t(m)("footer-pages"))
|
|
277
284
|
},
|
|
278
285
|
[
|
|
279
|
-
|
|
286
|
+
n(
|
|
280
287
|
"div",
|
|
281
288
|
{
|
|
282
|
-
class:
|
|
289
|
+
class: r(t(S)("footer-pages", "pre")),
|
|
283
290
|
onClick: G
|
|
284
291
|
},
|
|
285
292
|
[
|
|
286
|
-
i(
|
|
287
|
-
|
|
293
|
+
i(t(g), { name: "left" }),
|
|
294
|
+
fe
|
|
288
295
|
],
|
|
289
296
|
2
|
|
290
297
|
/* CLASS */
|
|
291
298
|
),
|
|
292
|
-
|
|
299
|
+
n(
|
|
293
300
|
"div",
|
|
294
301
|
{
|
|
295
|
-
class:
|
|
302
|
+
class: r(t(S)("footer-pages", "page"))
|
|
296
303
|
},
|
|
297
|
-
|
|
304
|
+
h(y.value.current + 1) + "/" + h(t(_).total),
|
|
298
305
|
3
|
|
299
306
|
/* TEXT, CLASS */
|
|
300
307
|
),
|
|
301
|
-
|
|
308
|
+
n(
|
|
302
309
|
"div",
|
|
303
310
|
{
|
|
304
|
-
class:
|
|
311
|
+
class: r(t(S)("footer-pages", "next")),
|
|
305
312
|
onClick: j
|
|
306
313
|
},
|
|
307
314
|
[
|
|
308
|
-
|
|
309
|
-
i(
|
|
315
|
+
me,
|
|
316
|
+
i(t(g), { name: "right" })
|
|
310
317
|
],
|
|
311
318
|
2
|
|
312
319
|
/* CLASS */
|
|
@@ -315,31 +322,31 @@ const re = /* @__PURE__ */ s(
|
|
|
315
322
|
2
|
|
316
323
|
/* CLASS */
|
|
317
324
|
),
|
|
318
|
-
|
|
325
|
+
n(
|
|
319
326
|
"div",
|
|
320
327
|
{
|
|
321
|
-
class:
|
|
328
|
+
class: r(t(m)("page-jump"))
|
|
322
329
|
},
|
|
323
330
|
[
|
|
324
|
-
|
|
325
|
-
|
|
331
|
+
ve,
|
|
332
|
+
n(
|
|
326
333
|
"span",
|
|
327
334
|
{
|
|
328
|
-
class:
|
|
335
|
+
class: r(t(m)("page-input"))
|
|
329
336
|
},
|
|
330
337
|
[
|
|
331
|
-
i(
|
|
338
|
+
i(t(Q), {
|
|
332
339
|
value: N.value,
|
|
333
|
-
"onUpdate:value": l[0] || (l[0] = (
|
|
340
|
+
"onUpdate:value": l[0] || (l[0] = (s) => N.value = s),
|
|
334
341
|
controls: !1,
|
|
335
342
|
bordered: !1,
|
|
336
|
-
onInput:
|
|
343
|
+
onInput: t(Y)
|
|
337
344
|
}, null, 8, ["value", "onInput"])
|
|
338
345
|
],
|
|
339
346
|
2
|
|
340
347
|
/* CLASS */
|
|
341
348
|
),
|
|
342
|
-
|
|
349
|
+
ge
|
|
343
350
|
],
|
|
344
351
|
2
|
|
345
352
|
/* CLASS */
|
|
@@ -348,8 +355,8 @@ const re = /* @__PURE__ */ s(
|
|
|
348
355
|
2
|
|
349
356
|
/* CLASS */
|
|
350
357
|
),
|
|
351
|
-
i(
|
|
352
|
-
onInit:
|
|
358
|
+
i(t(le), {
|
|
359
|
+
onInit: t(U),
|
|
353
360
|
onConfirm: X
|
|
354
361
|
}, null, 8, ["onInit"])
|
|
355
362
|
],
|
|
@@ -359,5 +366,5 @@ const re = /* @__PURE__ */ s(
|
|
|
359
366
|
}
|
|
360
367
|
});
|
|
361
368
|
export {
|
|
362
|
-
|
|
369
|
+
Pe as default
|
|
363
370
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { withInstall as o } from "../utils/install.mjs";
|
|
2
|
+
import "./src/ProTagGroup.vue.mjs";
|
|
3
|
+
import "./style/index.mjs";
|
|
4
|
+
import { ProTagGroupProps as e } from "./src/types.mjs";
|
|
5
|
+
import r from "./src/ProTagGroup.vue2.mjs";
|
|
6
|
+
const i = o(r);
|
|
7
|
+
export {
|
|
8
|
+
i as KProTagGroup,
|
|
9
|
+
e as ProTagGroupProps,
|
|
10
|
+
i as default
|
|
11
|
+
};
|