This commit is contained in:
liushuai
2019-03-29 15:23:26 +08:00
5 changed files with 490 additions and 449 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,44 @@
<template>
<div class="app-container">
<el-card></el-card>
</div>
</template>
<script>
import {} from '@/api/PurchasingCenter/BacklogGoodsPrepare'
import { mapGetters } from 'vuex'
export default {
name: 'BacklogGoodsPrepare',
data() {
return {
tableData: []
}
},
computed: {
...mapGetters([
'id'
])
},
mounted() {
this.initData()
},
methods: {
initData() {}
}
}
</script>
<style scoped>
.el-card{
margin-bottom: 15px;
}
.el-select{
width:200px
}
.el-input{
width:200px
}
span{
margin: 10px 0 10px 10px;
}
</style>