md
This commit is contained in:
parent
67dc3f208a
commit
ec4d3fb8ce
@ -46,6 +46,7 @@
|
|||||||
"codemirror": "^6.0.1",
|
"codemirror": "^6.0.1",
|
||||||
"coordtransform": "^2.1.2",
|
"coordtransform": "^2.1.2",
|
||||||
"core-js": "^3.32.1",
|
"core-js": "^3.32.1",
|
||||||
|
"custom-event-polyfill": "^1.0.7",
|
||||||
"dayjs": "^1.11.10",
|
"dayjs": "^1.11.10",
|
||||||
"default-passive-events": "^2.0.0",
|
"default-passive-events": "^2.0.0",
|
||||||
"echarts": "4.9.0",
|
"echarts": "4.9.0",
|
||||||
|
|||||||
@ -30,9 +30,9 @@
|
|||||||
<div style="width:20%;font-size: 11px;color: gray; padding: 0px 10px;display: inline-flex;">
|
<div style="width:20%;font-size: 11px;color: gray; padding: 0px 10px;display: inline-flex;">
|
||||||
<div>
|
<div>
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<ImagePreview height="50px" v-for="pic in (billDetail.billPicSendRmk.split(',') )" :key="pic" :src="pic" >
|
<ImagePreview height="50px" v-for="pic in (billDetail.billPicSendRmk.split(',') )" :key="pic" :src="pic" >
|
||||||
</ImagePreview>
|
</ImagePreview>
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
揽收底单
|
揽收底单
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -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="confirmDate" min-width="100" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column :label="$t('进仓状态')" align="center" prop="status" min-width="100" >
|
<el-table-column :label="$t('进仓状态')" align="center" prop="status" min-width="100" >
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tag v-if="scope.row.status=='0'" type="info">未入库</el-tag>
|
<el-tag v-if="scope.row.stockInFlag=='0'" type="info">未入仓</el-tag>
|
||||||
<el-tag v-if="scope.row.status=='1'" type="success">已入仓</el-tag>
|
<el-tag v-if="scope.row.stockInFlag=='1'" type="success">已入仓</el-tag>
|
||||||
<el-tag v-if="scope.row.status=='2'" type="warning">部分入仓</el-tag>
|
<el-tag v-if="scope.row.stockInFlag=='2'" type="warning">部分入仓</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
|
|||||||
@ -428,7 +428,7 @@
|
|||||||
<el-tag v-if="scope.row.blIsQuestion==1" type="danger">是</el-tag>
|
<el-tag v-if="scope.row.blIsQuestion==1" type="danger">是</el-tag>
|
||||||
<el-tag v-else type="info">否</el-tag>
|
<el-tag v-else type="info">否</el-tag>
|
||||||
</template>
|
</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="problemTypeName" width="80" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column :label="$t('问题件原因')" align="center" prop="problemCause" width="80" :show-overflow-tooltip="true"/>
|
<el-table-column :label="$t('问题件原因')" align="center" prop="problemCause" width="80" :show-overflow-tooltip="true"/>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user