提交修改
This commit is contained in:
parent
12e0972f8d
commit
65e2f1f8b3
@ -142,7 +142,7 @@ export const apiGetTCounts = data => {
|
||||
|
||||
// 新增盘点次数
|
||||
export const apiAddTCounts = () => {
|
||||
return http({url: `/lz_management/modules/count/newStart`, method: 'get',})
|
||||
return http({url: `/lz_management/modules/count/newStart`, method: 'get'})
|
||||
}
|
||||
|
||||
// 删除盘点次数
|
||||
|
||||
@ -44,21 +44,33 @@
|
||||
},
|
||||
computed: {
|
||||
documentClientHeight: {
|
||||
get () { return this.$store.state.common.documentClientHeight },
|
||||
set (val) { this.$store.commit('common/updateDocumentClientHeight', val) }
|
||||
get () {
|
||||
return this.$store.state.common.documentClientHeight
|
||||
},
|
||||
set (val) {
|
||||
this.$store.commit('common/updateDocumentClientHeight', val)
|
||||
}
|
||||
},
|
||||
sidebarFold: {
|
||||
get () { return this.$store.state.common.sidebarFold }
|
||||
get () {
|
||||
return this.$store.state.common.sidebarFold
|
||||
}
|
||||
},
|
||||
userId: {
|
||||
get () { return this.$store.state.user.id },
|
||||
set (val) { this.$store.commit('user/updateId', val) }
|
||||
get () {
|
||||
return this.$store.state.user.id
|
||||
},
|
||||
set (val) {
|
||||
this.$store.commit('user/updateId', val)
|
||||
}
|
||||
},
|
||||
userName: {
|
||||
get () {
|
||||
return this.$store.state.user.userName
|
||||
},
|
||||
set (val) { this.$store.commit('user/updateName', val) }
|
||||
set (val) {
|
||||
this.$store.commit('user/updateName', val)
|
||||
}
|
||||
}
|
||||
},
|
||||
created () {
|
||||
@ -66,7 +78,6 @@
|
||||
},
|
||||
mounted () {
|
||||
this.resetDocumentClientHeight()
|
||||
|
||||
},
|
||||
methods: {
|
||||
// 重置窗口可视高度
|
||||
@ -95,5 +106,4 @@
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user