component-sanzhizhou 1.3.1 → 1.3.5
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/locales/ar-EG.json +3 -1
- package/dist/locales/de-DE.json +3 -1
- package/dist/locales/en-US.json +3 -1
- package/dist/locales/es-ES.json +3 -1
- package/dist/locales/fr-FR.json +3 -1
- package/dist/locales/it-IT.json +3 -1
- package/dist/locales/ja-JP.json +3 -1
- package/dist/locales/ko-KR.json +3 -1
- package/dist/locales/pt-PT.json +3 -1
- package/dist/locales/ru-RU.json +3 -1
- package/dist/locales/th-TH.json +3 -1
- package/dist/locales/vi-VN.json +3 -1
- package/dist/locales/zh-CN.json +3 -1
- package/dist/locales/zh-HK.json +3 -1
- package/dist/locales/zh-TW.json +3 -1
- package/dist/pay/recharge.js +7 -3
- package/package.json +1 -1
package/dist/locales/ar-EG.json
CHANGED
package/dist/locales/de-DE.json
CHANGED
package/dist/locales/en-US.json
CHANGED
package/dist/locales/es-ES.json
CHANGED
package/dist/locales/fr-FR.json
CHANGED
package/dist/locales/it-IT.json
CHANGED
package/dist/locales/ja-JP.json
CHANGED
package/dist/locales/ko-KR.json
CHANGED
package/dist/locales/pt-PT.json
CHANGED
package/dist/locales/ru-RU.json
CHANGED
package/dist/locales/th-TH.json
CHANGED
package/dist/locales/vi-VN.json
CHANGED
package/dist/locales/zh-CN.json
CHANGED
package/dist/locales/zh-HK.json
CHANGED
package/dist/locales/zh-TW.json
CHANGED
package/dist/pay/recharge.js
CHANGED
|
@@ -20,7 +20,7 @@ var BaseDict = {
|
|
|
20
20
|
}
|
|
21
21
|
};
|
|
22
22
|
var PayRecharge = function PayRecharge(_ref) {
|
|
23
|
-
var _PayChannelList$filte
|
|
23
|
+
var _PayChannelList$filte;
|
|
24
24
|
var appId = _ref.appId,
|
|
25
25
|
apiUrl = _ref.apiUrl,
|
|
26
26
|
nickName = _ref.nickName,
|
|
@@ -57,7 +57,7 @@ var PayRecharge = function PayRecharge(_ref) {
|
|
|
57
57
|
var _useState3 = useState({
|
|
58
58
|
moneyAmount: defaultPrice,
|
|
59
59
|
payChannel: defaultPayChannel,
|
|
60
|
-
balanceType: defaultBalanceType
|
|
60
|
+
balanceType: defaultBalanceType
|
|
61
61
|
}),
|
|
62
62
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
63
63
|
formData = _useState4[0],
|
|
@@ -129,7 +129,11 @@ var PayRecharge = function PayRecharge(_ref) {
|
|
|
129
129
|
label: formatMessage('账号')
|
|
130
130
|
}, /*#__PURE__*/React.createElement("strong", null, nickName)), (balanceTypeOptions || []).length > 0 && /*#__PURE__*/React.createElement(Form.Item, {
|
|
131
131
|
name: "balanceType",
|
|
132
|
-
label: formatMessage('余额类别')
|
|
132
|
+
label: formatMessage('余额类别'),
|
|
133
|
+
rules: [{
|
|
134
|
+
required: true,
|
|
135
|
+
message: formatMessage('请选择')
|
|
136
|
+
}]
|
|
133
137
|
}, /*#__PURE__*/React.createElement(Radio.Group, null, (balanceTypeOptions || []).map(function (item) {
|
|
134
138
|
return /*#__PURE__*/React.createElement(Radio, {
|
|
135
139
|
key: item.value,
|