ui-process-h5 0.1.26 → 0.1.29

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "ui-process-h5",
3
3
  "private": false,
4
4
  "description": "流程组件",
5
- "version": "0.1.26",
5
+ "version": "0.1.29",
6
6
  "type": "module",
7
7
  "scripts": {
8
8
  "dev": "vite",
@@ -10,7 +10,6 @@
10
10
  "preview": "vite preview"
11
11
  },
12
12
  "files": [
13
- "lib/*",
14
13
  "packages/*",
15
14
  "Readme.md",
16
15
  "package.json"
@@ -18,20 +17,20 @@
18
17
  "publicConfig": {
19
18
  "registry": "http://registry.npmjs.org/"
20
19
  },
21
- "main": "./lib/design.umd.js",
22
- "module": "./lib/design.mjs",
20
+ "main": "./packages/index.ts",
21
+ "module": "./packages/index.ts",
23
22
  "exports": {
24
23
  ".": {
25
- "import": "./lib/design.mjs",
26
- "require": "./lib/design.umd.js"
27
- },
28
- "./lib/style.css": "./lib/style.css"
24
+ "import": "./packages/index.ts",
25
+ "require": "./packages/index.ts"
26
+ }
29
27
  },
30
28
  "dependencies": {
31
29
  "axios": "^1.3.6",
32
30
  "dayjs": "^1.11.7",
33
31
  "less-loader": "^11.1.0",
34
32
  "sass": "^1.62.0",
33
+ "ui-process-h5": "^0.1.29",
35
34
  "vue": "^3.2.47",
36
35
  "vue-demi": "^0.14.0"
37
36
  },
@@ -13,30 +13,32 @@ export default defineComponent({
13
13
  props: {
14
14
  type: { default: "default", type: String },
15
15
  },
16
- setup(props) {
17
- const style = ref({
18
- textColor: "#fff",
19
- bckColor: "3c9cff",
20
- });
21
-
22
- switch (props.type) {
16
+ data() {
17
+ return {
18
+ style: {
19
+ type: Object,
20
+ default: {
21
+ textColor: "#fff",
22
+ bckColor: "3c9cff",
23
+ },
24
+ },
25
+ };
26
+ },
27
+ created() {
28
+ switch (this.type) {
23
29
  case "primary":
24
- style.value.textColor = "#fff";
25
- style.value.bckColor = "#3c9cff";
30
+ this.style.textColor = "#fff";
31
+ this.style.bckColor = "#3c9cff";
26
32
  break;
27
33
  case "danger":
28
- style.value.textColor = "rgb(255, 96, 96)";
29
- style.value.bckColor = "rgb(255, 230, 230)";
34
+ this.style.textColor = "rgb(255, 96, 96)";
35
+ this.style.bckColor = "rgb(255, 230, 230)";
30
36
  break;
31
37
  case "default":
32
- style.value.textColor = "rgb(51, 51, 51)";
33
- style.value.bckColor = "rgb(241, 241, 241)";
38
+ this.style.textColor = "rgb(51, 51, 51)";
39
+ this.style.bckColor = "rgb(241, 241, 241)";
34
40
  break;
35
41
  }
36
-
37
- return {
38
- style,
39
- };
40
42
  },
41
43
  });
42
44
  </script>
@@ -27,7 +27,7 @@
27
27
  <script lang="ts">
28
28
  import { defineComponent, ref, watch, computed, onMounted } from "vue-demi";
29
29
 
30
- export default defineComponent({
30
+ export default {
31
31
  name: "TopPopup",
32
32
  props: {
33
33
  titleText: { default: "top-popup", type: String },
@@ -70,7 +70,7 @@ export default defineComponent({
70
70
  show,
71
71
  };
72
72
  },
73
- });
73
+ }
74
74
  </script>
75
75
  <style scoped>
76
76
  .top-popup {
@@ -89,7 +89,7 @@ import TopPopup from "../../popup";
89
89
  import TopButton from "../../button";
90
90
  // import { getProcessStatus } from "../../utils/request/api";
91
91
 
92
- export default defineComponent({
92
+ export default {
93
93
  name: "TopProcess",
94
94
  components: {
95
95
  TopTab,
@@ -348,7 +348,7 @@ export default defineComponent({
348
348
  return "#1389FF";
349
349
  },
350
350
  },
351
- });
351
+ }
352
352
  </script>
353
353
 
354
354
  <style scoped>
@@ -96,7 +96,7 @@
96
96
  import { defineComponent, ref, watch, onMounted, computed } from "vue-demi";
97
97
  // import { getProcessStatus } from "../../utils/request/api";
98
98
 
99
- export default defineComponent({
99
+ export default {
100
100
  name: "TopTab",
101
101
  props: {
102
102
  /**
@@ -287,7 +287,7 @@ export default defineComponent({
287
287
  trackUrl,
288
288
  };
289
289
  },
290
- });
290
+ };
291
291
  </script>
292
292
 
293
293
  <style scoped>
@@ -0,0 +1,11 @@
1
+ import request from "./request";
2
+
3
+ const proxyStr = "/aws";
4
+
5
+ export function getProcessStatus(query: any) {
6
+ return request({
7
+ url: proxyStr + "/pis/getProcessStatus",
8
+ method: "get",
9
+ params: query,
10
+ });
11
+ }
@@ -0,0 +1,52 @@
1
+
2
+ export const ACCESS_TOKEN :string
3
+ export const SUBJECTID :string
4
+ export const TASK_JSON :string
5
+
6
+ /**
7
+ * 设置cookie
8
+ * @param key
9
+ * @param value
10
+ * @param options
11
+ * @returns {*}
12
+ */
13
+ export function saveCookie(key: string, value: string, options: any): void
14
+
15
+ /**
16
+ * 获取cookie
17
+ * @param key cookie的key
18
+ * @param defaultValue
19
+ * @returns {*}
20
+ */
21
+ export function loadCookie(key: string, defaultValue: string): string
22
+
23
+
24
+ /**
25
+ * 删除cookie
26
+ * @param key
27
+ * @returns {string}
28
+ */
29
+ export function removeCookie (key: string): string
30
+
31
+
32
+ /**
33
+ * 设置本地存储
34
+ * @param key
35
+ * @param value
36
+ * @returns {*}
37
+ */
38
+ export function saveStorage (key: string, value: string) : string
39
+
40
+ /**
41
+ * 获取本地存储
42
+ * @param key
43
+ * @param defaultValue
44
+ * @returns {*}
45
+ */
46
+ export function loadStorage (key: string, defaultValue: string) : string
47
+ /**
48
+ * 删除本地存储
49
+ * @param key
50
+ * @returns {string}
51
+ */
52
+ export function removeStorage (key: string) : string
@@ -0,0 +1,99 @@
1
+ import Cookies from 'js-cookie'
2
+ import storage from 'good-storage'
3
+
4
+ export const ACCESS_TOKEN = 'Access_Token'// accessToken String
5
+ export const SUBJECTID = 'SUBJECTID'// accessToken String
6
+ export const TASK_JSON = "TASK_JSON"
7
+ /**
8
+ * 设置cookie
9
+ * @param key
10
+ * @param value
11
+ * @param options
12
+ * @returns {*}
13
+ */
14
+ export function saveCookie(key, value, options) {
15
+ Cookies.set(key, value, options)
16
+ return value
17
+ }
18
+
19
+ /**
20
+ * 获取cookie
21
+ * @param key
22
+ * @param defaultValue
23
+ * @returns {*}
24
+ */
25
+ export function loadCookie(key, defaultValue) {
26
+ return Cookies.get(key) || defaultValue
27
+ }
28
+
29
+ /**
30
+ * 删除cookie
31
+ * @param key
32
+ * @returns {string}
33
+ */
34
+ export function removeCookie(key) {
35
+ Cookies.remove(key)
36
+ return ''
37
+ }
38
+
39
+ /**
40
+ * 设置本地存储
41
+ * @param key
42
+ * @param value
43
+ * @returns {*}
44
+ */
45
+ export function saveStorage(key, value) {
46
+ storage.set(key, value)
47
+ return value
48
+ }
49
+
50
+ /**
51
+ * 获取本地存储
52
+ * @param key
53
+ * @param defaultValue
54
+ * @returns {*}
55
+ */
56
+ export function loadStorage(key, defaultValue) {
57
+ return storage.get(key, defaultValue)
58
+ }
59
+
60
+ /**
61
+ * 删除本地存储
62
+ * @param key
63
+ * @returns {string}
64
+ */
65
+ export function removeStorage(key) {
66
+ storage.remove(key)
67
+ return ''
68
+ }
69
+
70
+ /**
71
+ * 保存会话存储
72
+ * @param key
73
+ * @param value
74
+ * @returns {*}
75
+ */
76
+ export function saveSessionStorage(key, value) {
77
+ storage.session.set(key, value)
78
+ return value
79
+ }
80
+
81
+ /**
82
+ * 获取会话存储
83
+ * @param key
84
+ * @param defaultValue
85
+ * @returns {*}
86
+ */
87
+ export function loadSessionStorage(key, defaultValue) {
88
+ return storage.session.get(key, defaultValue)
89
+ }
90
+
91
+ /**
92
+ * 删除会话存储
93
+ * @param key
94
+ * @returns {string}
95
+ */
96
+ export function removeSessionStorage(key) {
97
+ storage.session.remove(key)
98
+ return ''
99
+ }
@@ -0,0 +1,63 @@
1
+ import axios, {
2
+ AxiosRequestConfig,
3
+ AxiosResponse,
4
+ AxiosError,
5
+ InternalAxiosRequestConfig,
6
+ } from "axios";
7
+ import { ACCESS_TOKEN, loadStorage } from "./cache";
8
+
9
+ const host = process.env.VUE_APP_BASE_URL;
10
+ // const api = process.env.VUE_APP_BASE_API;
11
+ // const host = "http://59.53.91.231:2100/";
12
+ const api = "prod-api"
13
+
14
+ axios.defaults.headers["Content-Type"] = "application/json;charset=utf-8";
15
+
16
+ const opts = {
17
+ baseURL: `${host}${api}`,
18
+ timeout: 999999999,
19
+ errorTip: true,
20
+ transformResponse: [
21
+ function (data: any, headers: any) {
22
+ if (typeof data === "string") {
23
+ try {
24
+ data = JSON.parse(data);
25
+ } catch (e) {}
26
+ }
27
+ return data;
28
+ },
29
+ ],
30
+ };
31
+
32
+ const service = axios.create(opts);
33
+
34
+ service.interceptors.request.use((config)=> {
35
+ const isToken = (config.headers || {}).isToken === false;
36
+ if (loadStorage("token", "") && !isToken) {
37
+ config.headers["Authorization"] = "Bearer " + loadStorage("token", ""); // 让每个请求携带自定义token 请根据实际情况自行修改 15c572f2-1fff-4ef2-94dc-728fc8d6fe14
38
+ }
39
+ /* config.headers["Authorization"] =
40
+ "Bearer " + "15c572f2-1fff-4ef2-94dc-728fc8d6fe14"; */
41
+ return config;
42
+ });
43
+
44
+ service.interceptors.response.use((response) => {
45
+ if (Object.prototype.toString.call(response.data) === "[object Blob]") {
46
+ return response;
47
+ }
48
+ const { data, config } = response;
49
+ const { code, success } = data;
50
+ const message = response.data.msg;
51
+ // 增加失败判断
52
+ data.fail = code !== 200 && success !== true;
53
+ if (code === 401) {
54
+ console.log("登录状态已过期");
55
+ return data;
56
+ } else if (code !== 200) {
57
+ console.log("错误");
58
+ return data;
59
+ }
60
+ return data;
61
+ });
62
+
63
+ export default service;
package/packages/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { App } from "vue";
2
2
  import components from "./component";
3
+ // import Design from 'ui-process-h5/lib/design.js'
3
4
 
4
5
  // 完整引入组件
5
6
  const install = function (app: App) {
package/lib/design.js DELETED
@@ -1,596 +0,0 @@
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-b82b096a"), 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.toString()
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-b82b096a"]]);
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
- };
@@ -1 +0,0 @@
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(_.Design={},_.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=(n,m)=>{n!==r.value&&(r.value=n,d(m))},d=n=>{if(s.value.length){let m=document.getElementsByClassName("bottom-line")[0],l;if(m.offsetWidth<s.value[n].offsetWidth-10){let u=(s.value[n].offsetWidth-m.offsetWidth-10)/2;l=`${s.value[n].offsetLeft+u}px`}else if(m.offsetWidth>s.value[n].offsetWidth-10){let u=(m.offsetWidth-s.value[n].offsetWidth+10)/2;l=`${s.value[n].offsetLeft-u}px`}else l=`${s.value[n].offsetLeft}px`;m.style.transition=".3s",m.style.transform=`translateX(${l})`}};return e.watch(()=>t.selfTapList,(n,m)=>{n.length&&(i.value=[].concat(n),r.value=i.value[0].key)},{immediate:!0,deep:!0}),e.watch(()=>t.tapList,(n,m)=>{t.selfTapList.length||(i.value=[].concat(c.value),n.length>0&&n.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,n)=>(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 y=B(V,[["render",X],["__scopeId","data-v-baad7ff1"]]);y.install=function(t){return t.component(y.name,y),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:y,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 a={};a.name=c.value.completeButtonLabel,a.btnProps={type:"primary"},l.push(a)}if(u&&!t.isView&&o.value.currUserName){let a={};a.name="拒绝",a.btnProps={type:"danger"},l.push(a)}if(u&&!t.isView&&c.value.buttons&&c.value.buttons.length&&c.value.buttons.forEach(a=>{if(a.label==="退回"){let E={};E.name=a.label,E.btnProps={type:"danger"},l.push(E)}}),u&&!t.isView&&c.value.delegateTaskButtonLabel){let a={};a.name=c.value.delegateTaskButtonLabel,a.btnProps={type:"default"},l.push(a)}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 a={};a.name="催办",a.btnProps={type:"default"},l.push(a)}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 a={};a.name="撤销",a.btnProps={type:"default"},l.push(a)}if(u&&!t.isView&&c.value.counterSignLabel){let a={};a.name=c.value.counterSignLabel,a.btnProps={type:"primary"},l.push(a)}return l}),s=e.computed(()=>i.value.length>3?i.value.slice(3):[]),f=()=>{console.log("handleCancel")},d=()=>{console.log("handleComfig","确定按钮"),p.value.handleClose()},n=e.computed(()=>"calc(100vh - 205px)");return{processStatus:o,processCardHeight:n,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="",b=t=>(e.pushScopeId("data-v-b82b096a"),t=t(),e.popScopeId(),t),se={class:"process-warp"},ae={key:0,class:"process-main"},ne={class:"process-ml-item border"},le=b(()=>e.createElementVNode("div",{class:"process-mli-name"},"流程状态",-1)),re={class:"process-mli-value"},ce={class:"process-ml-item border"},ie=b(()=>e.createElementVNode("div",{class:"process-mli-name"},"流程发起时间",-1)),de={class:"process-mli-value"},pe={key:0,class:"process-ml-item"},me=b(()=>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"},ye={class:"process-btn"},be={key:1,class:"elips"},ke=[b(()=>e.createElementVNode("div",{class:"circle"},null,-1)),b(()=>e.createElementVNode("div",{class:"circle"},null,-1)),b(()=>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",ae,[e.createElementVNode("div",ne,[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",ye,[t.processStatus.status!="已完成"?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(t.operBtn,(n,m)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:n.name},[m<3?(e.openBlock(),e.createBlock(f,{key:0,onClick:t.handleTest,type:n.btnProps.type.toString()},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.name),1)]),_:2},1032,["onClick","type"])):e.createCommentVNode("",!0)],64))),128)):e.createCommentVNode("",!0),t.operBtn.length>3?(e.openBlock(),e.createElementBlock("div",be,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-b82b096a"]]);g.install=function(t){return t.component(g.name,g),t};const Be=[y,g],Ne={install:function(t){Be.forEach(o=>{t.use(o)})}};_.TopProcess=g,_.TopTab=y,_.default=Ne,Object.defineProperties(_,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
@@ -1,5 +0,0 @@
1
- declare module "*.vue" {
2
- import { DefineComponent } from "vue"
3
- const component: DefineComponent<{}, {}, any>
4
- export default component
5
- }
@@ -1 +0,0 @@
1
- /// <reference types="vite/client" />
package/lib/style.css DELETED
@@ -1 +0,0 @@
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-b82b096a]{overflow:hidden;height:100vh;width:100%;position:relative;background-color:#f3f3f7}.process-main[data-v-b82b096a]{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-b82b096a]{border-bottom:#e8e8e8 1px solid}.process-main .process-ml-item[data-v-b82b096a]{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-b82b096a]{color:#333}.process-main .process-ml-item .process-mli-value[data-v-b82b096a]{color:#888}.process-main .process-ml-item .process-mli-value .process-mliv-dd[data-v-b82b096a]{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-b82b096a]{color:#1389ff}.process-btn[data-v-b82b096a]{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-b82b096a],.process-btn .elips[data-v-b82b096a]{margin:0 5px}.elips[data-v-b82b096a]{min-width:60px;height:100%;background-color:#fff;display:flex;justify-content:center;align-items:center}.elips .circle[data-v-b82b096a]{width:6px;height:6px;margin:0 2px;background-color:#333;border-radius:50%}
package/lib/vite.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>