common.js 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. "use strict";
  2. (wx["webpackJsonp"] = wx["webpackJsonp"] || []).push([["common"],{
  3. /***/ "./src/components/Buttons.tsx":
  4. /*!************************************!*\
  5. !*** ./src/components/Buttons.tsx ***!
  6. \************************************/
  7. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  8. /* harmony export */ __webpack_require__.d(__webpack_exports__, {
  9. /* harmony export */ "default": function() { return /* binding */ Buttons; }
  10. /* harmony export */ });
  11. /* harmony import */ var _Users_Work_hola2_node_modules_babel_runtime_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */ "./node_modules/@babel/runtime/helpers/esm/objectSpread2.js");
  12. /* harmony import */ var _tarojs_components__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @tarojs/components */ "./node_modules/@tarojs/plugin-platform-weapp/dist/components-react.js");
  13. /* harmony import */ var _utils_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/types */ "./src/utils/types.ts");
  14. /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ "webpack/container/remote/react/jsx-runtime");
  15. /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__);
  16. function Buttons(props) {
  17. var myStyle = props.status == _utils_types__WEBPACK_IMPORTED_MODULE_0__.ComponentStatus.disable ? {
  18. opacity: 0.4
  19. } : {};
  20. return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_tarojs_components__WEBPACK_IMPORTED_MODULE_2__.View, {
  21. style: (0,_Users_Work_hola2_node_modules_babel_runtime_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_3__["default"])((0,_Users_Work_hola2_node_modules_babel_runtime_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_3__["default"])({}, myStyle), props.style),
  22. children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_tarojs_components__WEBPACK_IMPORTED_MODULE_2__.Button, {
  23. className: props.type == _utils_types__WEBPACK_IMPORTED_MODULE_0__.ButtonType.outline ? 'outline_btn' : 'btn',
  24. onClick: props.onClick,
  25. children: props.title
  26. })
  27. });
  28. }
  29. /***/ }),
  30. /***/ "./src/components/Rings.weapp.tsx":
  31. /*!****************************************!*\
  32. !*** ./src/components/Rings.weapp.tsx ***!
  33. \****************************************/
  34. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  35. /* harmony export */ __webpack_require__.d(__webpack_exports__, {
  36. /* harmony export */ "default": function() { return /* binding */ Rings; }
  37. /* harmony export */ });
  38. /* harmony import */ var _tarojs_components__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @tarojs/components */ "./node_modules/@tarojs/plugin-platform-weapp/dist/components-react.js");
  39. /* harmony import */ var _tarojs_taro__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tarojs/taro */ "webpack/container/remote/@tarojs/taro");
  40. /* harmony import */ var _tarojs_taro__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tarojs_taro__WEBPACK_IMPORTED_MODULE_0__);
  41. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "webpack/container/remote/react");
  42. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
  43. /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react/jsx-runtime */ "webpack/container/remote/react/jsx-runtime");
  44. /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__);
  45. function Rings(props) {
  46. var progress = 0.5;
  47. var r = props.radius || 80;
  48. var strokeWidth = props.strokeWidth || 10;
  49. var color = props.color || 'orange';
  50. var canvasRef = (0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(null);
  51. var canvasId = 'progress-canvas';
  52. var dpr = _tarojs_taro__WEBPACK_IMPORTED_MODULE_0___default().getSystemInfoSync().pixelRatio; // 获取设备的像素比
  53. var radius = r * dpr; // 圆形进度条的半径
  54. var lineWidth = strokeWidth * dpr; // 圆形进度条的线宽
  55. (0,react__WEBPACK_IMPORTED_MODULE_1__.useEffect)(function () {
  56. var ctx = _tarojs_taro__WEBPACK_IMPORTED_MODULE_0___default().createCanvasContext(canvasId);
  57. var center = radius + lineWidth / 2; // 圆心坐标
  58. // 设置画布尺寸
  59. ctx.scale(1 / dpr, 1 / dpr);
  60. // 绘制背景圆
  61. ctx.beginPath();
  62. ctx.arc(center, center, radius, 0, 2 * Math.PI);
  63. ctx.setLineWidth(lineWidth);
  64. ctx.setStrokeStyle('lightgray');
  65. ctx.setLineCap('round'); // 设置为圆角
  66. ctx.stroke();
  67. // 绘制进度圆
  68. ctx.beginPath();
  69. ctx.arc(center, center, radius, -Math.PI / 2 + 1, 2 * Math.PI * progress - Math.PI / 2);
  70. ctx.setLineWidth(lineWidth);
  71. ctx.setStrokeStyle(color);
  72. ctx.setLineCap('round'); // 设置为圆角
  73. ctx.stroke();
  74. ctx.draw();
  75. }, [progress]);
  76. return /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_2__.jsx)(_tarojs_components__WEBPACK_IMPORTED_MODULE_3__.Canvas, {
  77. canvasId: canvasId,
  78. style: {
  79. width: (radius * 2 + lineWidth) / dpr,
  80. height: (radius * 2 + lineWidth) / dpr
  81. },
  82. ref: canvasRef
  83. });
  84. }
  85. /***/ }),
  86. /***/ "./src/utils/types.ts":
  87. /*!****************************!*\
  88. !*** ./src/utils/types.ts ***!
  89. \****************************/
  90. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  91. /* harmony export */ __webpack_require__.d(__webpack_exports__, {
  92. /* harmony export */ ButtonType: function() { return /* binding */ ButtonType; },
  93. /* harmony export */ ComponentStatus: function() { return /* binding */ ComponentStatus; },
  94. /* harmony export */ TextType: function() { return /* binding */ TextType; }
  95. /* harmony export */ });
  96. var ButtonType = /*#__PURE__*/function (ButtonType) {
  97. ButtonType["primary"] = "primary";
  98. ButtonType["outline"] = "outline";
  99. return ButtonType;
  100. }({});
  101. var TextType = /*#__PURE__*/function (TextType) {
  102. TextType["primary"] = "primary";
  103. TextType["secondary"] = "secondary";
  104. return TextType;
  105. }({});
  106. var ComponentStatus = /*#__PURE__*/function (ComponentStatus) {
  107. ComponentStatus["enable"] = "enable";
  108. ComponentStatus["disable"] = "disable";
  109. return ComponentStatus;
  110. }({});
  111. /***/ }),
  112. /***/ "./src/assets/svg/check.svg":
  113. /*!**********************************!*\
  114. !*** ./src/assets/svg/check.svg ***!
  115. \**********************************/
  116. /***/ (function(module) {
  117. module.exports = "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBmaWxsPSJub25lIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDE4IDEzIj48Zz48cGF0aCBkPSJNMTcuNzA3MSwwLjI5Mjg5M0MxOC4wOTc2LDAuNjgzNDE3LDE4LjA5NzYsMS4zMTY1OCwxNy43MDcxLDEuNzA3MTFDMTcuNzA3MSwxLjcwNzExLDYuNzA3MTEsMTIuNzA3MSw2LjcwNzExLDEyLjcwNzFDNi4zMTY1OCwxMy4wOTc2LDUuNjgzNDIsMTMuMDk3Niw1LjI5Mjg5LDEyLjcwNzFDNS4yOTI4OSwxMi43MDcxLDAuMjkyODkzLDcuNzA3MTEsMC4yOTI4OTMsNy43MDcxMUMtMC4wOTc2MzExLDcuMzE2NTgsLTAuMDk3NjMxMSw2LjY4MzQyLDAuMjkyODkzLDYuMjkyODlDMC42ODM0MTcsNS45MDIzNywxLjMxNjU4LDUuOTAyMzcsMS43MDcxMSw2LjI5Mjg5QzEuNzA3MTEsNi4yOTI4OSw2LDEwLjU4NTgsNiwxMC41ODU4QzYsMTAuNTg1OCwxNi4yOTI5LDAuMjkyODkzLDE2LjI5MjksMC4yOTI4OTNDMTYuNjgzNCwtMC4wOTc2MzExLDE3LjMxNjYsLTAuMDk3NjMxMSwxNy43MDcxLDAuMjkyODkzQzE3LjcwNzEsMC4yOTI4OTMsMTcuNzA3MSwwLjI5Mjg5MywxNy43MDcxLDAuMjkyODkzWiIgZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjQUFGRjAwIiBmaWxsLW9wYWNpdHk9IjEiLz48L2c+PC9zdmc+";
  118. /***/ })
  119. }]);
  120. //# sourceMappingURL=common.js.map