@@ -216,6 +216,17 @@ export default {
handler(val, oldVal) {
if (this.enableCommon && !this.disabled) {
this.$nextTick(() => {
+ if (this.action) {
+ this.data = ''
+ setTimeout(() => {
+ this.data =
+ this.action == 'agree'
+ ? '同意'
+ : this.action == 'stop'
+ ? '终止'
+ : ''
+ }, 500)
+ }
this.loadCommonStatment()
})
}