修改类型
This commit is contained in:
parent
6135e5ac52
commit
609df93e42
|
@ -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: {
|
||||||
|
|
Loading…
Reference in New Issue