yc-vep-ui 0.3.65 → 0.3.67

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.
@@ -11,7 +11,7 @@ interface IFieldSlot<T> extends IField<T> {
11
11
  // 表格筛选
12
12
  export interface IField<T> {
13
13
  label?: string
14
- prop?: keyof T
14
+ prop?: keyof T | string
15
15
  required?: boolean
16
16
  rules?: Record<string, any>
17
17
  span?: number
@@ -1206,113 +1206,111 @@ var _hoisted_1$11 = { style: {
1206
1206
  "update:modelValue"
1207
1207
  ],
1208
1208
  setup(e, { expose: n, emit: r }) {
1209
- useCssVars((e) => ({ b708f6c4: unref(p) / 2 }));
1210
- let i = r, a = e, { fields: o, labelWidth: s = "100px", valueWidth: c = "auto", omitFields: l = [], rules: u = reactive({}), labelPosition: d = "top", valueModel: f = "default", column: p = 24 } = a, m = ref(0), g = ref(), _ = computed(() => a.modelValue !== void 0), v = reactive({}), y = computed(() => _.value ? a.modelValue : a.model || v), b = computed({
1211
- get: () => y.value,
1212
- set: (e) => {
1213
- _.value && i("update:modelValue", e);
1214
- }
1215
- }), x = computed(() => o.filter((e) => typeof e.prop == "string")), S = computed(() => {
1216
- if (u && Object.keys(u).length) return u;
1209
+ useCssVars((e) => ({ a49c3844: unref(f) / 2 }));
1210
+ let i = r, a = e, { labelWidth: o = "100px", valueWidth: s = "auto", omitFields: c = [], rules: l = reactive({}), labelPosition: u = "top", valueModel: d = "default", column: f = 24 } = a, p = ref(0), m = ref(), g = computed(() => a.modelValue !== void 0), _ = reactive({}), v = computed(() => g.value ? a.modelValue : a.model || _), y = computed({
1211
+ get: () => v.value,
1212
+ set: (e) => g.value && i("update:model", e)
1213
+ }), b = computed(() => toRaw(a?.fields).filter((e) => typeof e.prop == "string")), x = computed(() => {
1217
1214
  let e = {};
1218
- return o.forEach((n) => {
1219
- n.rules && Object.keys(n.rules).length ? e[n.prop] = n.rules : n.required && (e[n.prop] = [{
1215
+ return b.value.forEach((n) => {
1216
+ let r = n.prop;
1217
+ l && l[r] ? e[r] = l[r] : n.rules && Object.keys(n.rules).length ? e[r] = n.rules : n.required && (e[r] = [{
1220
1218
  required: !0,
1221
- message: "请输入" + n.label,
1219
+ message: `请输入${n.label}`,
1222
1220
  trigger: "change"
1223
1221
  }]);
1224
1222
  }), e;
1225
1223
  });
1226
- async function C() {
1227
- await g.value?.validate().catch(() => !1) && i("submit", toRaw(y.value));
1224
+ async function S() {
1225
+ await m.value?.validate().catch(() => !1) && i("submit", toRaw(v.value));
1228
1226
  }
1229
- function w() {
1227
+ function C() {
1230
1228
  let e = {};
1231
- Object.keys(y.value).forEach((n) => {
1232
- l.includes(n) || (e[n] = void 0);
1233
- }), Object.assign(y.value, e), m.value += 1, i("reset", toRaw(y.value));
1229
+ Object.keys(v.value).forEach((n) => {
1230
+ c.includes(n) || (e[n] = void 0);
1231
+ }), Object.assign(v.value, e), p.value += 1, i("reset", toRaw(v.value));
1234
1232
  }
1235
- function T() {
1236
- return toRaw(y.value);
1233
+ function w() {
1234
+ return toRaw(v.value);
1237
1235
  }
1238
- function E(e) {
1239
- Object.assign(y.value, e);
1236
+ function T(e) {
1237
+ Object.assign(v.value, e);
1240
1238
  }
1241
- function D() {
1242
- g.value?.clearValidate();
1239
+ function E() {
1240
+ m.value?.clearValidate();
1243
1241
  }
1244
- async function O() {
1242
+ async function D() {
1245
1243
  return new Promise((e) => {
1246
- g.value?.validate((n, r) => e(r));
1244
+ m.value?.validate((n, r) => e(r));
1247
1245
  });
1248
1246
  }
1249
1247
  return n({
1250
- getValues: T,
1251
- setValues: E,
1252
- clearValidate: D,
1253
- onSubmit: C,
1254
- validate: O
1248
+ getValues: w,
1249
+ setValues: T,
1250
+ clearValidate: E,
1251
+ onSubmit: S,
1252
+ validate: D
1255
1253
  }), (e, n) => {
1256
- let r = resolveComponent("el-input"), i = resolveComponent("el-form-item"), a = resolveComponent("el-form"), o = resolveComponent("el-button");
1254
+ let r = resolveComponent("el-input"), i = resolveComponent("el-form-item"), a = resolveComponent("el-form"), c = resolveComponent("el-button");
1257
1255
  return openBlock(), createElementBlock(Fragment, null, [createVNode(a, mergeProps({
1258
1256
  ref_key: "uiFormRef",
1259
- ref: g,
1260
- model: b.value
1257
+ ref: m,
1258
+ model: y.value
1261
1259
  }, e.$attrs, {
1262
- rules: S.value,
1263
- inline: unref(d) !== "top",
1264
- "label-position": unref(d),
1260
+ rules: x.value,
1261
+ inline: unref(u) !== "top",
1262
+ "label-position": unref(u),
1265
1263
  class: {
1266
1264
  "ui-form": !0,
1267
- horizontal: unref(d) !== "top"
1265
+ horizontal: unref(u) !== "top"
1268
1266
  },
1269
1267
  "validate-on-rule-change": !1
1270
1268
  }), {
1271
- default: withCtx(() => [(openBlock(!0), createElementBlock(Fragment, null, renderList(x.value, (n, a) => (openBlock(), createBlock(i, {
1272
- key: `${n.prop}-${a}-${m.value}`,
1269
+ default: withCtx(() => [(openBlock(!0), createElementBlock(Fragment, null, renderList(b.value, (n, a) => (openBlock(), createBlock(i, {
1270
+ key: `${String(n.prop)}-${a}-${p.value}`,
1273
1271
  label: n.label,
1274
- "label-width": unref(s),
1275
- "value-width": unref(c),
1272
+ "label-width": unref(o),
1273
+ "value-width": unref(s),
1276
1274
  prop: n.prop,
1277
1275
  style: normalizeStyle({
1278
1276
  width: `${n?.width ? n?.width + "px" : "100%"}`,
1279
- gridColumn: `span ${(n?.span || unref(p)) / 2 || 1}`
1277
+ gridColumn: `span ${(n?.span || unref(f)) / 2 || 1}`
1280
1278
  })
1281
1279
  }, {
1282
- default: withCtx(() => [n.render ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [isVNode(unref(renderNode)(n, b.value)) ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, b.value)), {
1280
+ default: withCtx(() => [n.render ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [isVNode(unref(renderNode)(n, y.value)) ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, y.value)), {
1283
1281
  key: 0,
1284
1282
  style: { display: "inline-block" }
1285
- })) : unref(renderNode)(n, b.value).component ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, b.value).component), mergeProps({
1283
+ })) : unref(renderNode)(n, y.value).component ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, y.value).component), mergeProps({
1286
1284
  key: 1,
1287
- modelValue: b.value[n.prop],
1288
- "onUpdate:modelValue": (e) => b.value[n.prop] = e
1289
- }, { ref_for: !0 }, unref(renderNode)(n, b.value).props, {
1285
+ modelValue: y.value[n.prop],
1286
+ "onUpdate:modelValue": (e) => y.value[n.prop] = e
1287
+ }, { ref_for: !0 }, unref(renderNode)(n, y.value).props, {
1290
1288
  clearable: !0,
1291
- key: `${n.prop}-${m.value}`,
1289
+ key: `${String(n.prop)}-${p.value}`,
1292
1290
  style: { height: "100%" },
1293
- class: { underline: unref(f) === "underline" }
1291
+ class: { underline: unref(d) === "underline" }
1294
1292
  }), null, 16, [
1295
1293
  "modelValue",
1296
1294
  "onUpdate:modelValue",
1297
1295
  "class"
1298
- ])) : (openBlock(), createElementBlock("span", _hoisted_1$10, toDisplayString(unref(renderNode)(n, b.value) || "-"), 1)), (openBlock(!0), createElementBlock(Fragment, null, renderList(n.slots, (n) => renderSlot(e.$slots, "default", { form: b.value }, () => [isVNode(unref(renderNode)(n, b.value)) ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, b.value)), {
1296
+ ])) : (openBlock(), createElementBlock("span", _hoisted_1$10, toDisplayString(unref(renderNode)(n, y.value) || "-"), 1)), (openBlock(!0), createElementBlock(Fragment, null, renderList(n.slots, (n) => renderSlot(e.$slots, "default", { form: y.value }, () => [isVNode(unref(renderNode)(n, y.value)) ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, y.value)), {
1299
1297
  key: 0,
1300
1298
  style: { display: "inline-block" }
1301
- })) : unref(renderNode)(n, b.value).component ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, b.value).component), mergeProps({
1299
+ })) : unref(renderNode)(n, y.value).component ? (openBlock(), createBlock(resolveDynamicComponent(unref(renderNode)(n, y.value).component), mergeProps({
1302
1300
  key: 1,
1303
- modelValue: b.value[n.prop],
1304
- "onUpdate:modelValue": (e) => b.value[n.prop] = e,
1301
+ modelValue: y.value[n.prop],
1302
+ "onUpdate:modelValue": (e) => y.value[n.prop] = e,
1305
1303
  "default-value": n.defaultValue,
1306
1304
  placeholder: n.placeholder
1307
- }, { ref_for: !0 }, unref(renderNode)(n, b.value).props, {
1305
+ }, { ref_for: !0 }, unref(renderNode)(n, y.value).props, {
1308
1306
  style: {
1309
1307
  display: "inline-block",
1310
1308
  marginLeft: "10px",
1311
1309
  width: `${n.width ? n.width + "px" : "100%"}`
1312
1310
  },
1313
- class: { underline: unref(f) === "underline" },
1311
+ class: { underline: unref(d) === "underline" },
1314
1312
  clearable: !0,
1315
- key: `${n.prop}-${m.value}`
1313
+ key: `${n.prop}-${p.value}`
1316
1314
  }), null, 16, [
1317
1315
  "modelValue",
1318
1316
  "onUpdate:modelValue",
@@ -1320,13 +1318,13 @@ var _hoisted_1$11 = { style: {
1320
1318
  "placeholder",
1321
1319
  "style",
1322
1320
  "class"
1323
- ])) : (openBlock(), createElementBlock("span", _hoisted_2$6, toDisplayString(unref(renderNode)(n, b.value) || "-"), 1))], !0)), 256))], 64)) : (openBlock(), createBlock(r, {
1321
+ ])) : (openBlock(), createElementBlock("span", _hoisted_2$6, toDisplayString(unref(renderNode)(n, y.value) || "-"), 1))], !0)), 256))], 64)) : (openBlock(), createBlock(r, {
1324
1322
  key: 1,
1325
- modelValue: b.value[n.prop],
1326
- "onUpdate:modelValue": (e) => b.value[n.prop] = e,
1323
+ modelValue: y.value[n.prop],
1324
+ "onUpdate:modelValue": (e) => y.value[n.prop] = e,
1327
1325
  placeholder: "请输入",
1328
1326
  clearable: !0,
1329
- class: normalizeClass({ underline: unref(f) === "underline" })
1327
+ class: normalizeClass({ underline: unref(d) === "underline" })
1330
1328
  }, null, 8, [
1331
1329
  "modelValue",
1332
1330
  "onUpdate:modelValue",
@@ -1348,19 +1346,19 @@ var _hoisted_1$11 = { style: {
1348
1346
  "label-position",
1349
1347
  "class"
1350
1348
  ]), e.$attrs?.hideHandle ? createCommentVNode("", !0) : (openBlock(), createElementBlock("div", _hoisted_3$4, [
1351
- renderSlot(e.$slots, "handle", { form: b.value }, void 0, !0),
1352
- createVNode(o, {
1349
+ renderSlot(e.$slots, "handle", { form: y.value }, void 0, !0),
1350
+ createVNode(c, {
1353
1351
  icon: unref(Refresh_default),
1354
- onClick: w,
1352
+ onClick: C,
1355
1353
  size: e.$props.size
1356
1354
  }, {
1357
1355
  default: withCtx(() => [...n[0] ||= [createTextVNode("重置", -1)]]),
1358
1356
  _: 1
1359
1357
  }, 8, ["icon", "size"]),
1360
- createVNode(o, {
1358
+ createVNode(c, {
1361
1359
  icon: unref(Promotion_default),
1362
1360
  type: "primary",
1363
- onClick: C,
1361
+ onClick: S,
1364
1362
  size: e.$props.size
1365
1363
  }, {
1366
1364
  default: withCtx(() => [...n[1] ||= [createTextVNode("提交", -1)]]),
@@ -1369,7 +1367,7 @@ var _hoisted_1$11 = { style: {
1369
1367
  ]))], 64);
1370
1368
  };
1371
1369
  }
1372
- }), Form_exports = /* @__PURE__ */ __exportAll$1({ default: () => Form_default }), Form_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default$9, [["__scopeId", "data-v-dba1eead"]]), _hoisted_1$9 = ["disabled"], index_vue_vue_type_script_setup_true_lang_default$8 = /* @__PURE__ */ defineComponent({
1370
+ }), Form_exports = /* @__PURE__ */ __exportAll$1({ default: () => Form_default }), Form_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default$9, [["__scopeId", "data-v-ba56f986"]]), _hoisted_1$9 = ["disabled"], index_vue_vue_type_script_setup_true_lang_default$8 = /* @__PURE__ */ defineComponent({
1373
1371
  __name: "index",
1374
1372
  props: /* @__PURE__ */ mergeModels({
1375
1373
  defaultValue: { default: "" },
@@ -4842,10 +4840,8 @@ function useDetail(e) {
4842
4840
  let e = d.data, r = {
4843
4841
  ...n.query,
4844
4842
  instanceId: e
4845
- }, i = n.mode === "hash" ? `${window.location.hash.split("?")[0]}?${new URLSearchParams(r).toString()}` : `${window.location.pathname}?${new URLSearchParams(r).toString()}`;
4846
- setTimeout(() => {
4847
- window.location.href = i, window.location.reload();
4848
- }, 1500);
4843
+ };
4844
+ n.mode === "hash" ? `${window.location.hash.split("?")[0]}${new URLSearchParams(r).toString()}` : `${window.location.pathname}${new URLSearchParams(r).toString()}`;
4849
4845
  } else VepMessage.error(d?.message || "提交失败");
4850
4846
  }
4851
4847
  async function p(e) {
@@ -1,2 +1,2 @@
1
- import { c as e, d as t, f as n, l as r, s as i, u as a } from "../entry-DoOml3Rs.js";
1
+ import { c as e, d as t, f as n, l as r, s as i, u as a } from "../entry-C9JhyBa8.js";
2
2
  export { e as useDictionary, n as useFetch, r as useRoute, a as useRouter, t as useTable, i as useUser };
package/dist/index.css CHANGED
@@ -43,24 +43,24 @@
43
43
  }
44
44
  }
45
45
 
46
- .ui-form-buttons[data-v-dba1eead] {
46
+ .ui-form-buttons[data-v-ba56f986] {
47
47
  display: flex;
48
48
  justify-content: flex-start;
49
49
  align-items: center;
50
50
  }
51
51
  .ui-form {
52
- &[data-v-dba1eead] {
52
+ &[data-v-ba56f986] {
53
53
  display: grid;
54
- grid-template-columns: repeat(var(--b708f6c4), minmax(0, 1fr));
54
+ grid-template-columns: repeat(var(--a49c3844), minmax(0, 1fr));
55
55
  gap: 0px 40px;
56
56
  }
57
- &[data-v-dba1eead] .el-form-item__label {
57
+ &[data-v-ba56f986] .el-form-item__label {
58
58
  margin-bottom: 0;
59
59
  font-weight: bold;
60
60
  font-size: 0.8em;
61
61
  color: #6b7280;
62
62
  }
63
- &[data-v-dba1eead] .el-form-item__content {
63
+ &[data-v-ba56f986] .el-form-item__content {
64
64
  display: flex;
65
65
  flex-wrap: inherit;
66
66
  width: 100%;
@@ -78,8 +78,8 @@
78
78
 
79
79
  /* 下划线样式 */
80
80
  .underline {
81
- &[data-v-dba1eead] .el-input__wrapper,
82
- &[data-v-dba1eead] .el-textarea__inner {
81
+ &[data-v-ba56f986] .el-input__wrapper,
82
+ &[data-v-ba56f986] .el-textarea__inner {
83
83
  box-shadow: 0px 1px 0px var(--el-input-border-color, var(--el-border-color));
84
84
  }
85
85
  }
@@ -1,2 +1,2 @@
1
- import { O as e, _ as t, b as n, v as r, y as i } from "../entry-DoOml3Rs.js";
1
+ import { O as e, _ as t, b as n, v as r, y as i } from "../entry-C9JhyBa8.js";
2
2
  export { t as baseUrl, n as request, e as tempToRender, r as uniq, i as uniqBy };
package/dist/vep-ui.js CHANGED
@@ -1,2 +1,2 @@
1
- import { A as e, C as t, D as n, E as r, S as i, T as a, a as o, g as s, h as c, i as l, k as u, m as d, n as f, o as p, p as m, r as h, t as g, w as _, x as v } from "./entry-DoOml3Rs.js";
1
+ import { A as e, C as t, D as n, E as r, S as i, T as a, a as o, g as s, h as c, i as l, k as u, m as d, n as f, o as p, p as m, r as h, t as g, w as _, x as v } from "./entry-C9JhyBa8.js";
2
2
  export { e as UiCard, i as UiDescriptions, v as UiDialog, a as UiEditor, n as UiFilter, r as UiForm, t as UiInfiniteScroll, d as UiStaffSelect, u as UiTable, _ as UiTree, m as UiUpload, s as WcUtils, o as YcApproval, c as YcMessage, l as YcPageAgent, h as default, h as ycPlugin, g as getHostVue, p as hooks, f as setHostVue };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yc-vep-ui",
3
- "version": "0.3.65",
3
+ "version": "0.3.67",
4
4
  "type": "module",
5
5
  "description": "基于 Vue 3 + Element Plus 的企业级 UI 组件库",
6
6
  "keywords": [
@@ -38,12 +38,6 @@
38
38
  "dist",
39
39
  "README.md"
40
40
  ],
41
- "scripts": {
42
- "dev": "vite",
43
- "build": "vue-tsc && vite build",
44
- "build:lib": "vite build && node scripts/generate-entry-dts.cjs",
45
- "preview": "vite preview"
46
- },
47
41
  "dependencies": {
48
42
  "aieditor": "^1.4.0",
49
43
  "jsencrypt": "^3.5.4",
@@ -73,5 +67,11 @@
73
67
  },
74
68
  "sideEffects": [
75
69
  "**/*.css"
76
- ]
77
- }
70
+ ],
71
+ "scripts": {
72
+ "dev": "vite",
73
+ "build": "vue-tsc && vite build",
74
+ "build:lib": "vite build && node scripts/generate-entry-dts.cjs",
75
+ "preview": "vite preview"
76
+ }
77
+ }