update copy

This commit is contained in:
lb
2023-07-07 16:13:49 +08:00
parent 1080660be3
commit 7828a1cc4e
7 changed files with 53 additions and 37 deletions

View File

@@ -107,7 +107,7 @@ export default {
domProps: {
title: opt.label ?? opt.name,
},
style: { color: !shouldDisabled && (opt.color || this.colors[opt.name] || "#0b58ff"), padding: 0, margin: '5px 9px 5px 0' },
style: { color: !shouldDisabled && (opt.color || this.colors[opt.name] || "#0b58ff"), padding: 0, margin: '5px 9px 5px 0', fontSize: '18px' },
class: ['operate--btn'],
on: { click: this.emit.bind(null, opt) },
},
@@ -126,7 +126,7 @@ export default {
domProps: {
title: opt.label ?? opt.name,
},
style: { color: this.colors[opt] || "#0b58ff", padding: 0, margin: '5px 9px 5px 0' },
style: { color: this.colors[opt] || "#0b58ff", padding: 0, margin: '5px 9px 5px 0', fontSize: '18px' },
class: ['operate--btn'],
on: { click: this.emit.bind(null, opt) },
},