import { Component } from '@tarojs/taro' const objectToString = (style: object | string): string => { if (style && typeof style === 'object') { let styleStr = '' Object.keys(style).forEach(key => { const lowerCaseKey = key.replace(/([A-Z])/g, '-$1').toLowerCase() styleStr += `${lowerCaseKey}:${style[key]};` }) return styleStr } else if (style && typeof style === 'string') { return style } return '' } export default class ZOComponent
extends Component
{ static options = { addGlobalClass: true } /** * 合并 style * @param {Object|String} style1 * @param {Object|String} style2 * @returns {String} */ mergeStyle( style1: object | string, style2: object | string ): object | string { if ( style1 && typeof style1 === 'object' && style2 && typeof style2 === 'object' ) { return Object.assign({}, style1, style2) } return objectToString(style1) + objectToString(style2) } }