|
@@ -16,8 +16,8 @@
|
|
|
<template slot="extra">
|
|
|
<a-checkbox key="4" v-model="printCostChecked">打印成本</a-checkbox>
|
|
|
<a-radio-group key="3" v-model="printerType">
|
|
|
- <a-radio value="INK">针式</a-radio>
|
|
|
- <a-radio value="NEEDLE">喷墨</a-radio>
|
|
|
+ <a-radio value="NEEDLE">针式</a-radio>
|
|
|
+ <a-radio value="INK">喷墨</a-radio>
|
|
|
</a-radio-group>
|
|
|
<a-button key="2" id="storeTransferOutDetail-preview-btn" :disabled="localDataSource.length==0" @click="handlePrint('preview')">打印预览</a-button>
|
|
|
<a-button key="1" type="primary" id="storeTransferOutDetail-print-btn" :disabled="localDataSource.length==0" @click="handlePrint('print')">快捷打印</a-button>
|
|
@@ -95,7 +95,7 @@ export default {
|
|
|
localDataSource: [],
|
|
|
basicInfoData: null, // 基本信息
|
|
|
productTotal: null, // 合计
|
|
|
- printerType: 'INK', // 打印机类型
|
|
|
+ printerType: 'NEEDLE', // 打印机类型
|
|
|
printCostChecked: true // 打印成本
|
|
|
}
|
|
|
},
|