@witlink/usercenter 1.2.34 → 1.2.36
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/usercenter.es.js +36 -17
- package/dist/usercenter.umd.js +1 -1
- package/package.json +1 -1
- package/version.md +4 -0
package/dist/usercenter.es.js
CHANGED
@@ -1441,6 +1441,7 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
1441
1441
|
title: t("fun.url"),
|
1442
1442
|
dataIndex: "url",
|
1443
1443
|
width: "150px",
|
1444
|
+
maxWidth: "250px",
|
1444
1445
|
key: "url"
|
1445
1446
|
},
|
1446
1447
|
{
|
@@ -1475,7 +1476,9 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
1475
1476
|
},
|
1476
1477
|
{
|
1477
1478
|
title: t("fun.action"),
|
1478
|
-
key: "action"
|
1479
|
+
key: "action",
|
1480
|
+
fixed: "right",
|
1481
|
+
width: "120px"
|
1479
1482
|
}
|
1480
1483
|
]);
|
1481
1484
|
const onSelect = (selectedKeys, event) => {
|
@@ -1629,7 +1632,8 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
1629
1632
|
ref: tableRef,
|
1630
1633
|
columns: columns.value,
|
1631
1634
|
data: loadData,
|
1632
|
-
rowKey: "code"
|
1635
|
+
rowKey: "code",
|
1636
|
+
scroll: { x: 1e3 }
|
1633
1637
|
}, {
|
1634
1638
|
bodyCell: withCtx(({ record, column }) => [
|
1635
1639
|
column.key === "index1" ? (openBlock(), createBlock(unref(Icon__default), {
|
@@ -1933,8 +1937,9 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
1933
1937
|
});
|
1934
1938
|
return (_ctx, _cache) => {
|
1935
1939
|
const _component_a_button = Button;
|
1936
|
-
const
|
1940
|
+
const _component_a_textarea = Textarea;
|
1937
1941
|
const _component_a_form_item = FormItem;
|
1942
|
+
const _component_a_input = Input;
|
1938
1943
|
const _component_a_form = Form;
|
1939
1944
|
const _component_a_modal = Modal$1;
|
1940
1945
|
return openBlock(), createElementBlock("div", null, [
|
@@ -1983,12 +1988,13 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
1983
1988
|
name: "parentBranch"
|
1984
1989
|
}, {
|
1985
1990
|
default: withCtx(() => [
|
1986
|
-
createVNode(
|
1991
|
+
createVNode(_component_a_textarea, {
|
1987
1992
|
placeholder: _ctx.$t("organ.parentBranch"),
|
1988
|
-
maxLength:
|
1993
|
+
maxLength: 256,
|
1989
1994
|
disabled: "",
|
1990
1995
|
value: form.parentBranch,
|
1991
|
-
"onUpdate:value": _cache[0] || (_cache[0] = ($event) => form.parentBranch = $event)
|
1996
|
+
"onUpdate:value": _cache[0] || (_cache[0] = ($event) => form.parentBranch = $event),
|
1997
|
+
"auto-size": { minRows: 1, maxRows: 4 }
|
1992
1998
|
}, null, 8, ["placeholder", "value"])
|
1993
1999
|
]),
|
1994
2000
|
_: 1
|
@@ -1998,12 +2004,13 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
1998
2004
|
name: "superiorRegion"
|
1999
2005
|
}, {
|
2000
2006
|
default: withCtx(() => [
|
2001
|
-
createVNode(
|
2007
|
+
createVNode(_component_a_textarea, {
|
2002
2008
|
placeholder: _ctx.$t("organ.superiorRegion"),
|
2003
|
-
maxLength:
|
2009
|
+
maxLength: 256,
|
2004
2010
|
disabled: "",
|
2005
2011
|
value: form.parentRegion,
|
2006
|
-
"onUpdate:value": _cache[1] || (_cache[1] = ($event) => form.parentRegion = $event)
|
2012
|
+
"onUpdate:value": _cache[1] || (_cache[1] = ($event) => form.parentRegion = $event),
|
2013
|
+
"auto-size": { minRows: 1, maxRows: 4 }
|
2007
2014
|
}, null, 8, ["placeholder", "value"])
|
2008
2015
|
]),
|
2009
2016
|
_: 1
|
@@ -3935,12 +3942,14 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
3935
3942
|
title: t("personal_center.role"),
|
3936
3943
|
dataIndex: "roleName",
|
3937
3944
|
width: "150px",
|
3945
|
+
maxWidth: "250px",
|
3938
3946
|
key: "roleName"
|
3939
3947
|
},
|
3940
3948
|
{
|
3941
3949
|
title: t("role.remark"),
|
3942
3950
|
dataIndex: "remark",
|
3943
3951
|
width: "150px",
|
3952
|
+
maxWidth: "250px",
|
3944
3953
|
key: "remark"
|
3945
3954
|
},
|
3946
3955
|
{
|
@@ -3957,7 +3966,9 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
3957
3966
|
},
|
3958
3967
|
{
|
3959
3968
|
title: t("role.action"),
|
3960
|
-
key: "action"
|
3969
|
+
key: "action",
|
3970
|
+
fixed: "right",
|
3971
|
+
width: "120px"
|
3961
3972
|
}
|
3962
3973
|
]);
|
3963
3974
|
const handleGetChecked = (_a = dictRoleStatusRef.value) == null ? void 0 : _a.getLabel(0);
|
@@ -4073,7 +4084,8 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
4073
4084
|
ref: tableRef,
|
4074
4085
|
data: loadData,
|
4075
4086
|
columns: columns.value,
|
4076
|
-
rowKey: "roleId"
|
4087
|
+
rowKey: "roleId",
|
4088
|
+
scroll: { x: 1e3 }
|
4077
4089
|
}, {
|
4078
4090
|
bodyCell: withCtx(({ record, column }) => [
|
4079
4091
|
column.key === "index1" ? (openBlock(), createBlock(unref(Icon__default), {
|
@@ -7248,7 +7260,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
7248
7260
|
{
|
7249
7261
|
title: t("user.mainRoleName"),
|
7250
7262
|
dataIndex: "mainRoleName",
|
7251
|
-
width: "
|
7263
|
+
width: "180px",
|
7252
7264
|
key: "mainRoleName",
|
7253
7265
|
filters: roleSelsect.value,
|
7254
7266
|
defaultFilteredValue: [],
|
@@ -7261,7 +7273,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
7261
7273
|
{
|
7262
7274
|
title: t("user.user_status"),
|
7263
7275
|
dataIndex: "userStatus",
|
7264
|
-
width: "
|
7276
|
+
width: "80px",
|
7265
7277
|
key: "userStatus",
|
7266
7278
|
filters: [
|
7267
7279
|
{ text: t("dct.USER_STATUS0"), value: "0" },
|
@@ -7278,7 +7290,9 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
7278
7290
|
},
|
7279
7291
|
{
|
7280
7292
|
title: t("user.action"),
|
7281
|
-
key: "action"
|
7293
|
+
key: "action",
|
7294
|
+
fixed: "right",
|
7295
|
+
width: "180px"
|
7282
7296
|
}
|
7283
7297
|
]);
|
7284
7298
|
const handleInputSearch = () => {
|
@@ -7414,7 +7428,8 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
7414
7428
|
data: loadData,
|
7415
7429
|
columns: columns.value,
|
7416
7430
|
rowKey: "userId",
|
7417
|
-
style: { "margin-top": "16px" }
|
7431
|
+
style: { "margin-top": "16px" },
|
7432
|
+
scroll: { x: 1e3 }
|
7418
7433
|
}, {
|
7419
7434
|
customFilterDropdown: withCtx(({ confirm, clearFilters }) => [
|
7420
7435
|
createElementVNode("div", null, [
|
@@ -10651,6 +10666,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
10651
10666
|
{
|
10652
10667
|
title: t("lang.lang3"),
|
10653
10668
|
dataIndex: "lang3",
|
10669
|
+
width: "350px",
|
10654
10670
|
key: "lang3"
|
10655
10671
|
}
|
10656
10672
|
]);
|
@@ -12163,7 +12179,9 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
12163
12179
|
},
|
12164
12180
|
{
|
12165
12181
|
title: t("org.action"),
|
12166
|
-
key: "action"
|
12182
|
+
key: "action",
|
12183
|
+
width: "120px",
|
12184
|
+
fixed: "right"
|
12167
12185
|
}
|
12168
12186
|
]);
|
12169
12187
|
return (_ctx, _cache) => {
|
@@ -12228,7 +12246,8 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
12228
12246
|
ref: tableRef,
|
12229
12247
|
data: loadData,
|
12230
12248
|
rowKey: "cdate",
|
12231
|
-
columns: columns.value
|
12249
|
+
columns: columns.value,
|
12250
|
+
scroll: { x: 1e3 }
|
12232
12251
|
}, {
|
12233
12252
|
bodyCell: withCtx(({ record, column }) => [
|
12234
12253
|
column.key === "index1" ? (openBlock(), createElementBlock("img", {
|