标签打印
This commit is contained in:
parent
2ebf040aa4
commit
d6d2498c73
22
src/views/productManagement/labelPackage.vue
Normal file
22
src/views/productManagement/labelPackage.vue
Normal file
@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form ref="form" :model="form" >
|
||||
<el-form-item label="当前生产工单">
|
||||
<el-input v-model="input" placeholder="请输入内容" disabled></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'labelPackage',
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
33
src/views/warehouseManagement/labelSetting.vue
Normal file
33
src/views/warehouseManagement/labelSetting.vue
Normal file
@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="search" inline>
|
||||
<el-form-item label="id">
|
||||
<el-input v-model="search.id" placeholder="输入流水号"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="产品名称">
|
||||
<el-input v-model="search.productName" placeholder="输入产品名称"></el-input>
|
||||
</el-form-item>
|
||||
|
||||
<el-button type="primary" icon="el-icon-search" @click="getList">搜索</el-button>
|
||||
</el-form>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="16"> <el-button type="primary" @click="newplan">新建生产计划</el-button> </el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'labelSetting',
|
||||
data() {
|
||||
return {
|
||||
search: {
|
||||
id: '',
|
||||
productName: '',
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
Loading…
x
Reference in New Issue
Block a user