修改类型

This commit is contained in:
aoli.qu 2022-02-25 19:03:10 +08:00
parent 6135e5ac52
commit 609df93e42
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@
}, },
data () { data () {
return { return {
noticeRange: 2, noticeRange: '2',
// //
queryParam: { }, queryParam: { },
// //
@ -202,7 +202,7 @@
if (!noticeRange) { if (!noticeRange) {
this.noticeRange = this.hasPerm('notice:edit') ? '1' : '2' this.noticeRange = this.hasPerm('notice:edit') ? '1' : '2'
} else { } else {
this.noticeRange = noticeRange this.noticeRange = noticeRange.toString()
} }
}, },
methods: { methods: {