|
|
@ -1,29 +1,29 @@ |
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<el-dialog v-model="visible" :title="props.title" :width="props.width"> |
|
|
|
<template v-if="visible"> |
|
|
|
<template v-if="visible"> |
|
|
|
<el-dialog v-model="visible" :title="props.title" :width="props.width"> |
|
|
|
<div class="printCode" ref="printNodeRef"> |
|
|
|
<div class="printCode" ref="printNodeRef"> |
|
|
|
<div v-html="props.html"></div> |
|
|
|
<div v-html="props.html"></div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<div class="flex-c-c mt10"> |
|
|
|
<div class="flex-c-c mt10"> |
|
|
|
<el-button @click="handleClose" icon="CircleClose"> 关 闭 </el-button> |
|
|
|
<el-button @click="handleClose" icon="CircleClose"> 关 闭 </el-button> |
|
|
|
<el-button type="primary" v-if="props.isShowExport" @click="handleExport" icon="Download"> |
|
|
|
<el-button type="primary" v-if="props.isShowExport" @click="handleExport" icon="Download"> |
|
|
|
导 出 |
|
|
|
导 出 |
|
|
|
</el-button> |
|
|
|
</el-button> |
|
|
|
<el-button type="primary" @click="() => printTemplate('notHaveTem')" icon="Printer"> |
|
|
|
<el-button type="primary" @click="() => printTemplate('notHaveTem')" icon="Printer"> |
|
|
|
打 印 |
|
|
|
打 印 |
|
|
|
</el-button> |
|
|
|
</el-button> |
|
|
|
<el-button type="primary" @click="() => printTemplate('haveTem')" icon="Printer"> |
|
|
|
<el-button type="primary" @click="() => printTemplate('haveTem')" icon="Printer"> |
|
|
|
打 印(自定义模板) |
|
|
|
打 印(自定义模板) |
|
|
|
</el-button> |
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="是否显示运费" style="margin: 0px 0px 0px 10px"> |
|
|
|
<el-form-item label="是否显示运费" style="margin: 0px 0px 0px 10px"> |
|
|
|
<el-checkbox v-model="isShowFreight" @change="handleShowFreight"></el-checkbox> |
|
|
|
<el-checkbox v-model="isShowFreight"></el-checkbox> |
|
|
|
</el-form-item> |
|
|
|
</el-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</el-dialog> |
|
|
|
</el-dialog> |
|
|
|
</template> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
@ -34,6 +34,9 @@ import { getLodop } from '@/utils/LodopFuncs'; |
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
import { getObjType } from '@/utils/util'; |
|
|
|
import { getObjType } from '@/utils/util'; |
|
|
|
import * as XLSX from 'xlsx'; |
|
|
|
import * as XLSX from 'xlsx'; |
|
|
|
|
|
|
|
import { onMounted } from 'vue'; |
|
|
|
|
|
|
|
import { nextTick } from 'vue'; |
|
|
|
|
|
|
|
import { watch } from 'vue'; |
|
|
|
|
|
|
|
|
|
|
|
const props = defineProps({ |
|
|
|
const props = defineProps({ |
|
|
|
html: { |
|
|
|
html: { |
|
|
@ -62,7 +65,7 @@ const props = defineProps({ |
|
|
|
}, |
|
|
|
}, |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
const isShowFreight = ref(true); |
|
|
|
const isShowFreight = ref(false); |
|
|
|
|
|
|
|
|
|
|
|
const $emit = defineEmits(['update:modelValue']); |
|
|
|
const $emit = defineEmits(['update:modelValue']); |
|
|
|
|
|
|
|
|
|
|
@ -219,6 +222,19 @@ const printTemplate = (type: 'haveTem' | 'notHaveTem') => { |
|
|
|
print(printNode); |
|
|
|
print(printNode); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const handleShowFreight = value => { |
|
|
|
|
|
|
|
const freightNode = document.querySelectorAll('.printCode .freight'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log('freightNode :>> ', freightNode); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let index = 0; index < freightNode.length; index++) { |
|
|
|
|
|
|
|
const element = freightNode[index]; |
|
|
|
|
|
|
|
console.dir(element); |
|
|
|
|
|
|
|
element.style.color = value ? '#000' : '#fff'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
// freight |
|
|
|
|
|
|
|
|
|
|
|
const print1 = () => { |
|
|
|
const print1 = () => { |
|
|
|
const LODOP = getLodop(); |
|
|
|
const LODOP = getLodop(); |
|
|
|
LODOP.PRINT_INITA(''); |
|
|
|
LODOP.PRINT_INITA(''); |
|
|
@ -854,6 +870,18 @@ function getFontSize(data, size = { 17: 12, 35: 11, 39: 10, 43: 9, 20000: 7 }) { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
watch( |
|
|
|
|
|
|
|
() => props.modelValue, |
|
|
|
|
|
|
|
async () => { |
|
|
|
|
|
|
|
if (!props.modelValue) return; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await nextTick(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleShowFreight(isShowFreight.value); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ immediate: true } |
|
|
|
|
|
|
|
); |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
<style scoped lang="scss"> |
|
|
|