ui-process-h5 0.1.20 → 0.1.23
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/index.js +596 -0
- package/lib/index.umd.cjs +1 -0
- package/lib/style.css +1 -1
- package/package.json +19 -13
- package/packages/component.ts +3 -3
- package/packages/components/button/index.ts +9 -0
- package/packages/components/button/src/index.vue +55 -0
- package/packages/components/popup/index.ts +11 -0
- package/packages/components/popup/src/index.vue +128 -0
- package/packages/components/process/index.ts +9 -0
- package/packages/components/process/src/index.vue +439 -0
- package/packages/components/tab/src/index.vue +192 -21
- package/packages/components/{theme → utils}/request/api.ts +1 -3
- package/packages/components/{theme → utils}/request/request.ts +3 -3
- package/lib/design.js +0 -163
- package/lib/design.umd.cjs +0 -1
- /package/packages/components/{theme → utils}/request/cache.d.ts +0 -0
- /package/packages/components/{theme → utils}/request/cache.js +0 -0
package/lib/index.js
ADDED
|
@@ -0,0 +1,596 @@
|
|
|
1
|
+
import { defineComponent as N, ref as _, watch as D, onMounted as O, openBlock as n, createElementBlock as r, createElementVNode as t, Fragment as g, renderList as S, normalizeClass as H, toDisplayString as v, createCommentVNode as m, withDirectives as R, renderSlot as k, vShow as Y, pushScopeId as W, popScopeId as z, normalizeStyle as A, computed as U, resolveComponent as F, createVNode as M, withCtx as P, createBlock as G, createTextVNode as q } from "vue";
|
|
2
|
+
const K = N({
|
|
3
|
+
name: "TopTab",
|
|
4
|
+
props: {
|
|
5
|
+
/**
|
|
6
|
+
* 根据参数插入自定义tab
|
|
7
|
+
* label:选项卡title
|
|
8
|
+
* key:选项卡ID 请勿重复defaultTabList内已拥有的默认key
|
|
9
|
+
* type:插槽类型 "slot" "default"
|
|
10
|
+
* sort:排序参数,无参数默认插入末尾
|
|
11
|
+
* slot:插槽name
|
|
12
|
+
*/
|
|
13
|
+
tapList: {
|
|
14
|
+
type: Array,
|
|
15
|
+
default: () => []
|
|
16
|
+
},
|
|
17
|
+
// 自定义tab (传入后 默认tab,tapList,失效)
|
|
18
|
+
selfTapList: {
|
|
19
|
+
type: Array,
|
|
20
|
+
default: () => []
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
setup(e) {
|
|
24
|
+
const s = _(
|
|
25
|
+
"http://59.53.91.231:8088/portal/r/w?sid=6f714ec1-7570-4525-ac51-b092402d8295&cmd=CLIENT_BPM_FORM_TRACK_OPEN&processInstId=1f6e7196-e1ea-428e-b295-aa23a54a2402&supportCanvas=true&formInfo="
|
|
26
|
+
), f = _([
|
|
27
|
+
{
|
|
28
|
+
actionName: "提交",
|
|
29
|
+
activityName: "部门负责人",
|
|
30
|
+
createDate: "2023-04-20 14:47:35",
|
|
31
|
+
createUser: "18ccbf63229f0c79f39940ae284c111e",
|
|
32
|
+
createUserName: "朱鸿飞",
|
|
33
|
+
customUniqueId: "",
|
|
34
|
+
departmentName: "测试部",
|
|
35
|
+
id: "88df38c8-9756-4b4a-a9b0-dcb0ec1b57d5",
|
|
36
|
+
metaAnnexList: null,
|
|
37
|
+
msg: "同意",
|
|
38
|
+
positionName: "测试部119147",
|
|
39
|
+
processInstId: "1f6e7196-e1ea-428e-b295-aa23a54a2402",
|
|
40
|
+
taskInstId: "38bbef1c-efbb-456d-bd79-08ed9d96b4b3"
|
|
41
|
+
}
|
|
42
|
+
]), i = _(""), c = _([
|
|
43
|
+
{
|
|
44
|
+
label: "基本信息",
|
|
45
|
+
key: "a",
|
|
46
|
+
type: "default",
|
|
47
|
+
slot: "default"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
label: "流程图",
|
|
51
|
+
key: "b",
|
|
52
|
+
type: "default",
|
|
53
|
+
slot: "tab2"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
label: "审批记录",
|
|
57
|
+
key: "c",
|
|
58
|
+
type: "default",
|
|
59
|
+
slot: "tab3"
|
|
60
|
+
}
|
|
61
|
+
]), d = _([
|
|
62
|
+
{
|
|
63
|
+
label: "基本信息",
|
|
64
|
+
key: "a",
|
|
65
|
+
type: "default",
|
|
66
|
+
slot: "default"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
label: "流程图",
|
|
70
|
+
key: "b",
|
|
71
|
+
type: "default",
|
|
72
|
+
slot: "tab2"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
label: "审批记录",
|
|
76
|
+
key: "c",
|
|
77
|
+
type: "default",
|
|
78
|
+
slot: "tab3"
|
|
79
|
+
}
|
|
80
|
+
]), a = _(), y = (l, b) => {
|
|
81
|
+
l !== i.value && (i.value = l, p(b));
|
|
82
|
+
}, p = (l) => {
|
|
83
|
+
if (a.value.length) {
|
|
84
|
+
let b = document.getElementsByClassName("bottom-line")[0], u;
|
|
85
|
+
if (b.offsetWidth < a.value[l].offsetWidth - 10) {
|
|
86
|
+
let h = (a.value[l].offsetWidth - b.offsetWidth - 10) / 2;
|
|
87
|
+
u = `${a.value[l].offsetLeft + h}px`;
|
|
88
|
+
} else if (b.offsetWidth > a.value[l].offsetWidth - 10) {
|
|
89
|
+
let h = (b.offsetWidth - a.value[l].offsetWidth + 10) / 2;
|
|
90
|
+
u = `${a.value[l].offsetLeft - h}px`;
|
|
91
|
+
} else
|
|
92
|
+
u = `${a.value[l].offsetLeft}px`;
|
|
93
|
+
b.style.transition = ".3s", b.style.transform = `translateX(${u})`;
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
return D(
|
|
97
|
+
() => e.selfTapList,
|
|
98
|
+
(l, b) => {
|
|
99
|
+
l.length && (d.value = [].concat(l), i.value = d.value[0].key);
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
//如果加了这个参数,值为true的话,就消除了惰性,watch会在创建后立即执行一次
|
|
103
|
+
//那么首次执行,val为默认值,preVal为undefined
|
|
104
|
+
immediate: !0,
|
|
105
|
+
//这个参数代表监听对象时,可以监听深度嵌套的对象属性
|
|
106
|
+
deep: !0
|
|
107
|
+
}
|
|
108
|
+
), D(
|
|
109
|
+
() => e.tapList,
|
|
110
|
+
(l, b) => {
|
|
111
|
+
e.selfTapList.length || (d.value = [].concat(c.value), l.length > 0 && l.forEach((u, h) => {
|
|
112
|
+
u.sort && u.sort > 1 ? d.value.splice(u.sort - 1, 0, u) : u.sort == 1 ? d.value.unshift(u) : d.value.push(u);
|
|
113
|
+
}), i.value = d.value[0].key);
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
//如果加了这个参数,值为true的话,就消除了惰性,watch会在创建后立即执行一次
|
|
117
|
+
//那么首次执行,val为默认值,preVal为undefined
|
|
118
|
+
immediate: !0,
|
|
119
|
+
//这个参数代表监听对象时,可以监听深度嵌套的对象属性
|
|
120
|
+
deep: !0
|
|
121
|
+
}
|
|
122
|
+
), O(() => {
|
|
123
|
+
p(0);
|
|
124
|
+
}), {
|
|
125
|
+
isTapList: d,
|
|
126
|
+
active: i,
|
|
127
|
+
handleActive: y,
|
|
128
|
+
label: a,
|
|
129
|
+
taskCommentList: f,
|
|
130
|
+
trackUrl: s
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
});
|
|
134
|
+
const w = (e, s) => {
|
|
135
|
+
const f = e.__vccOpts || e;
|
|
136
|
+
for (const [i, c] of s)
|
|
137
|
+
f[i] = c;
|
|
138
|
+
return f;
|
|
139
|
+
}, $ = (e) => (W("data-v-baad7ff1"), e = e(), z(), e), X = { class: "tops-tab" }, J = { class: "tops-tab-header" }, Q = ["onClick"], Z = {
|
|
140
|
+
key: 0,
|
|
141
|
+
class: "bottom-line"
|
|
142
|
+
}, x = { class: "tops-tab-body" }, ee = ["src"], te = {
|
|
143
|
+
key: 1,
|
|
144
|
+
class: "textnone"
|
|
145
|
+
}, se = { class: "seal-list__item--option" }, ae = /* @__PURE__ */ $(() => /* @__PURE__ */ t("span", null, "节点名称", -1)), oe = { class: "seal-list__item--option" }, ne = /* @__PURE__ */ $(() => /* @__PURE__ */ t("span", null, "审批人", -1)), le = { class: "seal-list__item--option" }, ue = /* @__PURE__ */ $(() => /* @__PURE__ */ t("span", null, "审批操作", -1)), re = { class: "seal-list__item--option" }, ie = /* @__PURE__ */ $(() => /* @__PURE__ */ t("span", null, "审批意见", -1)), ce = ["innerHTML"], de = { class: "seal-list__item--option" }, pe = /* @__PURE__ */ $(() => /* @__PURE__ */ t("span", null, "审批时间", -1)), fe = {
|
|
146
|
+
key: 0,
|
|
147
|
+
class: "seal-list__item--attch"
|
|
148
|
+
}, me = /* @__PURE__ */ $(() => /* @__PURE__ */ t("span", null, "查看附件", -1)), be = [
|
|
149
|
+
me
|
|
150
|
+
], _e = {
|
|
151
|
+
key: 1,
|
|
152
|
+
class: "textnone"
|
|
153
|
+
};
|
|
154
|
+
function ve(e, s, f, i, c, d) {
|
|
155
|
+
return n(), r("div", X, [
|
|
156
|
+
t("div", J, [
|
|
157
|
+
(n(!0), r(g, null, S(e.isTapList, (a, y) => (n(), r("div", {
|
|
158
|
+
class: H(["tops-tab-header-items", [a.key === e.active ? "active" : ""]]),
|
|
159
|
+
onClick: (p) => e.handleActive(a.key, y),
|
|
160
|
+
ref_for: !0,
|
|
161
|
+
ref: "label"
|
|
162
|
+
}, v(a.label), 11, Q))), 256)),
|
|
163
|
+
e.isTapList.length ? (n(), r("div", Z)) : m("", !0)
|
|
164
|
+
]),
|
|
165
|
+
t("div", x, [
|
|
166
|
+
(n(!0), r(g, null, S(e.isTapList, (a) => R((n(), r("div", {
|
|
167
|
+
key: a.key,
|
|
168
|
+
style: { height: "calc(100% - 45px)" }
|
|
169
|
+
}, [
|
|
170
|
+
a.key === "a" && a.type === "default" ? k(e.$slots, "default", { key: 0 }, void 0, !0) : m("", !0),
|
|
171
|
+
a.key === "b" && a.type === "default" ? k(e.$slots, a.slot, { key: 1 }, () => [
|
|
172
|
+
e.trackUrl ? (n(), r("iframe", {
|
|
173
|
+
key: 0,
|
|
174
|
+
src: e.trackUrl,
|
|
175
|
+
style: { width: "100%", "min-height": "500px", border: "none" },
|
|
176
|
+
scrolling: "no",
|
|
177
|
+
frameborder: "0"
|
|
178
|
+
}, null, 8, ee)) : (n(), r("div", te, " 暂无流程图 "))
|
|
179
|
+
], !0) : m("", !0),
|
|
180
|
+
a.key === "c" && a.type === "default" ? k(e.$slots, a.slot, { key: 2 }, () => {
|
|
181
|
+
var y;
|
|
182
|
+
return [
|
|
183
|
+
((y = e.taskCommentList) == null ? void 0 : y.length) > 0 ? (n(!0), r(g, { key: 0 }, S(e.taskCommentList, (p, l) => (n(), r("div", {
|
|
184
|
+
key: p.id,
|
|
185
|
+
class: "seal-list__item"
|
|
186
|
+
}, [
|
|
187
|
+
t("div", null, [
|
|
188
|
+
t("div", se, [
|
|
189
|
+
ae,
|
|
190
|
+
t("span", null, v(p.activityName), 1)
|
|
191
|
+
]),
|
|
192
|
+
t("div", oe, [
|
|
193
|
+
ne,
|
|
194
|
+
t("span", null, v(p.createUserName), 1)
|
|
195
|
+
]),
|
|
196
|
+
t("div", le, [
|
|
197
|
+
ue,
|
|
198
|
+
t("span", null, v(p.actionName), 1)
|
|
199
|
+
]),
|
|
200
|
+
t("div", re, [
|
|
201
|
+
ie,
|
|
202
|
+
t("span", {
|
|
203
|
+
innerHTML: p.msg
|
|
204
|
+
}, null, 8, ce)
|
|
205
|
+
]),
|
|
206
|
+
t("div", de, [
|
|
207
|
+
pe,
|
|
208
|
+
t("span", null, v(p.createDate), 1)
|
|
209
|
+
]),
|
|
210
|
+
p.metaAnnexList && p.metaAnnexList.length ? (n(), r("div", fe, be)) : m("", !0)
|
|
211
|
+
])
|
|
212
|
+
]))), 128)) : (n(), r("div", _e, "暂无数据"))
|
|
213
|
+
];
|
|
214
|
+
}, !0) : m("", !0),
|
|
215
|
+
a.type == "slot" ? k(e.$slots, a.slot, { key: 3 }, void 0, !0) : m("", !0)
|
|
216
|
+
])), [
|
|
217
|
+
[Y, e.active === a.key]
|
|
218
|
+
])), 128))
|
|
219
|
+
])
|
|
220
|
+
]);
|
|
221
|
+
}
|
|
222
|
+
const B = /* @__PURE__ */ w(K, [["render", ve], ["__scopeId", "data-v-baad7ff1"]]);
|
|
223
|
+
B.install = function(e) {
|
|
224
|
+
return e.component(B.name, B), e;
|
|
225
|
+
};
|
|
226
|
+
const he = N({
|
|
227
|
+
name: "TopPopup",
|
|
228
|
+
props: {
|
|
229
|
+
titleText: { default: "top-popup", type: String },
|
|
230
|
+
cancelText: { default: "取消", type: String },
|
|
231
|
+
comfigText: { default: "确定", type: String },
|
|
232
|
+
comfig: { default: null, type: Function },
|
|
233
|
+
cancel: { default: null, type: Function },
|
|
234
|
+
isMask: { require: !1, default: !0, type: Boolean },
|
|
235
|
+
isMaskClose: { require: !1, default: !0, type: Boolean }
|
|
236
|
+
},
|
|
237
|
+
setup(e) {
|
|
238
|
+
const s = _(!1), f = () => {
|
|
239
|
+
s.value = !0;
|
|
240
|
+
}, i = () => {
|
|
241
|
+
typeof e.cancel == "function" && e.cancel(), d();
|
|
242
|
+
}, c = () => {
|
|
243
|
+
typeof e.comfig == "function" && e.comfig();
|
|
244
|
+
}, d = () => {
|
|
245
|
+
s.value = !1;
|
|
246
|
+
};
|
|
247
|
+
return O(() => {
|
|
248
|
+
document.querySelector("body");
|
|
249
|
+
}), {
|
|
250
|
+
handleOpen: f,
|
|
251
|
+
handleCancel: i,
|
|
252
|
+
handleComfig: c,
|
|
253
|
+
handleClose: d,
|
|
254
|
+
show: s
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
});
|
|
258
|
+
const ye = { class: "top-popup-header" }, ke = { class: "header-title" }, ge = { class: "top-popup-body" };
|
|
259
|
+
function $e(e, s, f, i, c, d) {
|
|
260
|
+
return n(), r(g, null, [
|
|
261
|
+
t("div", {
|
|
262
|
+
class: "top-popup",
|
|
263
|
+
style: A(
|
|
264
|
+
e.show ? "transform: translateY(0)" : "transform: translateY(100%)"
|
|
265
|
+
)
|
|
266
|
+
}, [
|
|
267
|
+
t("div", ye, [
|
|
268
|
+
t("div", {
|
|
269
|
+
class: "header-cancel",
|
|
270
|
+
onClick: s[0] || (s[0] = (...a) => e.handleCancel && e.handleCancel(...a))
|
|
271
|
+
}, v(e.cancelText), 1),
|
|
272
|
+
t("div", ke, v(e.titleText), 1),
|
|
273
|
+
t("div", {
|
|
274
|
+
class: "header-comfig",
|
|
275
|
+
onClick: s[1] || (s[1] = (...a) => e.handleComfig && e.handleComfig(...a))
|
|
276
|
+
}, v(e.comfigText), 1)
|
|
277
|
+
]),
|
|
278
|
+
t("div", ge, [
|
|
279
|
+
k(e.$slots, "default", {}, void 0, !0)
|
|
280
|
+
])
|
|
281
|
+
], 4),
|
|
282
|
+
e.show && e.isMask ? (n(), r("div", {
|
|
283
|
+
key: 0,
|
|
284
|
+
class: "top-popup-mask",
|
|
285
|
+
onClick: s[2] || (s[2] = (a) => e.isMaskClose && e.handleClose())
|
|
286
|
+
})) : m("", !0)
|
|
287
|
+
], 64);
|
|
288
|
+
}
|
|
289
|
+
const T = /* @__PURE__ */ w(he, [["render", $e], ["__scopeId", "data-v-474e328a"]]);
|
|
290
|
+
T.install = function(e) {
|
|
291
|
+
return console.log("TopPopup.install", e), e.mount(T), e.component(T.name, T), e;
|
|
292
|
+
};
|
|
293
|
+
const Ce = N({
|
|
294
|
+
name: "TopButton",
|
|
295
|
+
props: {
|
|
296
|
+
type: { default: "default", type: String }
|
|
297
|
+
},
|
|
298
|
+
setup(e) {
|
|
299
|
+
const s = _({
|
|
300
|
+
textColor: "#fff",
|
|
301
|
+
bckColor: "3c9cff"
|
|
302
|
+
});
|
|
303
|
+
switch (e.type) {
|
|
304
|
+
case "primary":
|
|
305
|
+
s.value.textColor = "#fff", s.value.bckColor = "#3c9cff";
|
|
306
|
+
break;
|
|
307
|
+
case "danger":
|
|
308
|
+
s.value.textColor = "rgb(255, 96, 96)", s.value.bckColor = "rgb(255, 230, 230)";
|
|
309
|
+
break;
|
|
310
|
+
case "default":
|
|
311
|
+
s.value.textColor = "rgb(51, 51, 51)", s.value.bckColor = "rgb(241, 241, 241)";
|
|
312
|
+
break;
|
|
313
|
+
}
|
|
314
|
+
return {
|
|
315
|
+
style: s
|
|
316
|
+
};
|
|
317
|
+
}
|
|
318
|
+
});
|
|
319
|
+
function Te(e, s, f, i, c, d) {
|
|
320
|
+
return n(), r("div", {
|
|
321
|
+
class: "top-button",
|
|
322
|
+
style: A(`background-color:${e.style.bckColor};color:${e.style.textColor}`)
|
|
323
|
+
}, [
|
|
324
|
+
k(e.$slots, "default", {}, void 0, !0)
|
|
325
|
+
], 4);
|
|
326
|
+
}
|
|
327
|
+
const L = /* @__PURE__ */ w(Ce, [["render", Te], ["__scopeId", "data-v-156a54e6"]]);
|
|
328
|
+
L.install = function(e) {
|
|
329
|
+
return e.component(L.name, L), e;
|
|
330
|
+
};
|
|
331
|
+
const Be = N({
|
|
332
|
+
name: "TopProcess",
|
|
333
|
+
components: {
|
|
334
|
+
TopTab: B,
|
|
335
|
+
TopPopup: T,
|
|
336
|
+
TopButton: L
|
|
337
|
+
},
|
|
338
|
+
props: {
|
|
339
|
+
tapList: { require: !1, default: () => [], type: Array },
|
|
340
|
+
processId: { require: !0, default: "", type: String },
|
|
341
|
+
processDefId: { require: !0, default: "", type: String },
|
|
342
|
+
taskId: { require: !0, default: "", type: String },
|
|
343
|
+
isAdditional: { require: !1, default: !1, type: Boolean },
|
|
344
|
+
isView: { default: !1, type: Boolean }
|
|
345
|
+
},
|
|
346
|
+
setup(e) {
|
|
347
|
+
const s = _({}), f = _(), i = _([
|
|
348
|
+
{
|
|
349
|
+
taskId: "ecd82a93-4a62-42a7-b7bd-df38d2f1609a",
|
|
350
|
+
taskState: 1,
|
|
351
|
+
nodeId: "obj_026aac284c1a4303854f978b674be4b9",
|
|
352
|
+
customUniqueId: "",
|
|
353
|
+
nodeName: "部门负责人"
|
|
354
|
+
}
|
|
355
|
+
]), c = _({
|
|
356
|
+
id: "obj_026aac284c1a4303854f978b674be4b9",
|
|
357
|
+
name: "部门负责人",
|
|
358
|
+
no: "1",
|
|
359
|
+
buttons: [],
|
|
360
|
+
ccTaskButtonLabel: "",
|
|
361
|
+
ccTaskButtonAnnex: null,
|
|
362
|
+
completeButtonLabel: "同意",
|
|
363
|
+
completeButtonAnnex: null,
|
|
364
|
+
delegateTaskButtonLabel: "转办",
|
|
365
|
+
delegateTaskButtonAnnex: null,
|
|
366
|
+
printFormButtonLabel: "",
|
|
367
|
+
supplyUnusualTransferButtonLabel: "",
|
|
368
|
+
readingOfficeLabel: "",
|
|
369
|
+
readingOfficeButtonAnnex: null,
|
|
370
|
+
jointlySignLabel: "",
|
|
371
|
+
jointlySignButtonAnnex: null,
|
|
372
|
+
counterSignLabel: "加签",
|
|
373
|
+
counterSignButtonAnnex: null,
|
|
374
|
+
coordinationLabel: "",
|
|
375
|
+
coordinationButtonAnnex: null,
|
|
376
|
+
otherButtonAnnexList: null,
|
|
377
|
+
humanPerformer: {
|
|
378
|
+
id: "obj_2bd3494ae5c54309b7f2ea452921790b",
|
|
379
|
+
name: "任意指定",
|
|
380
|
+
resourceAssignmentExpressionModel: {
|
|
381
|
+
formalExpression: ""
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
commentModels: [
|
|
385
|
+
{
|
|
386
|
+
actionName: "提交",
|
|
387
|
+
isDefault: !0
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
actionName: "作废",
|
|
391
|
+
isDefault: !1
|
|
392
|
+
}
|
|
393
|
+
],
|
|
394
|
+
routeTxt: {
|
|
395
|
+
departmentIds: null,
|
|
396
|
+
companyIds: null,
|
|
397
|
+
teamList: null,
|
|
398
|
+
routeType: "DynamicUsers"
|
|
399
|
+
},
|
|
400
|
+
loopCardinality: 1,
|
|
401
|
+
isHistoryRoute: !1,
|
|
402
|
+
participantList: null,
|
|
403
|
+
historyRoute: !1
|
|
404
|
+
});
|
|
405
|
+
D(
|
|
406
|
+
() => e.processId,
|
|
407
|
+
(u, h) => {
|
|
408
|
+
u && (s.value = {
|
|
409
|
+
status: "审批中",
|
|
410
|
+
createUid: "18ccbf63229f0c79f39940ae284c111e",
|
|
411
|
+
createTopUserId: "128ec9c9b7f26135272596fe01c57690",
|
|
412
|
+
createTime: "2023-04-20 15:01:48",
|
|
413
|
+
currUserName: "朱鸿飞",
|
|
414
|
+
allUserNames: ["朱鸿飞"],
|
|
415
|
+
userNodeGroup: {
|
|
416
|
+
分管领导: ["朱鸿飞"]
|
|
417
|
+
},
|
|
418
|
+
appId: "com.awspaas.user.apps.top.study.project",
|
|
419
|
+
statusCode: "1",
|
|
420
|
+
statusName: "审批中",
|
|
421
|
+
bizStatusName: "审批中",
|
|
422
|
+
taskState: 1
|
|
423
|
+
});
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
//如果加了这个参数,值为true的话,就消除了惰性,watch会在创建后立即执行一次
|
|
427
|
+
//那么首次执行,val为默认值,preVal为undefined
|
|
428
|
+
immediate: !0,
|
|
429
|
+
//这个参数代表监听对象时,可以监听深度嵌套的对象属性
|
|
430
|
+
deep: !0
|
|
431
|
+
}
|
|
432
|
+
), console.log("asd", i.value[0].taskState);
|
|
433
|
+
const d = U(() => {
|
|
434
|
+
var j, V;
|
|
435
|
+
let u = [], h = i.value && i.value[0] && i.value[0].taskState != 4;
|
|
436
|
+
if (h && !e.isView && c.value.completeButtonLabel) {
|
|
437
|
+
let o = {};
|
|
438
|
+
o.name = c.value.completeButtonLabel, o.btnProps = { type: "primary" }, u.push(o);
|
|
439
|
+
}
|
|
440
|
+
if (h && !e.isView && s.value.currUserName) {
|
|
441
|
+
let o = {};
|
|
442
|
+
o.name = "拒绝", o.btnProps = { type: "danger" }, u.push(o);
|
|
443
|
+
}
|
|
444
|
+
if (h && !e.isView && c.value.buttons && c.value.buttons.length && c.value.buttons.forEach((o) => {
|
|
445
|
+
if (o.label === "退回") {
|
|
446
|
+
let E = {};
|
|
447
|
+
E.name = o.label, E.btnProps = { type: "danger" }, u.push(E);
|
|
448
|
+
}
|
|
449
|
+
}), h && !e.isView && c.value.delegateTaskButtonLabel) {
|
|
450
|
+
let o = {};
|
|
451
|
+
o.name = c.value.delegateTaskButtonLabel, o.btnProps = { type: "default" }, u.push(o);
|
|
452
|
+
}
|
|
453
|
+
if (e.processId && s.value.createTopUserId == e.userId && ((j = i.value[0]) == null ? void 0 : j.taskState) != 2 && s.value.status !== "已驳回" && s.value.status !== "已撤销") {
|
|
454
|
+
let o = {};
|
|
455
|
+
o.name = "催办", o.btnProps = { type: "default" }, u.push(o);
|
|
456
|
+
}
|
|
457
|
+
if (e.processId && s.value.createTopUserId == e.userId && ((V = i.value[0]) == null ? void 0 : V.taskState) != 2 && s.value.status !== "已驳回" && s.value.status !== "已撤销") {
|
|
458
|
+
let o = {};
|
|
459
|
+
o.name = "撤销", o.btnProps = { type: "default" }, u.push(o);
|
|
460
|
+
}
|
|
461
|
+
if (h && !e.isView && c.value.counterSignLabel) {
|
|
462
|
+
let o = {};
|
|
463
|
+
o.name = c.value.counterSignLabel, o.btnProps = { type: "primary" }, u.push(o);
|
|
464
|
+
}
|
|
465
|
+
return u;
|
|
466
|
+
}), a = U(() => d.value.length > 3 ? d.value.slice(3) : []), y = () => {
|
|
467
|
+
console.log("handleCancel");
|
|
468
|
+
}, p = () => {
|
|
469
|
+
console.log("handleComfig", "确定按钮"), f.value.handleClose();
|
|
470
|
+
}, l = U(() => "calc(100vh - 205px)");
|
|
471
|
+
return {
|
|
472
|
+
processStatus: s,
|
|
473
|
+
processCardHeight: l,
|
|
474
|
+
handleTest: () => {
|
|
475
|
+
f.value.handleOpen();
|
|
476
|
+
},
|
|
477
|
+
TopPopup1: f,
|
|
478
|
+
handleCancel: y,
|
|
479
|
+
handleComfig: p,
|
|
480
|
+
operBtn: d,
|
|
481
|
+
actionBtn: a
|
|
482
|
+
};
|
|
483
|
+
},
|
|
484
|
+
methods: {
|
|
485
|
+
getColor(e) {
|
|
486
|
+
return e == "审核中" ? "#FFA52D" : e == "已驳回" ? "#F14B4C" : e == "已撤销" ? "#CECECE" : e == "已完成" ? "#6DC743" : "#1389FF";
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
});
|
|
490
|
+
const C = (e) => (W("data-v-41bcbb23"), e = e(), z(), e), Se = { class: "process-warp" }, Le = {
|
|
491
|
+
key: 0,
|
|
492
|
+
class: "process-main"
|
|
493
|
+
}, Ie = { class: "process-ml-item border" }, Ae = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "process-mli-name" }, "流程状态", -1)), Ne = { class: "process-mli-value" }, we = { class: "process-ml-item border" }, Ee = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "process-mli-name" }, "流程发起时间", -1)), Ue = { class: "process-mli-value" }, Fe = {
|
|
494
|
+
key: 0,
|
|
495
|
+
class: "process-ml-item"
|
|
496
|
+
}, Pe = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "process-mli-name" }, "审批节点", -1)), De = { class: "process-mli-value" }, je = { class: "process-mliv-jd" }, Ve = {
|
|
497
|
+
key: 1,
|
|
498
|
+
class: "process-foot"
|
|
499
|
+
}, Me = { class: "footBtnRow" }, qe = { class: "process-btn" }, Oe = {
|
|
500
|
+
key: 1,
|
|
501
|
+
class: "elips"
|
|
502
|
+
}, We = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "circle" }, null, -1)), ze = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "circle" }, null, -1)), He = /* @__PURE__ */ C(() => /* @__PURE__ */ t("div", { class: "circle" }, null, -1)), Re = [
|
|
503
|
+
We,
|
|
504
|
+
ze,
|
|
505
|
+
He
|
|
506
|
+
];
|
|
507
|
+
function Ye(e, s, f, i, c, d) {
|
|
508
|
+
const a = F("TopTab"), y = F("TopButton"), p = F("TopPopup");
|
|
509
|
+
return n(), r(g, null, [
|
|
510
|
+
t("div", Se, [
|
|
511
|
+
e.processStatus.status ? (n(), r("div", Le, [
|
|
512
|
+
t("div", Ie, [
|
|
513
|
+
Ae,
|
|
514
|
+
t("div", Ne, [
|
|
515
|
+
e.processStatus.status || e.processStatus.bizStatusName ? (n(), r("div", {
|
|
516
|
+
key: 0,
|
|
517
|
+
class: "process-mliv-dd",
|
|
518
|
+
style: A({ background: e.getColor(e.processStatus.status) })
|
|
519
|
+
}, v(e.processStatus.bizStatusName ? e.processStatus.bizStatusName : e.processStatus.status), 5)) : m("", !0)
|
|
520
|
+
])
|
|
521
|
+
]),
|
|
522
|
+
t("div", we, [
|
|
523
|
+
Ee,
|
|
524
|
+
t("div", Ue, [
|
|
525
|
+
t("span", null, v(e.processStatus.createTime), 1)
|
|
526
|
+
])
|
|
527
|
+
]),
|
|
528
|
+
e.processStatus.allUserNames && e.processStatus.allUserNames.length ? (n(), r("div", Fe, [
|
|
529
|
+
Pe,
|
|
530
|
+
t("div", De, [
|
|
531
|
+
t("span", je, v(`${e.processStatus.taskState == 4 ? e.processStatus.currUserName : e.processStatus.allUserNames.toString()}审批中`), 1)
|
|
532
|
+
])
|
|
533
|
+
])) : m("", !0)
|
|
534
|
+
])) : m("", !0),
|
|
535
|
+
t("div", {
|
|
536
|
+
class: "process-card",
|
|
537
|
+
style: A({ height: e.processCardHeight })
|
|
538
|
+
}, [
|
|
539
|
+
M(a, { tapList: e.tapList }, {
|
|
540
|
+
default: P(() => [
|
|
541
|
+
k(e.$slots, "default", {}, void 0, !0)
|
|
542
|
+
]),
|
|
543
|
+
_: 3
|
|
544
|
+
}, 8, ["tapList"])
|
|
545
|
+
], 4),
|
|
546
|
+
e.isAdditional ? (n(), r("div", Ve, [
|
|
547
|
+
t("div", Me, [
|
|
548
|
+
k(e.$slots, "btn", {}, void 0, !0)
|
|
549
|
+
])
|
|
550
|
+
])) : m("", !0),
|
|
551
|
+
t("div", qe, [
|
|
552
|
+
e.processStatus.status != "已完成" ? (n(!0), r(g, { key: 0 }, S(e.operBtn, (l, b) => (n(), r(g, {
|
|
553
|
+
key: l.name
|
|
554
|
+
}, [
|
|
555
|
+
b < 3 ? (n(), G(y, {
|
|
556
|
+
key: 0,
|
|
557
|
+
onClick: e.handleTest,
|
|
558
|
+
type: l.btnProps.type
|
|
559
|
+
}, {
|
|
560
|
+
default: P(() => [
|
|
561
|
+
q(v(l.name), 1)
|
|
562
|
+
]),
|
|
563
|
+
_: 2
|
|
564
|
+
}, 1032, ["onClick", "type"])) : m("", !0)
|
|
565
|
+
], 64))), 128)) : m("", !0),
|
|
566
|
+
e.operBtn.length > 3 ? (n(), r("div", Oe, Re)) : m("", !0)
|
|
567
|
+
])
|
|
568
|
+
]),
|
|
569
|
+
M(p, {
|
|
570
|
+
ref: "TopPopup1",
|
|
571
|
+
cancel: e.handleCancel,
|
|
572
|
+
comfig: e.handleComfig
|
|
573
|
+
}, {
|
|
574
|
+
default: P(() => [
|
|
575
|
+
q(" csaasd1 ")
|
|
576
|
+
]),
|
|
577
|
+
_: 1
|
|
578
|
+
}, 8, ["cancel", "comfig"])
|
|
579
|
+
], 64);
|
|
580
|
+
}
|
|
581
|
+
const I = /* @__PURE__ */ w(Be, [["render", Ye], ["__scopeId", "data-v-41bcbb23"]]);
|
|
582
|
+
I.install = function(e) {
|
|
583
|
+
return e.component(I.name, I), e;
|
|
584
|
+
};
|
|
585
|
+
const Ge = [B, I], Ke = function(e) {
|
|
586
|
+
Ge.forEach((s) => {
|
|
587
|
+
e.use(s);
|
|
588
|
+
});
|
|
589
|
+
}, Je = {
|
|
590
|
+
install: Ke
|
|
591
|
+
};
|
|
592
|
+
export {
|
|
593
|
+
I as TopProcess,
|
|
594
|
+
B as TopTab,
|
|
595
|
+
Je as default
|
|
596
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(_,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(_=typeof globalThis<"u"?globalThis:_||self,e(_.Index={},_.Vue))})(this,function(_,e){"use strict";const V=e.defineComponent({name:"TopTab",props:{tapList:{type:Array,default:()=>[]},selfTapList:{type:Array,default:()=>[]}},setup(t){const o=e.ref("http://59.53.91.231:8088/portal/r/w?sid=6f714ec1-7570-4525-ac51-b092402d8295&cmd=CLIENT_BPM_FORM_TRACK_OPEN&processInstId=1f6e7196-e1ea-428e-b295-aa23a54a2402&supportCanvas=true&formInfo="),p=e.ref([{actionName:"提交",activityName:"部门负责人",createDate:"2023-04-20 14:47:35",createUser:"18ccbf63229f0c79f39940ae284c111e",createUserName:"朱鸿飞",customUniqueId:"",departmentName:"测试部",id:"88df38c8-9756-4b4a-a9b0-dcb0ec1b57d5",metaAnnexList:null,msg:"同意",positionName:"测试部119147",processInstId:"1f6e7196-e1ea-428e-b295-aa23a54a2402",taskInstId:"38bbef1c-efbb-456d-bd79-08ed9d96b4b3"}]),r=e.ref(""),c=e.ref([{label:"基本信息",key:"a",type:"default",slot:"default"},{label:"流程图",key:"b",type:"default",slot:"tab2"},{label:"审批记录",key:"c",type:"default",slot:"tab3"}]),i=e.ref([{label:"基本信息",key:"a",type:"default",slot:"default"},{label:"流程图",key:"b",type:"default",slot:"tab2"},{label:"审批记录",key:"c",type:"default",slot:"tab3"}]),s=e.ref(),f=(a,m)=>{a!==r.value&&(r.value=a,d(m))},d=a=>{if(s.value.length){let m=document.getElementsByClassName("bottom-line")[0],l;if(m.offsetWidth<s.value[a].offsetWidth-10){let u=(s.value[a].offsetWidth-m.offsetWidth-10)/2;l=`${s.value[a].offsetLeft+u}px`}else if(m.offsetWidth>s.value[a].offsetWidth-10){let u=(m.offsetWidth-s.value[a].offsetWidth+10)/2;l=`${s.value[a].offsetLeft-u}px`}else l=`${s.value[a].offsetLeft}px`;m.style.transition=".3s",m.style.transform=`translateX(${l})`}};return e.watch(()=>t.selfTapList,(a,m)=>{a.length&&(i.value=[].concat(a),r.value=i.value[0].key)},{immediate:!0,deep:!0}),e.watch(()=>t.tapList,(a,m)=>{t.selfTapList.length||(i.value=[].concat(c.value),a.length>0&&a.forEach((l,u)=>{l.sort&&l.sort>1?i.value.splice(l.sort-1,0,l):l.sort==1?i.value.unshift(l):i.value.push(l)}),r.value=i.value[0].key)},{immediate:!0,deep:!0}),e.onMounted(()=>{d(0)}),{isTapList:i,active:r,handleActive:f,label:s,taskCommentList:p,trackUrl:o}}}),Ee="",B=(t,o)=>{const p=t.__vccOpts||t;for(const[r,c]of o)p[r]=c;return p},h=t=>(e.pushScopeId("data-v-baad7ff1"),t=t(),e.popScopeId(),t),$={class:"tops-tab"},T={class:"tops-tab-header"},L=["onClick"],I={key:0,class:"bottom-line"},A={class:"tops-tab-body"},D=["src"],F={key:1,class:"textnone"},w={class:"seal-list__item--option"},P=h(()=>e.createElementVNode("span",null,"节点名称",-1)),U={class:"seal-list__item--option"},j=h(()=>e.createElementVNode("span",null,"审批人",-1)),M={class:"seal-list__item--option"},q=h(()=>e.createElementVNode("span",null,"审批操作",-1)),z={class:"seal-list__item--option"},O=h(()=>e.createElementVNode("span",null,"审批意见",-1)),W=["innerHTML"],H={class:"seal-list__item--option"},R=h(()=>e.createElementVNode("span",null,"审批时间",-1)),Y={key:0,class:"seal-list__item--attch"},G=[h(()=>e.createElementVNode("span",null,"查看附件",-1))],K={key:1,class:"textnone"};function X(t,o,p,r,c,i){return e.openBlock(),e.createElementBlock("div",$,[e.createElementVNode("div",T,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.isTapList,(s,f)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["tops-tab-header-items",[s.key===t.active?"active":""]]),onClick:d=>t.handleActive(s.key,f),ref_for:!0,ref:"label"},e.toDisplayString(s.label),11,L))),256)),t.isTapList.length?(e.openBlock(),e.createElementBlock("div",I)):e.createCommentVNode("",!0)]),e.createElementVNode("div",A,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.isTapList,s=>e.withDirectives((e.openBlock(),e.createElementBlock("div",{key:s.key,style:{height:"calc(100% - 45px)"}},[s.key==="a"&&s.type==="default"?e.renderSlot(t.$slots,"default",{key:0},void 0,!0):e.createCommentVNode("",!0),s.key==="b"&&s.type==="default"?e.renderSlot(t.$slots,s.slot,{key:1},()=>[t.trackUrl?(e.openBlock(),e.createElementBlock("iframe",{key:0,src:t.trackUrl,style:{width:"100%","min-height":"500px",border:"none"},scrolling:"no",frameborder:"0"},null,8,D)):(e.openBlock(),e.createElementBlock("div",F," 暂无流程图 "))],!0):e.createCommentVNode("",!0),s.key==="c"&&s.type==="default"?e.renderSlot(t.$slots,s.slot,{key:2},()=>{var f;return[((f=t.taskCommentList)==null?void 0:f.length)>0?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(t.taskCommentList,(d,a)=>(e.openBlock(),e.createElementBlock("div",{key:d.id,class:"seal-list__item"},[e.createElementVNode("div",null,[e.createElementVNode("div",w,[P,e.createElementVNode("span",null,e.toDisplayString(d.activityName),1)]),e.createElementVNode("div",U,[j,e.createElementVNode("span",null,e.toDisplayString(d.createUserName),1)]),e.createElementVNode("div",M,[q,e.createElementVNode("span",null,e.toDisplayString(d.actionName),1)]),e.createElementVNode("div",z,[O,e.createElementVNode("span",{innerHTML:d.msg},null,8,W)]),e.createElementVNode("div",H,[R,e.createElementVNode("span",null,e.toDisplayString(d.createDate),1)]),d.metaAnnexList&&d.metaAnnexList.length?(e.openBlock(),e.createElementBlock("div",Y,G)):e.createCommentVNode("",!0)])]))),128)):(e.openBlock(),e.createElementBlock("div",K,"暂无数据"))]},!0):e.createCommentVNode("",!0),s.type=="slot"?e.renderSlot(t.$slots,s.slot,{key:3},void 0,!0):e.createCommentVNode("",!0)])),[[e.vShow,t.active===s.key]])),128))])])}const b=B(V,[["render",X],["__scopeId","data-v-baad7ff1"]]);b.install=function(t){return t.component(b.name,b),t};const J=e.defineComponent({name:"TopPopup",props:{titleText:{default:"top-popup",type:String},cancelText:{default:"取消",type:String},comfigText:{default:"确定",type:String},comfig:{default:null,type:Function},cancel:{default:null,type:Function},isMask:{require:!1,default:!0,type:Boolean},isMaskClose:{require:!1,default:!0,type:Boolean}},setup(t){const o=e.ref(!1),p=()=>{o.value=!0},r=()=>{typeof t.cancel=="function"&&t.cancel(),i()},c=()=>{typeof t.comfig=="function"&&t.comfig()},i=()=>{o.value=!1};return e.onMounted(()=>{document.querySelector("body")}),{handleOpen:p,handleCancel:r,handleComfig:c,handleClose:i,show:o}}}),Se="",Q={class:"top-popup-header"},Z={class:"header-title"},x={class:"top-popup-body"};function v(t,o,p,r,c,i){return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",{class:"top-popup",style:e.normalizeStyle(t.show?"transform: translateY(0)":"transform: translateY(100%)")},[e.createElementVNode("div",Q,[e.createElementVNode("div",{class:"header-cancel",onClick:o[0]||(o[0]=(...s)=>t.handleCancel&&t.handleCancel(...s))},e.toDisplayString(t.cancelText),1),e.createElementVNode("div",Z,e.toDisplayString(t.titleText),1),e.createElementVNode("div",{class:"header-comfig",onClick:o[1]||(o[1]=(...s)=>t.handleComfig&&t.handleComfig(...s))},e.toDisplayString(t.comfigText),1)]),e.createElementVNode("div",x,[e.renderSlot(t.$slots,"default",{},void 0,!0)])],4),t.show&&t.isMask?(e.openBlock(),e.createElementBlock("div",{key:0,class:"top-popup-mask",onClick:o[2]||(o[2]=s=>t.isMaskClose&&t.handleClose())})):e.createCommentVNode("",!0)],64)}const k=B(J,[["render",v],["__scopeId","data-v-474e328a"]]);k.install=function(t){return console.log("TopPopup.install",t),t.mount(k),t.component(k.name,k),t};const Ve="",ee=e.defineComponent({name:"TopButton",props:{type:{default:"default",type:String}},setup(t){const o=e.ref({textColor:"#fff",bckColor:"3c9cff"});switch(t.type){case"primary":o.value.textColor="#fff",o.value.bckColor="#3c9cff";break;case"danger":o.value.textColor="rgb(255, 96, 96)",o.value.bckColor="rgb(255, 230, 230)";break;case"default":o.value.textColor="rgb(51, 51, 51)",o.value.bckColor="rgb(241, 241, 241)";break}return{style:o}}});function te(t,o,p,r,c,i){return e.openBlock(),e.createElementBlock("div",{class:"top-button",style:e.normalizeStyle(`background-color:${t.style.bckColor};color:${t.style.textColor}`)},[e.renderSlot(t.$slots,"default",{},void 0,!0)],4)}const N=B(ee,[["render",te],["__scopeId","data-v-156a54e6"]]);N.install=function(t){return t.component(N.name,N),t};const oe=e.defineComponent({name:"TopProcess",components:{TopTab:b,TopPopup:k,TopButton:N},props:{tapList:{require:!1,default:()=>[],type:Array},processId:{require:!0,default:"",type:String},processDefId:{require:!0,default:"",type:String},taskId:{require:!0,default:"",type:String},isAdditional:{require:!1,default:!1,type:Boolean},isView:{default:!1,type:Boolean}},setup(t){const o=e.ref({}),p=e.ref(),r=e.ref([{taskId:"ecd82a93-4a62-42a7-b7bd-df38d2f1609a",taskState:1,nodeId:"obj_026aac284c1a4303854f978b674be4b9",customUniqueId:"",nodeName:"部门负责人"}]),c=e.ref({id:"obj_026aac284c1a4303854f978b674be4b9",name:"部门负责人",no:"1",buttons:[],ccTaskButtonLabel:"",ccTaskButtonAnnex:null,completeButtonLabel:"同意",completeButtonAnnex:null,delegateTaskButtonLabel:"转办",delegateTaskButtonAnnex:null,printFormButtonLabel:"",supplyUnusualTransferButtonLabel:"",readingOfficeLabel:"",readingOfficeButtonAnnex:null,jointlySignLabel:"",jointlySignButtonAnnex:null,counterSignLabel:"加签",counterSignButtonAnnex:null,coordinationLabel:"",coordinationButtonAnnex:null,otherButtonAnnexList:null,humanPerformer:{id:"obj_2bd3494ae5c54309b7f2ea452921790b",name:"任意指定",resourceAssignmentExpressionModel:{formalExpression:""}},commentModels:[{actionName:"提交",isDefault:!0},{actionName:"作废",isDefault:!1}],routeTxt:{departmentIds:null,companyIds:null,teamList:null,routeType:"DynamicUsers"},loopCardinality:1,isHistoryRoute:!1,participantList:null,historyRoute:!1});e.watch(()=>t.processId,(l,u)=>{l&&(o.value={status:"审批中",createUid:"18ccbf63229f0c79f39940ae284c111e",createTopUserId:"128ec9c9b7f26135272596fe01c57690",createTime:"2023-04-20 15:01:48",currUserName:"朱鸿飞",allUserNames:["朱鸿飞"],userNodeGroup:{分管领导:["朱鸿飞"]},appId:"com.awspaas.user.apps.top.study.project",statusCode:"1",statusName:"审批中",bizStatusName:"审批中",taskState:1})},{immediate:!0,deep:!0}),console.log("asd",r.value[0].taskState);const i=e.computed(()=>{var C,S;let l=[],u=r.value&&r.value[0]&&r.value[0].taskState!=4;if(u&&!t.isView&&c.value.completeButtonLabel){let n={};n.name=c.value.completeButtonLabel,n.btnProps={type:"primary"},l.push(n)}if(u&&!t.isView&&o.value.currUserName){let n={};n.name="拒绝",n.btnProps={type:"danger"},l.push(n)}if(u&&!t.isView&&c.value.buttons&&c.value.buttons.length&&c.value.buttons.forEach(n=>{if(n.label==="退回"){let E={};E.name=n.label,E.btnProps={type:"danger"},l.push(E)}}),u&&!t.isView&&c.value.delegateTaskButtonLabel){let n={};n.name=c.value.delegateTaskButtonLabel,n.btnProps={type:"default"},l.push(n)}if(t.processId&&o.value.createTopUserId==t.userId&&((C=r.value[0])==null?void 0:C.taskState)!=2&&o.value.status!=="已驳回"&&o.value.status!=="已撤销"){let n={};n.name="催办",n.btnProps={type:"default"},l.push(n)}if(t.processId&&o.value.createTopUserId==t.userId&&((S=r.value[0])==null?void 0:S.taskState)!=2&&o.value.status!=="已驳回"&&o.value.status!=="已撤销"){let n={};n.name="撤销",n.btnProps={type:"default"},l.push(n)}if(u&&!t.isView&&c.value.counterSignLabel){let n={};n.name=c.value.counterSignLabel,n.btnProps={type:"primary"},l.push(n)}return l}),s=e.computed(()=>i.value.length>3?i.value.slice(3):[]),f=()=>{console.log("handleCancel")},d=()=>{console.log("handleComfig","确定按钮"),p.value.handleClose()},a=e.computed(()=>"calc(100vh - 205px)");return{processStatus:o,processCardHeight:a,handleTest:()=>{p.value.handleOpen()},TopPopup1:p,handleCancel:f,handleComfig:d,operBtn:i,actionBtn:s}},methods:{getColor(t){return t=="审核中"?"#FFA52D":t=="已驳回"?"#F14B4C":t=="已撤销"?"#CECECE":t=="已完成"?"#6DC743":"#1389FF"}}}),$e="",y=t=>(e.pushScopeId("data-v-41bcbb23"),t=t(),e.popScopeId(),t),se={class:"process-warp"},ne={key:0,class:"process-main"},ae={class:"process-ml-item border"},le=y(()=>e.createElementVNode("div",{class:"process-mli-name"},"流程状态",-1)),re={class:"process-mli-value"},ce={class:"process-ml-item border"},ie=y(()=>e.createElementVNode("div",{class:"process-mli-name"},"流程发起时间",-1)),de={class:"process-mli-value"},pe={key:0,class:"process-ml-item"},me=y(()=>e.createElementVNode("div",{class:"process-mli-name"},"审批节点",-1)),ue={class:"process-mli-value"},fe={class:"process-mliv-jd"},_e={key:1,class:"process-foot"},he={class:"footBtnRow"},be={class:"process-btn"},ye={key:1,class:"elips"},ke=[y(()=>e.createElementVNode("div",{class:"circle"},null,-1)),y(()=>e.createElementVNode("div",{class:"circle"},null,-1)),y(()=>e.createElementVNode("div",{class:"circle"},null,-1))];function ge(t,o,p,r,c,i){const s=e.resolveComponent("TopTab"),f=e.resolveComponent("TopButton"),d=e.resolveComponent("TopPopup");return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",se,[t.processStatus.status?(e.openBlock(),e.createElementBlock("div",ne,[e.createElementVNode("div",ae,[le,e.createElementVNode("div",re,[t.processStatus.status||t.processStatus.bizStatusName?(e.openBlock(),e.createElementBlock("div",{key:0,class:"process-mliv-dd",style:e.normalizeStyle({background:t.getColor(t.processStatus.status)})},e.toDisplayString(t.processStatus.bizStatusName?t.processStatus.bizStatusName:t.processStatus.status),5)):e.createCommentVNode("",!0)])]),e.createElementVNode("div",ce,[ie,e.createElementVNode("div",de,[e.createElementVNode("span",null,e.toDisplayString(t.processStatus.createTime),1)])]),t.processStatus.allUserNames&&t.processStatus.allUserNames.length?(e.openBlock(),e.createElementBlock("div",pe,[me,e.createElementVNode("div",ue,[e.createElementVNode("span",fe,e.toDisplayString(`${t.processStatus.taskState==4?t.processStatus.currUserName:t.processStatus.allUserNames.toString()}审批中`),1)])])):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:"process-card",style:e.normalizeStyle({height:t.processCardHeight})},[e.createVNode(s,{tapList:t.tapList},{default:e.withCtx(()=>[e.renderSlot(t.$slots,"default",{},void 0,!0)]),_:3},8,["tapList"])],4),t.isAdditional?(e.openBlock(),e.createElementBlock("div",_e,[e.createElementVNode("div",he,[e.renderSlot(t.$slots,"btn",{},void 0,!0)])])):e.createCommentVNode("",!0),e.createElementVNode("div",be,[t.processStatus.status!="已完成"?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(t.operBtn,(a,m)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:a.name},[m<3?(e.openBlock(),e.createBlock(f,{key:0,onClick:t.handleTest,type:a.btnProps.type},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.name),1)]),_:2},1032,["onClick","type"])):e.createCommentVNode("",!0)],64))),128)):e.createCommentVNode("",!0),t.operBtn.length>3?(e.openBlock(),e.createElementBlock("div",ye,ke)):e.createCommentVNode("",!0)])]),e.createVNode(d,{ref:"TopPopup1",cancel:t.handleCancel,comfig:t.handleComfig},{default:e.withCtx(()=>[e.createTextVNode(" csaasd1 ")]),_:1},8,["cancel","comfig"])],64)}const g=B(oe,[["render",ge],["__scopeId","data-v-41bcbb23"]]);g.install=function(t){return t.component(g.name,g),t};const Be=[b,g],Ne={install:function(t){Be.forEach(o=>{t.use(o)})}};_.TopProcess=g,_.TopTab=b,_.default=Ne,Object.defineProperties(_,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
package/lib/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tops-tab[data-v-
|
|
1
|
+
.tops-tab[data-v-baad7ff1]{height:100%}.tops-tab-header[data-v-baad7ff1]{display:flex;width:100%;height:45px;font-size:14px;color:#333;padding:10px 17px;font-weight:500;box-sizing:border-box;overflow-x:auto;white-space:nowrap;flex-wrap:nowrap;flex-shrink:0;-ms-overflow-style:none;position:relative;background-color:#fff}.tops-tab-header[data-v-baad7ff1]:after{content:"";position:absolute;width:100%;height:1px;background-color:#f2f2f2;left:0;bottom:0;z-index:10}.tops-tab-header[data-v-baad7ff1]::-webkit-scrollbar{display:none}.tops-tab-header-items[data-v-baad7ff1]{white-space:nowrap;padding-right:10px;box-sizing:border-box;display:inline-block;height:100%;text-align:center;margin-right:32px;font-weight:400;font-size:15px;text-align:left;color:#333;display:flex;align-items:center}.tops-tab-header-items[data-v-baad7ff1]:last-child{padding-right:0;margin-right:0}.tops-tab-header .active[data-v-baad7ff1]{position:relative;color:#1389ff;font-family:PingFang SC Bold;font-weight:700;font-size:15px;text-align:left}.tops-tab-header .bottom-line[data-v-baad7ff1]{width:30px;height:3px;border-radius:1.5px;background-color:#1389ff;position:absolute;bottom:1px;left:0;z-index:12}.tops-tab-body[data-v-baad7ff1]{height:100%}.seal-list__item[data-v-baad7ff1]{padding:6px 10px 0;margin:10px 10px 0;background-color:#fff;border-radius:10px;box-sizing:border-box}.seal-list__item[data-v-baad7ff1]:last-child{margin-bottom:70px}.seal-list__item .seal-list__item--header[data-v-baad7ff1]{margin-bottom:6px;display:flex;align-items:center}.seal-list__item .seal-list__item--header span[data-v-baad7ff1]:first-of-type{font-size:15px;margin-right:6px;font-weight:700}.seal-list__item .seal-list__item--option[data-v-baad7ff1]{display:flex;justify-content:space-between;align-items:center;font-size:14px;padding:10px 0;color:#333}.seal-list__item .seal-list__item--option span[data-v-baad7ff1]:last-child{max-width:144px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#888}.seal-list__item .seal-list__item--attch[data-v-baad7ff1]{font-size:14px;padding:10px 0;color:#333;text-align:right;color:#1389ff}.seal-list__item .seal-list__item--actions[data-v-baad7ff1]{margin-top:12px;position:relative;display:flex;justify-content:space-around;align-items:center}.seal-list__item .seal-list__item--actions[data-v-baad7ff1] :before{content:"";top:0;width:100%;transform:scaleY(.5);transform-origin:top;border-top:1px #e8e8e8 solid;position:absolute}.seal-list__item .seal-list__item--actions .van-button[data-v-baad7ff1]{width:50%}.seal-list__item .seal-list__item--actions .van-button[data-v-baad7ff1] :after{content:"";height:60%;border-left:1px #e8e8e8 solid;position:absolute;left:100%;top:50%;transform:translate(-50%,-50%) scaleX(.5);transform-origin:left}.seal-list__item .seal-list__item--actions .van-button[data-v-baad7ff1]:last-child :after{content:none}.top-popup[data-v-474e328a]{width:100%;height:80vh;position:fixed;left:0;background-color:#fff;z-index:199;border-radius:20px 20px 0 0;padding:0 10px;box-sizing:border-box;transition:all .5s ease;bottom:0}.top-popup-mask[data-v-474e328a]{position:fixed;width:100vw;height:100vh;background-color:#000;opacity:.7;top:0;left:0;z-index:99}.top-popup-header[data-v-474e328a]{display:flex;justify-content:space-between;align-items:center;padding:10px 0}.top-popup-header .header-cancel[data-v-474e328a],.top-popup-header .header-comfig[data-v-474e328a]{color:#1389ff}.fade-enter-active[data-v-474e328a],.fade-leave-active[data-v-474e328a]{transition:all .5s ease}.fade-enter[data-v-474e328a],.fade-leave-to[data-v-474e328a]{bottom:-100%}.fade-enter-to[data-v-474e328a],.fade-leave[data-v-474e328a]{bottom:0d}.top-button[data-v-156a54e6]{width:100%;border-radius:20px;height:36px;background-color:#3c9cff;color:#fff;font-size:14px;justify-content:center;display:flex;align-items:center}.process-warp[data-v-41bcbb23]{overflow:hidden;height:100vh;width:100%;position:relative;background-color:#f3f3f7}.process-main[data-v-41bcbb23]{display:flex;justify-content:space-between;flex-direction:column;align-items:center;padding:0 17px;background:#fff;margin:0 0 10px}.process-main .border[data-v-41bcbb23]{border-bottom:#e8e8e8 1px solid}.process-main .process-ml-item[data-v-41bcbb23]{display:flex;align-items:center;font-size:15px;font-weight:400;width:100%;justify-content:space-between;height:44px}.process-main .process-ml-item .process-mli-name[data-v-41bcbb23]{color:#333}.process-main .process-ml-item .process-mli-value[data-v-41bcbb23]{color:#888}.process-main .process-ml-item .process-mli-value .process-mliv-dd[data-v-41bcbb23]{height:26px;min-width:30px;padding:0 12px;border-radius:20px;background:#1389ff;color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px}.process-main .process-ml-item .process-mli-value .process-mliv-jd[data-v-41bcbb23]{color:#1389ff}.process-btn[data-v-41bcbb23]{display:flex;min-height:60px;padding-top:5px;background:#fff;border-top:1px solid #dddddf9e;box-sizing:border-box;justify-content:center;align-items:center;flex-direction:row-reverse}.process-btn .top-button[data-v-41bcbb23],.process-btn .elips[data-v-41bcbb23]{margin:0 5px}.elips[data-v-41bcbb23]{min-width:60px;height:100%;background-color:#fff;display:flex;justify-content:center;align-items:center}.elips .circle[data-v-41bcbb23]{width:6px;height:6px;margin:0 2px;background-color:#333;border-radius:50%}
|