result.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
  2. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  3. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  4. else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
  5. return c > 3 && r && Object.defineProperty(target, key, r), r;
  6. };
  7. import { SuperComponent, wxComponent } from '../common/src/index';
  8. import props from './props';
  9. import config from '../common/config';
  10. import { calcIcon } from '../common/utils';
  11. const { prefix } = config;
  12. const name = `${prefix}-result`;
  13. const THEME_ICON = {
  14. default: 'error-circle',
  15. success: 'check-circle',
  16. warning: 'error-circle',
  17. error: 'close-circle',
  18. };
  19. let default_1 = class extends SuperComponent {
  20. constructor() {
  21. super(...arguments);
  22. this.options = {
  23. multipleSlots: true,
  24. };
  25. this.externalClasses = [
  26. `${prefix}-class`,
  27. `${prefix}-class-image`,
  28. `${prefix}-class-title`,
  29. `${prefix}-class-description`,
  30. ];
  31. this.properties = props;
  32. this.data = {
  33. prefix,
  34. classPrefix: name,
  35. };
  36. this.lifetimes = {
  37. ready() {
  38. this.initIcon();
  39. },
  40. };
  41. this.observers = {
  42. 'icon, theme'() {
  43. this.initIcon();
  44. },
  45. };
  46. this.methods = {
  47. initIcon() {
  48. const { icon, theme } = this.properties;
  49. this.setData({
  50. _icon: calcIcon(icon, THEME_ICON[theme]),
  51. });
  52. },
  53. };
  54. }
  55. };
  56. default_1 = __decorate([
  57. wxComponent()
  58. ], default_1);
  59. export default default_1;