提交修改

This commit is contained in:
quyixiao 2020-09-29 17:44:48 +08:00
parent 12e0972f8d
commit 65e2f1f8b3
3 changed files with 91 additions and 81 deletions

View File

@ -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'})
}
// 删除盘点次数

View File

@ -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>