component-sanzhizhou 1.1.1 → 1.1.2
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/lib/Tool.d.ts
CHANGED
|
@@ -162,7 +162,7 @@ declare const Tool: {
|
|
|
162
162
|
getTitleByPath(path: string): string;
|
|
163
163
|
getDirByPath(path: string): string;
|
|
164
164
|
h5Pay(query: Pay.H5PayQuery): void;
|
|
165
|
-
notification(type: "
|
|
165
|
+
notification(type: "info" | "error" | "warning" | "success", message: string, description?: import("react").ReactNode, options?: import("./notification").NotificationOption): void;
|
|
166
166
|
notificationSuccess(message: string, description?: import("react").ReactNode, options?: import("./notification").NotificationOption): void;
|
|
167
167
|
notificationError(message: string, description?: import("react").ReactNode, options?: import("./notification").NotificationOption): void;
|
|
168
168
|
notificationWarning(message: string, description?: import("react").ReactNode, options?: import("./notification").NotificationOption): void;
|
|
@@ -40,7 +40,9 @@ var PayRechargeMoneyAmountAlt = function PayRechargeMoneyAmountAlt(_ref) {
|
|
|
40
40
|
}, [moneyAmount, rechargeRuleList]);
|
|
41
41
|
return /*#__PURE__*/_jsxs("div", {
|
|
42
42
|
className: "ssz-recharge-form-moneyAmount-input",
|
|
43
|
-
children: [
|
|
43
|
+
children: [/*#__PURE__*/_jsx("small", {
|
|
44
|
+
children: formatMessage('元')
|
|
45
|
+
}), giveMoney > 0 && /*#__PURE__*/_jsxs("div", {
|
|
44
46
|
className: "ssz-recharge-form-moneyAmount-input-bonus",
|
|
45
47
|
children: [/*#__PURE__*/_jsxs("span", {
|
|
46
48
|
className: "ssz-recharge-form-moneyAmount-input-bonus-payRechargeRule",
|
package/dist/pay/recharge.js
CHANGED
|
@@ -132,7 +132,7 @@ var PayRecharge = function PayRecharge(_ref) {
|
|
|
132
132
|
required: true,
|
|
133
133
|
message: formatMessage('请输入')
|
|
134
134
|
}],
|
|
135
|
-
extra: /*#__PURE__*/_jsxs("
|
|
135
|
+
extra: /*#__PURE__*/_jsxs("small", {
|
|
136
136
|
children: [formatMessage('充值'), "\uFF1A", formatMessage('最低'), " ", /*#__PURE__*/_jsxs("strong", {
|
|
137
137
|
children: [" ", minPrice]
|
|
138
138
|
}), /*#__PURE__*/_jsxs("small", {
|
|
@@ -151,6 +151,9 @@ var PayRecharge = function PayRecharge(_ref) {
|
|
|
151
151
|
moneyAmount: formData.moneyAmount,
|
|
152
152
|
rechargeRuleList: rechargeRuleList
|
|
153
153
|
}),
|
|
154
|
+
style: {
|
|
155
|
+
// minWidth: 300,
|
|
156
|
+
},
|
|
154
157
|
className: "ssz-recharge-form-moneyAmount-input",
|
|
155
158
|
precision: precision,
|
|
156
159
|
min: minPrice,
|