component-sanzhizhou 1.0.6 → 1.0.7

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/pay/qr.js CHANGED
@@ -33,6 +33,8 @@ var UserVipOrderPayQr = function UserVipOrderPayQr(_ref) {
33
33
  return RechargeController.create({
34
34
  payChannel: selectPayChannel.name,
35
35
  moneyAmount: moneyAmount
36
+ }, {
37
+ env: env
36
38
  });
37
39
  }, {
38
40
  onSuccess: function onSuccess(result) {
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  interface Props {
3
3
  nickName: React.ReactNode;
4
4
  onHandSuccess: () => void;
5
+ env?: Global.Env;
5
6
  }
6
7
  declare const PayRecharge: React.FC<Props>;
7
8
  export default PayRecharge;
@@ -40,7 +40,8 @@ var PayChannelList = [{
40
40
  }];
41
41
  var PayRecharge = function PayRecharge(_ref) {
42
42
  var nickName = _ref.nickName,
43
- onHandSuccess = _ref.onHandSuccess;
43
+ onHandSuccess = _ref.onHandSuccess,
44
+ env = _ref.env;
44
45
  var _useState = useState(PayChannelList[0].childrenList[0]),
45
46
  _useState2 = _slicedToArray(_useState, 2),
46
47
  selectPayChannel = _useState2[0],
@@ -175,7 +176,8 @@ var PayRecharge = function PayRecharge(_ref) {
175
176
  vipId: 0,
176
177
  payChannel: formData.payChannel,
177
178
  selectPayChannel: selectPayChannel,
178
- size: 260
179
+ size: 260,
180
+ env: env
179
181
  })
180
182
  }), /*#__PURE__*/_jsx(Divider, {}), /*#__PURE__*/_jsxs("div", {
181
183
  className: "ssz-submits",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "component-sanzhizhou",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",