|
|
|
@ -11,13 +11,20 @@
|
|
|
|
|
<el-button type="primary" v-if="props.isShowExport" @click="handleExport" icon="Download"> |
|
|
|
|
导 出 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<el-button type="primary" @click="() => printTemplate('notHaveTem')" icon="Printer"> |
|
|
|
|
打 印 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<el-button type="primary" @click="() => printTemplate('haveTem')" icon="Printer"> |
|
|
|
|
打 印(自定义模板) |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<el-button type="primary" @click="handleShowEdit" icon="Printer"> 编辑打印机 </el-button> |
|
|
|
|
<!-- <el-button type="primary" @click="() => printTemplate('haveTem')" icon="Printer"> |
|
|
|
|
打 印(自定义模板) |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<el-select |
|
|
|
|
v-model="activeIndex" |
|
|
|
|
placeholder="打印机" |
|
|
|
@ -29,13 +36,28 @@
|
|
|
|
|
:value="item.value" |
|
|
|
|
:key="item.label" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-select> --> |
|
|
|
|
|
|
|
|
|
<el-form-item label="是否显示运费" style="margin: 0px 0px 0px 10px"> |
|
|
|
|
<el-checkbox v-model="isShowFreight" @change="handleShowFreight"></el-checkbox> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<!-- 确认打印机 --> |
|
|
|
|
<el-dialog v-model="isShow" title="编辑打印机" align-center width="fit-content"> |
|
|
|
|
<div style="margin-bottom: 40px" class="flex-c-c"> |
|
|
|
|
<div class="flex-none">请选择打印机:</div> |
|
|
|
|
<el-select v-model="activeIndex" placeholder="打印机" style="width: 200px"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in $store.state.print.printList" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
:key="item.label" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
@ -79,8 +101,12 @@ const props = defineProps({
|
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
/** 是否显示运费 */ |
|
|
|
|
const isShowFreight = ref(false); |
|
|
|
|
|
|
|
|
|
/** 是否显示选择打印机弹窗 */ |
|
|
|
|
const isShow = ref(false); |
|
|
|
|
|
|
|
|
|
const $emit = defineEmits(['update:modelValue']); |
|
|
|
|
const $store = useStore(); |
|
|
|
|
|
|
|
|
@ -93,11 +119,11 @@ const visible = computed({
|
|
|
|
|
|
|
|
|
|
const activeIndex = computed({ |
|
|
|
|
get() { |
|
|
|
|
return $store.state.print.titlePrintActiveIndex; |
|
|
|
|
return $store.state.print.deliveryPrintActiveIndex; |
|
|
|
|
}, |
|
|
|
|
set(activeIndex) { |
|
|
|
|
// 设置打印机 |
|
|
|
|
$store.commit('SET_PRINT_ACTIVE', { activeIndex, type: 'titlePrint' }); |
|
|
|
|
$store.commit('SET_PRINT_ACTIVE', { activeIndex, type: 'deliveryPrint' }); |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -225,6 +251,9 @@ const printTemplate = (type: 'haveTem' | 'notHaveTem') => {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
print(printNode); |
|
|
|
|
|
|
|
|
|
isShow.value = false; |
|
|
|
|
visible.value = false; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const handleShowFreight = value => { |
|
|
|
@ -238,6 +267,11 @@ const handleShowFreight = value => {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const handleShowEdit = () => { |
|
|
|
|
$store.commit('GET_PRINT_LIST'); |
|
|
|
|
isShow.value = true; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
watch( |
|
|
|
|
() => props.modelValue, |
|
|
|
|
async () => { |
|
|
|
|