ztxkui 4.2.23-600 → 4.2.23-601
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.
|
@@ -15,8 +15,8 @@ var TableAddDelColumn = function (_a) {
|
|
|
15
15
|
? hideDelIcon(record, index)
|
|
16
16
|
: hideDelIcon;
|
|
17
17
|
return (React.createElement(React.Fragment, null,
|
|
18
|
-
hiddenAddIcon ? null : (React.createElement("div", { title: i18next.t('新增一行'), className: "zt-column__add-icon" },
|
|
19
|
-
React.createElement(PlusOutlined,
|
|
18
|
+
hiddenAddIcon ? null : (React.createElement("div", { title: i18next.t('新增一行'), className: "zt-column__add-icon", onClick: debounce(onAddfn, 500) },
|
|
19
|
+
React.createElement(PlusOutlined, null))),
|
|
20
20
|
hiddenDelIcon ? null : (React.createElement(Popconfirm, { title: typeof delIconText === 'function'
|
|
21
21
|
? delIconText(record, index)
|
|
22
22
|
: delIconText, onConfirm: function () {
|
|
@@ -281,8 +281,20 @@ var ForgetPassword = function (_a) {
|
|
|
281
281
|
},
|
|
282
282
|
] },
|
|
283
283
|
React.createElement(Input.Password, { autoComplete: "off", placeholder: i18next.t('请输入新密码') })),
|
|
284
|
-
React.createElement("div",
|
|
285
|
-
React.createElement("p", { style: {
|
|
284
|
+
React.createElement("div", { style: { width: '55%', position: 'relative' } },
|
|
285
|
+
React.createElement("p", { style: {
|
|
286
|
+
color: '#ff6666',
|
|
287
|
+
width: '300px',
|
|
288
|
+
lineHeight: '16px',
|
|
289
|
+
position: 'absolute',
|
|
290
|
+
border: '1px solid #ff8888',
|
|
291
|
+
borderRadius: '4px',
|
|
292
|
+
padding: '5px',
|
|
293
|
+
zIndex: 100,
|
|
294
|
+
display: 'block',
|
|
295
|
+
background: 'rgba(255, 136, 136, .2)',
|
|
296
|
+
fontVariant: 'jis04',
|
|
297
|
+
} }, commonMessage.passwordMessage))),
|
|
286
298
|
React.createElement(Item, { name: "newPassword1", label: i18next.t('确认新密码'), rules: [
|
|
287
299
|
{ required: true, message: i18next.t('请确认密码') },
|
|
288
300
|
function (_a) {
|