Commit f91d2029 authored by Marcus's avatar Marcus

入仓打印标签

parent 339101bc
......@@ -102,12 +102,14 @@
<div style="text-align: center">在完成入仓前,您还可以</div>
<div style="text-align: center;padding: 15px 0">
<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 style="text-align: center">
<el-button type="primary" @click="handleSubmit()">确 定</el-button>
</div>
</el-dialog>
<print-tag v-if="isShowPrint" :order-id="orderId" @close="isShowPrint = false"></print-tag>
</div>
</template>
......@@ -124,6 +126,7 @@ import orderBaseInfo from "@/components/OrderBaseInfo"
import WarehouseAreaDialog from '@/components/WarehouseAreaDialog'
import editDialog from '@/views/ecw/order/warehousing/components/editDialog'
import {DICT_TYPE} from "@/utils/dict"
import PrintTag from "@/views/ecw/order/components/PrintTag"
export default {
name: "Warehousing",
......@@ -131,7 +134,8 @@ export default {
components: {
orderBaseInfo,
WarehouseAreaDialog,
editDialog
editDialog,
PrintTag
},
mounted() {
......@@ -156,9 +160,11 @@ export default {
},
currencyList:[],
order: {},
orderId: undefined,
orderItemList: [],
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