index.wxs 225 B

1234567891011
  1. /* eslint-disable */
  2. function containerStyle(data) {
  3. if (data.showToolTip && data.showCopyBtn) {
  4. return 'background-color: ' + data.activeBgColor
  5. }
  6. return ''
  7. }
  8. module.exports = {
  9. containerStyle: containerStyle
  10. }