select-text.wxs 204 B

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