Browse Source

修复部分干线bug

dev-xx
qb 10 months ago
parent
commit
ef2f358aa3
  1. 72
      src/components/WaybillPrintTemplate/WaybillPrintTemplate.vue
  2. 5
      src/views/distribution/artery/VehicleStowageDetails.vue

72
src/components/WaybillPrintTemplate/WaybillPrintTemplate.vue

@ -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">

5
src/views/distribution/artery/VehicleStowageDetails.vue

@ -188,7 +188,7 @@
v-model="details.type" v-model="details.type"
tab-position="left" tab-position="left"
style="height: 100%; width: fit-content; flex: none" style="height: 100%; width: fit-content; flex: none"
@tab-click="() => inputsc('', { prop: 'aaa' })" @tab-click="initOriginWarehouseOrder"
class="demo-tabs" class="demo-tabs"
> >
<el-tab-pane label="实际数据" name="real"></el-tab-pane> <el-tab-pane label="实际数据" name="real"></el-tab-pane>
@ -631,13 +631,12 @@ onMounted(() => {
}); });
/** 请求运单数据 */ /** 请求运单数据 */
const initOriginWarehouseOrder = async (params = {}) => { const initOriginWarehouseOrder = async () => {
try { try {
details.loadingObj.pageLoading = true; details.loadingObj.pageLoading = true;
const submitData = { const submitData = {
loadId: details.loadId, loadId: details.loadId,
...details.query, ...details.query,
...params,
}; };
const res = await postCarsLoadDetailInfo(submitData); const res = await postCarsLoadDetailInfo(submitData);

Loading…
Cancel
Save