This commit is contained in:
linfso 2024-12-27 15:54:10 +08:00
parent 67dc3f208a
commit ec4d3fb8ce
4 changed files with 8 additions and 7 deletions

View File

@ -46,6 +46,7 @@
"codemirror": "^6.0.1",
"coordtransform": "^2.1.2",
"core-js": "^3.32.1",
"custom-event-polyfill": "^1.0.7",
"dayjs": "^1.11.10",
"default-passive-events": "^2.0.0",
"echarts": "4.9.0",

View File

@ -30,9 +30,9 @@
<div style="width:20%;font-size: 11px;color: gray; padding: 0px 10px;display: inline-flex;">
<div>
<div style="text-align: center;">
<ImagePreview height="50px" v-for="pic in (billDetail.billPicSendRmk.split(',') )" :key="pic" :src="pic" >
</ImagePreview>
</div>
<ImagePreview height="50px" v-for="pic in (billDetail.billPicSendRmk.split(',') )" :key="pic" :src="pic" >
</ImagePreview>
</div>
<div style="text-align: center;">
揽收底单
</div>

View File

@ -223,9 +223,9 @@
<el-table-column :label="$t('确认时间')" align="center" prop="confirmDate" min-width="100" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('进仓状态')" align="center" prop="status" min-width="100" >
<template slot-scope="scope">
<el-tag v-if="scope.row.status=='0'" type="info">未入库</el-tag>
<el-tag v-if="scope.row.status=='1'" type="success">已入仓</el-tag>
<el-tag v-if="scope.row.status=='2'" type="warning">部分入仓</el-tag>
<el-tag v-if="scope.row.stockInFlag=='0'" type="info">未入仓</el-tag>
<el-tag v-if="scope.row.stockInFlag=='1'" type="success">已入仓</el-tag>
<el-tag v-if="scope.row.stockInFlag=='2'" type="warning">部分入仓</el-tag>
</template>
</el-table-column>

View File

@ -428,7 +428,7 @@
<el-tag v-if="scope.row.blIsQuestion==1" type="danger">是</el-tag>
<el-tag v-else type="info">否</el-tag>
</template>
</el-table-column>
</el-table-column>
<el-table-column :label="$t('问题件类型')" align="center" prop="problemTypeName" width="80" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('问题件原因')" align="center" prop="problemCause" width="80" :show-overflow-tooltip="true"/>