工艺定额登录查询

This commit is contained in:
zhangdingyu
2019-01-16 15:57:36 +08:00
parent ebbbb8e71a
commit 1bb99c2a54
3 changed files with 26 additions and 8 deletions

View File

@@ -555,6 +555,7 @@ import {
searchRecord
} from '@/api/ManufacturingCenter/ProcessPlanning'
import elInput from 'element-ui/packages/input'
import { mapGetters } from 'vuex'
export default {
components: {
@@ -667,6 +668,14 @@ export default {
material2: ''
}
},
computed: {
...mapGetters([
'sidebar',
'avatar',
'name',
'id'
])
},
created() {
this.fetchData()
this.initPerson()

View File

@@ -98,6 +98,7 @@
<script>
import { getPerson, mainTable, getPartnames1, getPartnames2, detailInfo, mainTable1, TableAddLi, TableAddLi1 } from '@/api/ManufacturingCenter/QuotaFormulation'
import { mapGetters } from 'vuex'
export default {
data() {
@@ -171,6 +172,14 @@ export default {
timeout: null
}
},
computed: {
...mapGetters([
'sidebar',
'avatar',
'name',
'id'
])
},
created() {
this.fetchData()
},