Commit f91d2029 authored by Marcus's avatar Marcus

入仓打印标签

parent 339101bc
...@@ -102,12 +102,14 @@ ...@@ -102,12 +102,14 @@
<div style="text-align: center">在完成入仓前,您还可以</div> <div style="text-align: center">在完成入仓前,您还可以</div>
<div style="text-align: center;padding: 15px 0"> <div style="text-align: center;padding: 15px 0">
<el-button type="info" @click="areaVisible = true">选择储位</el-button> <el-button type="info" @click="areaVisible = true">选择储位</el-button>
<el-button type="info">打印标签</el-button> <el-button type="info" @click="isShowPrint = true">打印标签</el-button>
</div> </div>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" @click="handleSubmit()">确 定</el-button> <el-button type="primary" @click="handleSubmit()">确 定</el-button>
</div> </div>
</el-dialog> </el-dialog>
<print-tag v-if="isShowPrint" :order-id="orderId" @close="isShowPrint = false"></print-tag>
</div> </div>
</template> </template>
...@@ -124,6 +126,7 @@ import orderBaseInfo from "@/components/OrderBaseInfo" ...@@ -124,6 +126,7 @@ import orderBaseInfo from "@/components/OrderBaseInfo"
import WarehouseAreaDialog from '@/components/WarehouseAreaDialog' import WarehouseAreaDialog from '@/components/WarehouseAreaDialog'
import editDialog from '@/views/ecw/order/warehousing/components/editDialog' import editDialog from '@/views/ecw/order/warehousing/components/editDialog'
import {DICT_TYPE} from "@/utils/dict" import {DICT_TYPE} from "@/utils/dict"
import PrintTag from "@/views/ecw/order/components/PrintTag"
export default { export default {
name: "Warehousing", name: "Warehousing",
...@@ -131,7 +134,8 @@ export default { ...@@ -131,7 +134,8 @@ export default {
components: { components: {
orderBaseInfo, orderBaseInfo,
WarehouseAreaDialog, WarehouseAreaDialog,
editDialog editDialog,
PrintTag
}, },
mounted() { mounted() {
...@@ -156,9 +160,11 @@ export default { ...@@ -156,9 +160,11 @@ export default {
}, },
currencyList:[], currencyList:[],
order: {}, order: {},
orderId: undefined,
orderItemList: [], orderItemList: [],
specialList: [], specialList: [],
warehousing: undefined warehousing: undefined,
isShowPrint: false
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment