xyvcard-asset 0.0.17 → 0.0.18
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/dist/assign-CnuGWSFW.mjs +304 -0
- package/dist/{edit-DfLSODib.mjs → edit--yj0Iybx.mjs} +1 -1
- package/dist/{edit-BMiwAU2V.mjs → edit-B-LYCCbp.mjs} +1 -1
- package/dist/{edit-D6NV2pb2.mjs → edit-D17Gyv98.mjs} +1 -1
- package/dist/{edit-CX2z9EYu.mjs → edit-D32-_mu1.mjs} +3 -3
- package/dist/{edit.vue_vue_type_script_setup_true_lang-B_2yu4sv.mjs → edit.vue_vue_type_script_setup_true_lang-BA4yxgQj.mjs} +1 -1
- package/dist/{edit.vue_vue_type_script_setup_true_lang-DnsSFyiS.mjs → edit.vue_vue_type_script_setup_true_lang-LbrAsCMD.mjs} +1 -1
- package/dist/{edit.vue_vue_type_script_setup_true_lang-C8EJ4xOS.mjs → edit.vue_vue_type_script_setup_true_lang-rgOtFZu6.mjs} +4 -2
- package/dist/{index-CMtqB1MP.mjs → index-3yyPfzhR.mjs} +52 -52
- package/dist/index-B66wesLL.mjs +320 -0
- package/dist/{index-XlZKwbCX.mjs → index-BcxOe2-n.mjs} +72 -72
- package/dist/{index-DrajJZ20.mjs → index-BdDLFlf4.mjs} +2 -2
- package/dist/{index-BWZKXQRi.mjs → index-BpLDkr7K.mjs} +1 -1
- package/dist/{index-B1wxTvDR.mjs → index-C-pCJ3qR.mjs} +3 -3
- package/dist/{index-BQ16pRTg.mjs → index-C9hmVQif.mjs} +95 -95
- package/dist/{index-CFUAQG0g.mjs → index-CAxWHIh9.mjs} +8 -8
- package/dist/{index-Dw9AQlSo.mjs → index-CGds22-2.mjs} +399 -418
- package/dist/{index-D6Kzp68i.mjs → index-DTA_c5of.mjs} +2 -2
- package/dist/{index-D4T2vouF.mjs → index-DTvR5Kzi.mjs} +1 -1
- package/dist/index-DeX1io_N.mjs +158 -0
- package/dist/{index-BqLh2sg0.mjs → index-DsSb9DBJ.mjs} +3 -3
- package/dist/{index-BiBCzEqz.mjs → index-rSyUfdXn.mjs} +1 -1
- package/dist/index.mjs +5 -3
- package/dist/style.css +1 -1
- package/dts/api/asset/asset-asset/types.d.ts +5 -0
- package/dts/api/asset/asset-depreciation-record/types.d.ts +1 -1
- package/dts/api/asset/asset-inventory-record/types.d.ts +1 -0
- package/dts/lang/asset/zh-cn.d.ts +2 -0
- package/dts/main.d.ts +0 -1
- package/dts/views/asset/asset-asset/assign.vue.d.ts +5 -4
- package/dts/views/asset/asset-asset/edit.vue.d.ts +1 -1
- package/dts/views/asset/asset-site-service/edit.vue.d.ts +1 -1
- package/package.json +16 -14
- package/dist/assign-CbKUuMPJ.mjs +0 -1603
- package/dist/index-Btpx1Vf2.mjs +0 -328
- package/dist/index-C4xJg5F_.mjs +0 -171
@@ -0,0 +1,320 @@
|
|
1
|
+
import { defineComponent as H, ref as I, computed as Q, onBeforeMount as K, resolveComponent as u, openBlock as S, createElementBlock as G, createVNode as o, withCtx as e, createTextVNode as r, toDisplayString as a, unref as m, createBlock as J, isRef as O, createCommentVNode as W, createElementVNode as i } from "vue";
|
2
|
+
import { useUserStore as g, clearEmpty as h, request as $, useTableHooks as X, routerUtil as Z } from "jmash-core";
|
3
|
+
import { useI18n as x } from "vue-i18n";
|
4
|
+
import { useRouter as ee, useRoute as te } from "vue-router";
|
5
|
+
import { q as ae, D as V, a as le } from "./index-CGds22-2.mjs";
|
6
|
+
import { c as oe } from "./common-CshrwPyx.mjs";
|
7
|
+
class se {
|
8
|
+
getKey(s) {
|
9
|
+
return {
|
10
|
+
recordId: s.recordId
|
11
|
+
};
|
12
|
+
}
|
13
|
+
// 查询翻页信息资产折旧记录
|
14
|
+
findPage(s) {
|
15
|
+
const _ = g().user.tenant;
|
16
|
+
return h(s), $({
|
17
|
+
url: "/v1/asset/depreciation_record/page/" + _,
|
18
|
+
method: "get",
|
19
|
+
params: s
|
20
|
+
});
|
21
|
+
}
|
22
|
+
// 查询列表信息资产折旧记录
|
23
|
+
findList(s) {
|
24
|
+
const _ = g().user.tenant;
|
25
|
+
return h(s), $({
|
26
|
+
url: "/v1/asset/depreciation_record/list/" + _,
|
27
|
+
method: "get",
|
28
|
+
params: s
|
29
|
+
});
|
30
|
+
}
|
31
|
+
// 查询资产折旧记录
|
32
|
+
findById(s) {
|
33
|
+
const _ = g().user.tenant;
|
34
|
+
return h(s), $({
|
35
|
+
url: "/v1/asset/depreciation_record/id/" + _ + "/" + s.recordId,
|
36
|
+
method: "get"
|
37
|
+
});
|
38
|
+
}
|
39
|
+
// 导出资产折旧记录Excel文件
|
40
|
+
exportExcel(s) {
|
41
|
+
const _ = g().user.tenant;
|
42
|
+
h(s);
|
43
|
+
const f = ae.stringify(s, {
|
44
|
+
arrayFormat: "brackets",
|
45
|
+
allowDots: !0
|
46
|
+
});
|
47
|
+
return $({
|
48
|
+
url: "/v1/asset/depreciation_record/" + _ + "/depreciation_records.xlsx?" + f,
|
49
|
+
method: "get",
|
50
|
+
responseType: "blob"
|
51
|
+
});
|
52
|
+
}
|
53
|
+
}
|
54
|
+
const C = new se(), ne = { class: "app-container" }, re = { class: "cell-item" }, ie = { class: "cell-item" }, de = { class: "cell-item" }, ue = { class: "cell-item" }, ce = { class: "cell-item" }, pe = { class: "cell-item" }, me = { class: "cell-item" }, _e = { class: "cell-item" }, fe = { class: "cell-item" }, ve = { class: "cell-item" }, be = {
|
55
|
+
class: "search-container",
|
56
|
+
style: { border: "none" }
|
57
|
+
}, Ie = /* @__PURE__ */ H({
|
58
|
+
__name: "index",
|
59
|
+
setup(P) {
|
60
|
+
const { t: s } = x(), _ = ee(), f = te();
|
61
|
+
V.assetSortDictEnum.useEnumValues();
|
62
|
+
const d = I({
|
63
|
+
assetId: f.query.assetId
|
64
|
+
}), n = I({}), w = Q(() => {
|
65
|
+
const t = n.value.oldMoney ?? 0, l = parseFloat(
|
66
|
+
n.value.totalDepreciation ?? "0"
|
67
|
+
);
|
68
|
+
return t - l;
|
69
|
+
}), {
|
70
|
+
tableHooks: k,
|
71
|
+
multipleTableRef: E,
|
72
|
+
queryFormRef: q,
|
73
|
+
listLoading: B,
|
74
|
+
tableData: y,
|
75
|
+
total: v
|
76
|
+
} = X(s, C, d);
|
77
|
+
let M = I([
|
78
|
+
// 折旧年月
|
79
|
+
{
|
80
|
+
label: "depreciationRecord.year",
|
81
|
+
prop: "years",
|
82
|
+
sortable: "custom",
|
83
|
+
isColumn: !0
|
84
|
+
},
|
85
|
+
// 月折旧额
|
86
|
+
{
|
87
|
+
label: "depreciationRecord.depreciationMoney",
|
88
|
+
prop: "depreciationMoney",
|
89
|
+
sortable: "custom",
|
90
|
+
isColumn: !0
|
91
|
+
}
|
92
|
+
]);
|
93
|
+
function z(t) {
|
94
|
+
d.value.year = oe(t).getYear();
|
95
|
+
}
|
96
|
+
function L() {
|
97
|
+
Z.closeTagView(f.fullPath, _, !1);
|
98
|
+
}
|
99
|
+
return K(() => {
|
100
|
+
f.query.assetId ? (le.findById({ assetId: f.query.assetId }).then(({ data: t }) => {
|
101
|
+
n.value = t;
|
102
|
+
}), C.findPage({
|
103
|
+
assetId: f.query.assetId
|
104
|
+
}).then(({ data: { results: t, curPage: l, pageSize: b, totalSize: D } }) => {
|
105
|
+
t && (y.value = t, d.value.curPage = l, d.value.pageSize = b, v.value = D);
|
106
|
+
})) : y.value = [];
|
107
|
+
}), (t, l) => {
|
108
|
+
const b = u("el-button"), D = u("el-col"), T = u("el-row"), c = u("el-descriptions-item"), U = u("el-descriptions"), j = u("el-date-picker"), R = u("el-form-item"), A = u("el-form"), F = u("jmash-table"), N = u("jmash-pagination"), Y = u("el-card");
|
109
|
+
return S(), G("div", ne, [
|
110
|
+
o(Y, {
|
111
|
+
shadow: "never",
|
112
|
+
class: "table-container"
|
113
|
+
}, {
|
114
|
+
header: e(() => [
|
115
|
+
o(T, { justify: "space-between" }, {
|
116
|
+
default: e(() => [
|
117
|
+
o(D, { span: 12 }, {
|
118
|
+
default: e(() => [
|
119
|
+
o(b, {
|
120
|
+
type: "primary",
|
121
|
+
onClick: L
|
122
|
+
}, {
|
123
|
+
default: e(() => [
|
124
|
+
r(a(t.$t("common.back")), 1)
|
125
|
+
]),
|
126
|
+
_: 1
|
127
|
+
})
|
128
|
+
]),
|
129
|
+
_: 1
|
130
|
+
})
|
131
|
+
]),
|
132
|
+
_: 1
|
133
|
+
})
|
134
|
+
]),
|
135
|
+
footer: e(() => [
|
136
|
+
m(v) > 0 ? (S(), J(N, {
|
137
|
+
key: 0,
|
138
|
+
total: m(v),
|
139
|
+
"onUpdate:total": l[3] || (l[3] = (p) => O(v) ? v.value = p : null),
|
140
|
+
"current-page": d.value.curPage,
|
141
|
+
"onUpdate:currentPage": l[4] || (l[4] = (p) => d.value.curPage = p),
|
142
|
+
"page-size": d.value.pageSize,
|
143
|
+
"onUpdate:pageSize": l[5] || (l[5] = (p) => d.value.pageSize = p),
|
144
|
+
onPagination: l[6] || (l[6] = (p) => m(k).getList())
|
145
|
+
}, null, 8, ["total", "current-page", "page-size"])) : W("", !0)
|
146
|
+
]),
|
147
|
+
default: e(() => [
|
148
|
+
l[7] || (l[7] = i("div", { class: "title-content" }, "资产信息", -1)),
|
149
|
+
o(U, {
|
150
|
+
class: "margin-top",
|
151
|
+
column: 2,
|
152
|
+
border: ""
|
153
|
+
}, {
|
154
|
+
default: e(() => [
|
155
|
+
o(c, null, {
|
156
|
+
label: e(() => [
|
157
|
+
i("div", re, a(t.$t("asset.name")), 1)
|
158
|
+
]),
|
159
|
+
default: e(() => [
|
160
|
+
r(" " + a(n.value.name), 1)
|
161
|
+
]),
|
162
|
+
_: 1
|
163
|
+
}),
|
164
|
+
o(c, null, {
|
165
|
+
label: e(() => [
|
166
|
+
i("div", ie, a(t.$t("asset.code")), 1)
|
167
|
+
]),
|
168
|
+
default: e(() => [
|
169
|
+
r(" " + a(n.value.code), 1)
|
170
|
+
]),
|
171
|
+
_: 1
|
172
|
+
}),
|
173
|
+
o(c, null, {
|
174
|
+
label: e(() => [
|
175
|
+
i("div", de, a(t.$t("asset.number")) + "/" + a(t.$t("asset.unit")), 1)
|
176
|
+
]),
|
177
|
+
default: e(() => [
|
178
|
+
r(" " + a(n.value.number) + "/" + a(n.value.unit), 1)
|
179
|
+
]),
|
180
|
+
_: 1
|
181
|
+
}),
|
182
|
+
o(c, null, {
|
183
|
+
label: e(() => [
|
184
|
+
i("div", ue, a(t.$t("asset.buyDate")), 1)
|
185
|
+
]),
|
186
|
+
default: e(() => [
|
187
|
+
r(" " + a(n.value.buyDate), 1)
|
188
|
+
]),
|
189
|
+
_: 1
|
190
|
+
}),
|
191
|
+
o(c, null, {
|
192
|
+
label: e(() => [
|
193
|
+
i("div", ce, a(t.$t("asset.assetSort")), 1)
|
194
|
+
]),
|
195
|
+
default: e(() => [
|
196
|
+
r(" " + a(m(V).assetSortDictEnum.getEnumValue(
|
197
|
+
n.value.assetSort
|
198
|
+
)), 1)
|
199
|
+
]),
|
200
|
+
_: 1
|
201
|
+
}),
|
202
|
+
o(c, null, {
|
203
|
+
label: e(() => [
|
204
|
+
i("div", pe, a(t.$t("asset.useLimit")), 1)
|
205
|
+
]),
|
206
|
+
default: e(() => [
|
207
|
+
r(" " + a(n.value.useLimit), 1)
|
208
|
+
]),
|
209
|
+
_: 1
|
210
|
+
}),
|
211
|
+
o(c, null, {
|
212
|
+
label: e(() => [
|
213
|
+
i("div", me, a(t.$t("asset.oldMoney")), 1)
|
214
|
+
]),
|
215
|
+
default: e(() => [
|
216
|
+
r(" " + a(n.value.oldMoney), 1)
|
217
|
+
]),
|
218
|
+
_: 1
|
219
|
+
}),
|
220
|
+
o(c, null, {
|
221
|
+
label: e(() => [
|
222
|
+
i("div", _e, a(t.$t("asset.netSalvage")), 1)
|
223
|
+
]),
|
224
|
+
default: e(() => [
|
225
|
+
r(" " + a(n.value.netSalvage), 1)
|
226
|
+
]),
|
227
|
+
_: 1
|
228
|
+
}),
|
229
|
+
o(c, null, {
|
230
|
+
label: e(() => [
|
231
|
+
i("div", fe, a(t.$t("depreciationRecord.netAssetValue")), 1)
|
232
|
+
]),
|
233
|
+
default: e(() => [
|
234
|
+
r(" " + a(w.value), 1)
|
235
|
+
]),
|
236
|
+
_: 1
|
237
|
+
}),
|
238
|
+
o(c, null, {
|
239
|
+
label: e(() => [
|
240
|
+
i("div", ve, a(t.$t("depreciationRecord.totalDepreciation")), 1)
|
241
|
+
]),
|
242
|
+
default: e(() => [
|
243
|
+
r(" " + a(n.value.totalDepreciation), 1)
|
244
|
+
]),
|
245
|
+
_: 1
|
246
|
+
})
|
247
|
+
]),
|
248
|
+
_: 1
|
249
|
+
}),
|
250
|
+
l[8] || (l[8] = i("div", { class: "title-content" }, "折旧记录", -1)),
|
251
|
+
i("div", be, [
|
252
|
+
o(A, {
|
253
|
+
ref_key: "queryFormRef",
|
254
|
+
ref: q,
|
255
|
+
model: d.value,
|
256
|
+
inline: !0
|
257
|
+
}, {
|
258
|
+
default: e(() => [
|
259
|
+
o(R, {
|
260
|
+
label: t.$t("depreciationRecord.years"),
|
261
|
+
prop: "selectYear"
|
262
|
+
}, {
|
263
|
+
default: e(() => [
|
264
|
+
o(j, {
|
265
|
+
modelValue: d.value.selectYear,
|
266
|
+
"onUpdate:modelValue": l[0] || (l[0] = (p) => d.value.selectYear = p),
|
267
|
+
disabled: m(y).length === 0,
|
268
|
+
type: "year",
|
269
|
+
placeholder: t.$t("depreciationRecord.yearPlaceholder"),
|
270
|
+
onChange: z
|
271
|
+
}, null, 8, ["modelValue", "disabled", "placeholder"])
|
272
|
+
]),
|
273
|
+
_: 1
|
274
|
+
}, 8, ["label"]),
|
275
|
+
o(R, { class: "search-btn" }, {
|
276
|
+
default: e(() => [
|
277
|
+
o(b, {
|
278
|
+
type: "primary",
|
279
|
+
onClick: l[1] || (l[1] = (p) => m(k).handleQuery())
|
280
|
+
}, {
|
281
|
+
default: e(() => [
|
282
|
+
r(a(t.$t("common.search")), 1)
|
283
|
+
]),
|
284
|
+
_: 1
|
285
|
+
}),
|
286
|
+
o(b, {
|
287
|
+
onClick: l[2] || (l[2] = (p) => m(k).resetQuery())
|
288
|
+
}, {
|
289
|
+
default: e(() => [
|
290
|
+
r(a(t.$t("common.reset")), 1)
|
291
|
+
]),
|
292
|
+
_: 1
|
293
|
+
})
|
294
|
+
]),
|
295
|
+
_: 1
|
296
|
+
})
|
297
|
+
]),
|
298
|
+
_: 1
|
299
|
+
}, 8, ["model"])
|
300
|
+
]),
|
301
|
+
o(F, {
|
302
|
+
ref_key: "multipleTableRef",
|
303
|
+
ref: E,
|
304
|
+
class: "table-top",
|
305
|
+
"row-key": "assetId",
|
306
|
+
"is-selection": !1,
|
307
|
+
"list-loading": m(B),
|
308
|
+
data: m(y),
|
309
|
+
"table-label": m(M)
|
310
|
+
}, null, 8, ["list-loading", "data", "table-label"])
|
311
|
+
]),
|
312
|
+
_: 1
|
313
|
+
})
|
314
|
+
]);
|
315
|
+
};
|
316
|
+
}
|
317
|
+
});
|
318
|
+
export {
|
319
|
+
Ie as default
|
320
|
+
};
|
@@ -1,44 +1,44 @@
|
|
1
|
-
import { defineComponent as U, ref as y, resolveComponent as
|
1
|
+
import { defineComponent as U, ref as y, resolveComponent as c, openBlock as A, createElementBlock as j, createVNode as a, withCtx as e, createTextVNode as i, toDisplayString as t, unref as u, createBlock as M, isRef as K, createCommentVNode as O, createElementVNode as o } from "vue";
|
2
2
|
import { useRouter as q, useRoute as H } from "vue-router";
|
3
|
-
import { D as
|
3
|
+
import { D as _ } from "./index-CGds22-2.mjs";
|
4
4
|
import { useUserStore as I, clearEmpty as R, request as D, useTableHooks as F, routerUtil as G } from "jmash-core";
|
5
5
|
import { s as J } from "./index-BwbnYpa1.mjs";
|
6
6
|
import { useI18n as Q } from "vue-i18n";
|
7
7
|
class W {
|
8
|
-
getKey(
|
8
|
+
getKey(n) {
|
9
9
|
return {
|
10
|
-
recordId:
|
11
|
-
memberId:
|
10
|
+
recordId: n.recordId,
|
11
|
+
memberId: n.memberId
|
12
12
|
};
|
13
13
|
}
|
14
14
|
// 查询翻页信息预约会员
|
15
|
-
findPage(
|
15
|
+
findPage(n) {
|
16
16
|
const m = I().user.tenant;
|
17
|
-
return R(
|
17
|
+
return R(n), D({
|
18
18
|
url: "/v1/asset/service_appt_member/page/" + m,
|
19
19
|
method: "get",
|
20
|
-
params:
|
20
|
+
params: n
|
21
21
|
});
|
22
22
|
}
|
23
23
|
// 查询列表信息预约会员
|
24
|
-
findList(
|
24
|
+
findList(n) {
|
25
25
|
const m = I().user.tenant;
|
26
|
-
return R(
|
26
|
+
return R(n), D({
|
27
27
|
url: "/v1/asset/service_appt_member/list/" + m,
|
28
28
|
method: "get",
|
29
|
-
params:
|
29
|
+
params: n
|
30
30
|
});
|
31
31
|
}
|
32
32
|
}
|
33
|
-
const X = new W(), Y = { class: "app-container" }, Z = { class: "cell-item" }, x = { class: "cell-item" }, ee = { class: "cell-item" }, te = { class: "cell-item" }, le = { class: "cell-item" },
|
33
|
+
const X = new W(), Y = { class: "app-container" }, Z = { class: "cell-item" }, x = { class: "cell-item" }, ee = { class: "cell-item" }, te = { class: "cell-item" }, le = { class: "cell-item" }, ae = { class: "cell-item" }, oe = { class: "cell-item" }, ce = /* @__PURE__ */ U({
|
34
34
|
__name: "index",
|
35
35
|
setup(P) {
|
36
|
-
|
37
|
-
const { t:
|
36
|
+
_.unionOrgBizLayDict.useValues(), _.serviceNameDict.useValues();
|
37
|
+
const { t: n } = Q(), m = q(), f = H(), v = y({
|
38
38
|
curPage: 1,
|
39
39
|
pageSize: 10,
|
40
|
-
recordId:
|
41
|
-
}), { tableHooks:
|
40
|
+
recordId: f.query.entityKey
|
41
|
+
}), { tableHooks: b, multipleTableRef: k, listLoading: N, tableData: w, total: g } = F(n, X, v);
|
42
42
|
let V = y([
|
43
43
|
{
|
44
44
|
label: "serviceApptMember.realName",
|
@@ -53,125 +53,125 @@ const X = new W(), Y = { class: "app-container" }, Z = { class: "cell-item" }, x
|
|
53
53
|
isColumn: !0
|
54
54
|
}
|
55
55
|
]);
|
56
|
-
function S(
|
57
|
-
|
56
|
+
function S(s) {
|
57
|
+
b.selectionRows.value = s;
|
58
58
|
}
|
59
|
-
const
|
60
|
-
J.findById({ recordId:
|
61
|
-
|
59
|
+
const r = y({});
|
60
|
+
J.findById({ recordId: f.query.entityKey }).then((s) => {
|
61
|
+
r.value = s.data;
|
62
62
|
});
|
63
63
|
function $() {
|
64
|
-
G.closeTagView(
|
64
|
+
G.closeTagView(f.fullPath, m, !1);
|
65
65
|
}
|
66
|
-
return
|
67
|
-
const h =
|
66
|
+
return b.getList(), (s, l) => {
|
67
|
+
const h = c("el-button"), d = c("el-descriptions-item"), z = c("el-descriptions"), C = c("el-col"), T = c("el-row"), B = c("jmash-table"), L = c("jmash-pagination"), E = c("el-card");
|
68
68
|
return A(), j("div", Y, [
|
69
|
-
|
69
|
+
a(E, { shadow: "never" }, {
|
70
70
|
header: e(() => [
|
71
|
-
|
71
|
+
a(h, {
|
72
72
|
type: "primary",
|
73
73
|
onClick: $
|
74
74
|
}, {
|
75
75
|
default: e(() => [
|
76
|
-
|
76
|
+
i(t(s.$t("common.back")), 1)
|
77
77
|
]),
|
78
78
|
_: 1
|
79
79
|
})
|
80
80
|
]),
|
81
81
|
footer: e(() => [
|
82
|
-
|
82
|
+
u(g) > 0 ? (A(), M(L, {
|
83
83
|
key: 0,
|
84
|
-
total:
|
85
|
-
"onUpdate:total":
|
86
|
-
"current-page":
|
87
|
-
"onUpdate:currentPage":
|
88
|
-
"page-size":
|
89
|
-
"onUpdate:pageSize":
|
90
|
-
onPagination:
|
84
|
+
total: u(g),
|
85
|
+
"onUpdate:total": l[0] || (l[0] = (p) => K(g) ? g.value = p : null),
|
86
|
+
"current-page": v.value.curPage,
|
87
|
+
"onUpdate:currentPage": l[1] || (l[1] = (p) => v.value.curPage = p),
|
88
|
+
"page-size": v.value.pageSize,
|
89
|
+
"onUpdate:pageSize": l[2] || (l[2] = (p) => v.value.pageSize = p),
|
90
|
+
onPagination: l[3] || (l[3] = (p) => u(b).getList())
|
91
91
|
}, null, 8, ["total", "current-page", "page-size"])) : O("", !0),
|
92
|
-
|
92
|
+
l[5] || (l[5] = i(" "))
|
93
93
|
]),
|
94
94
|
default: e(() => [
|
95
|
-
|
95
|
+
a(T, {
|
96
96
|
gutter: 20,
|
97
97
|
style: { width: "100%" }
|
98
98
|
}, {
|
99
99
|
default: e(() => [
|
100
|
-
|
100
|
+
a(C, { span: 24 }, {
|
101
101
|
default: e(() => [
|
102
|
-
|
103
|
-
|
102
|
+
l[4] || (l[4] = o("div", { class: "title-content" }, "预约信息", -1)),
|
103
|
+
a(z, {
|
104
104
|
class: "margin-top",
|
105
105
|
column: 2,
|
106
106
|
border: ""
|
107
107
|
}, {
|
108
108
|
default: e(() => [
|
109
|
-
|
109
|
+
a(d, null, {
|
110
110
|
label: e(() => [
|
111
|
-
|
111
|
+
o("div", Z, t(s.$t("serviceApptRecord.orgId")), 1)
|
112
112
|
]),
|
113
113
|
default: e(() => [
|
114
|
-
|
114
|
+
i(" " + t(u(_).unionOrgBizLayDict.getValue(r.value.orgId)), 1)
|
115
115
|
]),
|
116
116
|
_: 1
|
117
117
|
}),
|
118
|
-
|
118
|
+
a(d, null, {
|
119
119
|
label: e(() => [
|
120
|
-
|
120
|
+
o("div", x, t(s.$t("serviceApptRecord.siteId")), 1)
|
121
121
|
]),
|
122
122
|
default: e(() => [
|
123
|
-
|
123
|
+
i(" " + t(u(_).serviceNameDict.getValue(r.value.siteId)), 1)
|
124
124
|
]),
|
125
125
|
_: 1
|
126
126
|
}),
|
127
|
-
|
127
|
+
a(d, null, {
|
128
128
|
label: e(() => [
|
129
|
-
|
129
|
+
o("div", ee, t(s.$t("serviceApptRecord.appointmentDate")), 1)
|
130
130
|
]),
|
131
131
|
default: e(() => [
|
132
|
-
|
132
|
+
i(" " + t(r.value.appointmentDate), 1)
|
133
133
|
]),
|
134
134
|
_: 1
|
135
135
|
}),
|
136
|
-
|
136
|
+
a(d, null, {
|
137
137
|
label: e(() => [
|
138
|
-
|
139
|
-
|
138
|
+
o("span", null, [
|
139
|
+
o("div", te, t(s.$t("serviceApptRecord.time")), 1)
|
140
140
|
])
|
141
141
|
]),
|
142
142
|
default: e(() => [
|
143
|
-
|
143
|
+
i(" " + t(r.value.startTime) + " - " + t(r.value.endTime), 1)
|
144
144
|
]),
|
145
145
|
_: 1
|
146
146
|
}),
|
147
|
-
|
147
|
+
a(d, null, {
|
148
148
|
label: e(() => [
|
149
|
-
|
149
|
+
o("div", le, t(s.$t("serviceApptRecord.serviceName")), 1)
|
150
150
|
]),
|
151
151
|
default: e(() => [
|
152
|
-
|
152
|
+
i(" " + t(r.value.serviceName), 1)
|
153
153
|
]),
|
154
154
|
_: 1
|
155
155
|
}),
|
156
|
-
|
156
|
+
a(d, null, {
|
157
157
|
label: e(() => [
|
158
|
-
|
159
|
-
|
158
|
+
o("span", null, [
|
159
|
+
o("div", ae, t(s.$t("serviceApptRecord.limitPerson")), 1)
|
160
160
|
])
|
161
161
|
]),
|
162
162
|
default: e(() => [
|
163
|
-
|
163
|
+
i(" " + t(r.value.limitPerson), 1)
|
164
164
|
]),
|
165
165
|
_: 1
|
166
166
|
}),
|
167
|
-
|
167
|
+
a(d, null, {
|
168
168
|
label: e(() => [
|
169
|
-
|
170
|
-
|
169
|
+
o("span", null, [
|
170
|
+
o("div", oe, t(s.$t("serviceApptRecord.apptPerson")), 1)
|
171
171
|
])
|
172
172
|
]),
|
173
173
|
default: e(() => [
|
174
|
-
|
174
|
+
i(" " + t(r.value.apptPerson), 1)
|
175
175
|
]),
|
176
176
|
_: 1
|
177
177
|
})
|
@@ -184,20 +184,20 @@ const X = new W(), Y = { class: "app-container" }, Z = { class: "cell-item" }, x
|
|
184
184
|
]),
|
185
185
|
_: 1
|
186
186
|
}),
|
187
|
-
|
188
|
-
|
187
|
+
l[6] || (l[6] = o("div", { class: "title-content" }, "预约人员信息", -1)),
|
188
|
+
a(B, {
|
189
189
|
ref_key: "multipleTableRef",
|
190
190
|
ref: k,
|
191
191
|
"is-selection": !1,
|
192
192
|
class: "table-top",
|
193
193
|
"row-key": "recordId",
|
194
|
-
"list-loading":
|
195
|
-
data:
|
196
|
-
"table-label":
|
194
|
+
"list-loading": u(N),
|
195
|
+
data: u(w),
|
196
|
+
"table-label": u(V),
|
197
197
|
onSelectionChange: S
|
198
198
|
}, {
|
199
|
-
status: e((
|
200
|
-
|
199
|
+
status: e((p) => [
|
200
|
+
o("span", null, t(u(_).statusDictEnum.getEnumValue(p.data.row.status)), 1)
|
201
201
|
]),
|
202
202
|
_: 1
|
203
203
|
}, 8, ["list-loading", "data", "table-label"])
|
@@ -209,5 +209,5 @@ const X = new W(), Y = { class: "app-container" }, Z = { class: "cell-item" }, x
|
|
209
209
|
}
|
210
210
|
});
|
211
211
|
export {
|
212
|
-
|
212
|
+
ce as default
|
213
213
|
};
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { defineComponent as le, ref as _, reactive as R, resolveComponent as i, resolveDirective as ae, openBlock as d, createElementBlock as S, createElementVNode as m, createVNode as o, withCtx as l, unref as s, toDisplayString as r, Fragment as oe, renderList as se, createBlock as I, withKeys as L, createTextVNode as g, withDirectives as $, isRef as z, createCommentVNode as j } from "vue";
|
2
|
-
import { D as p, b as ne, S as ie } from "./index-
|
2
|
+
import { D as p, b as ne, S as ie } from "./index-CGds22-2.mjs";
|
3
3
|
import { useI18n as re } from "vue-i18n";
|
4
|
-
import { _ as ue } from "./edit.vue_vue_type_script_setup_true_lang-
|
4
|
+
import { _ as ue } from "./edit.vue_vue_type_script_setup_true_lang-rgOtFZu6.mjs";
|
5
5
|
import { useTableHooks as de } from "jmash-core";
|
6
6
|
const me = { class: "app-container" }, pe = { class: "search-container" }, ce = ["onClick"], ve = ["onClick"], Ie = /* @__PURE__ */ le({
|
7
7
|
__name: "index",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { defineComponent as K, ref as S, resolveComponent as r, resolveDirective as F, openBlock as c, createElementBlock as k, createElementVNode as y, createVNode as a, withCtx as o, unref as l, withKeys as V, createTextVNode as d, toDisplayString as u, withDirectives as g, createBlock as w, isRef as $, createCommentVNode as H } from "vue";
|
2
2
|
import { useTableHooks as M } from "jmash-core";
|
3
3
|
import { useI18n as x } from "vue-i18n";
|
4
|
-
import { D as R, a as G } from "./index-
|
4
|
+
import { D as R, a as G } from "./index-CGds22-2.mjs";
|
5
5
|
import { useRouter as J } from "vue-router";
|
6
6
|
const O = { class: "app-container" }, W = { class: "search-container" }, X = ["onClick"], ne = /* @__PURE__ */ K({
|
7
7
|
__name: "index",
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import { defineComponent as ne, ref as f, reactive as z, resolveComponent as d, resolveDirective as ue, openBlock as r, createElementBlock as _, createElementVNode as h, createVNode as s, withCtx as l, withKeys as N, unref as o, createTextVNode as m, toDisplayString as u, withDirectives as b, createBlock as c, isRef as A, createCommentVNode as w } from "vue";
|
2
2
|
import { useI18n as re } from "vue-i18n";
|
3
|
-
import { _ as ie } from "./edit.vue_vue_type_script_setup_true_lang-
|
4
|
-
import de from "./assign-
|
5
|
-
import { a as me, D as V } from "./index-
|
3
|
+
import { _ as ie } from "./edit.vue_vue_type_script_setup_true_lang-BA4yxgQj.mjs";
|
4
|
+
import de from "./assign-CnuGWSFW.mjs";
|
5
|
+
import { a as me, D as V } from "./index-CGds22-2.mjs";
|
6
6
|
import { useTableHooks as pe } from "jmash-core";
|
7
7
|
import { useRouter as fe } from "vue-router";
|
8
8
|
const be = { class: "app-container" }, ce = { class: "search-container" }, ye = ["onClick"], ve = ["onClick"], ge = ["onClick"], we = ["onClick"], De = /* @__PURE__ */ ne({
|