master
吴普建 11 months ago
parent 71076afd84
commit 455f038020

@ -378,7 +378,7 @@
ref="leftBot"
:year="year"
width="200px"
:device-count="62"
:device-count="25"
height="160px"
@endLoading="endLoading"
/>
@ -391,7 +391,7 @@
<right-middle
v-show="!loading5"
ref="leftBot"
:device-count="10"
:device-count="9"
:year="year"
width="200px"
height="160px"

@ -37,7 +37,7 @@ const cardData: CardData[] = [
{
id: 'visit',
title: '设备总数',
value: 72,
value: 25,
unit: '',
colors: ['#ec4786', '#b955a4'],
icon: 'ant-design:bar-chart-outlined'
@ -45,7 +45,7 @@ const cardData: CardData[] = [
{
id: 'amount',
title: '运行中',
value: 62,
value: 9,
unit: '$',
colors: ['#865ec0', '#5144b4'],
icon: 'ant-design:money-collect-outlined'

@ -485,9 +485,13 @@ function printTemp(row: any) {
window.$message?.error('补打数据为空,不可打印!');
return;
}
let mylivePrint = localStorage.getItem("live-print");
console.log("mylivePrint", mylivePrint)
let livePrint = printData.livePrint;
console.log("livePrint",livePrint);
if(mylivePrint){
livePrint = mylivePrint;
}
if(!livePrint){
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore

@ -43,7 +43,7 @@
<n-date-picker
v-model:value="RecptInfo.recptDate"
:disabled="info"
type="date"
type="datetime"
placeholder="请选择入库日期"
/>
</n-descriptions-item>
@ -571,7 +571,7 @@ const RecptInfo = ref<wms.recptRawType.columns>({
areaId: null,
areaCode: null,
areaName: null,
recptDate: null,
recptDate: new Date().getTime(),
status: null,
remark: null,
attr1: null,
@ -630,7 +630,7 @@ function getRecptInfo() {
RecptInfo.value = res.data;
console.log('res.data ==>', res.data);
RecptInfo.value.recptDate = new Date(RecptInfo.value.recptDate as unknown as string).getTime();
RecptInfo.value.recptDate = new Date().getTime();
// salesUser(res.data.salseDeptId);
});
}

Loading…
Cancel
Save