@witlink/usercenter 1.2.35 → 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 +13 -10
- package/dist/usercenter.umd.js +1 -1
- package/package.json +1 -1
- package/version.md +2 -0
package/dist/usercenter.es.js
CHANGED
@@ -1937,8 +1937,9 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
1937
1937
|
});
|
1938
1938
|
return (_ctx, _cache) => {
|
1939
1939
|
const _component_a_button = Button;
|
1940
|
-
const
|
1940
|
+
const _component_a_textarea = Textarea;
|
1941
1941
|
const _component_a_form_item = FormItem;
|
1942
|
+
const _component_a_input = Input;
|
1942
1943
|
const _component_a_form = Form;
|
1943
1944
|
const _component_a_modal = Modal$1;
|
1944
1945
|
return openBlock(), createElementBlock("div", null, [
|
@@ -1987,12 +1988,13 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
1987
1988
|
name: "parentBranch"
|
1988
1989
|
}, {
|
1989
1990
|
default: withCtx(() => [
|
1990
|
-
createVNode(
|
1991
|
+
createVNode(_component_a_textarea, {
|
1991
1992
|
placeholder: _ctx.$t("organ.parentBranch"),
|
1992
|
-
maxLength:
|
1993
|
+
maxLength: 256,
|
1993
1994
|
disabled: "",
|
1994
1995
|
value: form.parentBranch,
|
1995
|
-
"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 }
|
1996
1998
|
}, null, 8, ["placeholder", "value"])
|
1997
1999
|
]),
|
1998
2000
|
_: 1
|
@@ -2002,12 +2004,13 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
2002
2004
|
name: "superiorRegion"
|
2003
2005
|
}, {
|
2004
2006
|
default: withCtx(() => [
|
2005
|
-
createVNode(
|
2007
|
+
createVNode(_component_a_textarea, {
|
2006
2008
|
placeholder: _ctx.$t("organ.superiorRegion"),
|
2007
|
-
maxLength:
|
2009
|
+
maxLength: 256,
|
2008
2010
|
disabled: "",
|
2009
2011
|
value: form.parentRegion,
|
2010
|
-
"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 }
|
2011
2014
|
}, null, 8, ["placeholder", "value"])
|
2012
2015
|
]),
|
2013
2016
|
_: 1
|
@@ -7257,7 +7260,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
7257
7260
|
{
|
7258
7261
|
title: t("user.mainRoleName"),
|
7259
7262
|
dataIndex: "mainRoleName",
|
7260
|
-
width: "
|
7263
|
+
width: "180px",
|
7261
7264
|
key: "mainRoleName",
|
7262
7265
|
filters: roleSelsect.value,
|
7263
7266
|
defaultFilteredValue: [],
|
@@ -7270,7 +7273,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
7270
7273
|
{
|
7271
7274
|
title: t("user.user_status"),
|
7272
7275
|
dataIndex: "userStatus",
|
7273
|
-
width: "
|
7276
|
+
width: "80px",
|
7274
7277
|
key: "userStatus",
|
7275
7278
|
filters: [
|
7276
7279
|
{ text: t("dct.USER_STATUS0"), value: "0" },
|
@@ -7289,7 +7292,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
7289
7292
|
title: t("user.action"),
|
7290
7293
|
key: "action",
|
7291
7294
|
fixed: "right",
|
7292
|
-
width: "
|
7295
|
+
width: "180px"
|
7293
7296
|
}
|
7294
7297
|
]);
|
7295
7298
|
const handleInputSearch = () => {
|