No Description

index.js 4.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. import { a as _inherits, b as _classCallCheck, c as _possibleConstructorReturn, d as _getPrototypeOf, e as _createClass } from '../inherits-6cb67931.js';
  2. import React, { Component } from 'react';
  3. import { s as styleInject } from '../style-inject.es-1f59c1d0.js';
  4. import { c as classnames } from '../index-e3cf212a.js';
  5. var css = ".WaitPayInfoView_waitingContainer__3pU2F {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n}\n";
  6. var styles = {
  7. "waitingContainer": "WaitPayInfoView_waitingContainer__3pU2F"
  8. };
  9. styleInject(css);
  10. var img = "data:image/svg+xml,%3c%3fxml version='1.0' encoding='UTF-8'%3f%3e%3csvg width='48px' height='43px' viewBox='0 0 48 43' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch --%3e %3ctitle%3ekcxq_popovers_icon_tanhao%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cdefs%3e%3c/defs%3e %3cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='%e5%8f%a6%e5%ae%a2%e7%bd%91_%e7%9b%b4%e6%92%ad%e8%af%be_%e8%af%be%e7%a8%8b%e4%bb%8b%e7%bb%8d%e8%af%a6%e6%83%85_%e8%b4%ad%e4%b9%b0%e6%8f%90%e7%a4%ba%e5%bc%b9%e7%aa%97' transform='translate(-936.000000%2c -190.000000)' fill-rule='nonzero'%3e %3cg id='Group-22' transform='translate(690.000000%2c 110.000000)'%3e %3cg id='kcxq_popovers_icon_tanhao' transform='translate(246.000000%2c 80.000000)'%3e %3cpath d='M48%2c21.5 C48%2c33.3736626 38.3645756%2c43 26.4797048%2c43 C21.1306273%2c43 17.0391144%2c42.1506173 13.2841328%2c38.9300412 C11.8140221%2c37.6736626 1.700369%2c43.2123457 0.177121771%2c39.2839506 C-1.06273063%2c36.0987654 5.95129151%2c29.2506173 5.31365314%2c27.0740741 C4.76457565%2c25.1806584 4.95940959%2c23.5703704 4.95940959%2c21.5 C4.95940959%2c9.62633745 14.5948339%2c0 26.4797048%2c0 C38.3645756%2c0 48%2c9.62633745 48%2c21.5 Z' id='Shape' fill='%231790FF'%3e%3c/path%3e %3cg id='Group' transform='translate(23.848708%2c 8.193416)' fill='white'%3e %3cpath d='M2.5%2c27.4971098 C1.13235294%2c27.4971098 0%2c26.3794628 0%2c24.9971098 C0%2c23.6147569 1.13235294%2c22.4971098 2.5%2c22.4971098 C3.86764706%2c22.4971098 5%2c23.6147569 5%2c24.9971098 C5%2c26.3794628 3.86764706%2c27.4971098 2.5%2c27.4971098 Z M2.5%2c19.4219653 C1.13235294%2c19.4219653 0%2c18.1919075 0%2c16.6705202 L0%2c2.75144509 C0%2c1.24624277 1.13235294%2c0 2.5%2c0 C3.86764706%2c0 5%2c1.2300578 5%2c2.75144509 L5%2c16.6705202 C5%2c18.1919075 3.86764706%2c19.4219653 2.5%2c19.4219653 Z' id='Shape'%3e%3c/path%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/g%3e%3c/svg%3e";
  11. var Button = function Button() {
  12. for (var _len = arguments.length, props = new Array(_len), _key = 0; _key < _len; _key++) {
  13. props[_key] = arguments[_key];
  14. }
  15. return React.createElement("button", Object.assign({}, props), "button");
  16. };
  17. var WaitPayInfoView =
  18. /*#__PURE__*/
  19. function (_Component) {
  20. _inherits(WaitPayInfoView, _Component);
  21. function WaitPayInfoView() {
  22. _classCallCheck(this, WaitPayInfoView);
  23. return _possibleConstructorReturn(this, _getPrototypeOf(WaitPayInfoView).apply(this, arguments));
  24. }
  25. _createClass(WaitPayInfoView, [{
  26. key: "render",
  27. value: function render() {
  28. var _this$props = this.props,
  29. onClickPayed = _this$props.onClickPayed,
  30. onClickProblem = _this$props.onClickProblem;
  31. return React.createElement("div", {
  32. className: styles.waitingContainer
  33. }, React.createElement("div", {
  34. className: styles.infoIconImgContainer
  35. }, React.createElement("img", {
  36. src: img,
  37. alt: "info label icon"
  38. })), React.createElement("div", null, React.createElement("div", {
  39. className: styles.pay_text
  40. }, "live.course_info.pay.notification"), React.createElement("div", {
  41. className: styles.btn_row
  42. }, React.createElement(Button, {
  43. className: classnames(styles.pay_btn, styles.btn_default),
  44. size: "small",
  45. onClick: function onClick() {
  46. onClickPayed && onClickPayed();
  47. }
  48. }, "live.course_info.pay.payed"), React.createElement(Button, {
  49. className: styles.btn_default,
  50. size: "small",
  51. style: {
  52. marginLeft: "16px"
  53. },
  54. onClick: function onClick() {
  55. onClickProblem && onClickProblem();
  56. }
  57. }, "live.course_info.pay.help"))));
  58. }
  59. }]);
  60. return WaitPayInfoView;
  61. }(Component);
  62. WaitPayInfoView.defaultProps = {
  63. onClickPayed: function onClickPayed() {
  64. console.log("onClickPayed");
  65. },
  66. onClickProblem: function onClickProblem() {
  67. console.log("onClickProblem");
  68. }
  69. };
  70. export default WaitPayInfoView;
  71. export { WaitPayInfoView };
  72. //# sourceMappingURL=index.js.map