|
|
|
@ -11,22 +11,34 @@
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
<span slot="status" slot-scope="text">
|
|
|
|
<span slot="status" slot-scope="text">
|
|
|
|
{{realCheck.flag == 1?"盘点正确":"盘点异常"}}
|
|
|
|
{{text.flag}}
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
<span slot="pic" slot-scope="text" style="width:auto">
|
|
|
|
<span slot="pic" slot-scope="text" style="width:auto">
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<span style="height:100%;">
|
|
|
|
<span style="height:100%;">
|
|
|
|
<happy-scroll color="rgba(100,100,100,0.5)" size="8" class="scroll-box" style="width:320px;height:90px;">
|
|
|
|
<happy-scroll color="rgba(100,100,100,0.5)" size="8" class="scroll-box" style="width:320px;height:90px;">
|
|
|
|
<viewer :images="text.pics">
|
|
|
|
|
|
|
|
<img class="historyImg" v-for="(src,index) in text.pics" :src="imgUrl+src"
|
|
|
|
<viewer >
|
|
|
|
:key="index"/>
|
|
|
|
<img class="historyImg" :src="'http://'+text.path"
|
|
|
|
|
|
|
|
:key="'http://'+text.path"/>
|
|
|
|
</viewer>
|
|
|
|
</viewer>
|
|
|
|
</happy-scroll>
|
|
|
|
</happy-scroll>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<span slot="operate" slot-scope="text" style="width:auto">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
|
|
<span style="height:100%;">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</a-table>
|
|
|
|
</a-table>
|
|
|
|
|
|
|
|
|
|
|
|
@ -75,6 +87,18 @@ export default {
|
|
|
|
title: "数量",
|
|
|
|
title: "数量",
|
|
|
|
dataIndex: "count",
|
|
|
|
dataIndex: "count",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "上位条码",
|
|
|
|
|
|
|
|
dataIndex: "wmsCode",
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "上位数量",
|
|
|
|
|
|
|
|
dataIndex: "wmsCount",
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "状态",
|
|
|
|
|
|
|
|
dataIndex: "flagString",
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
title: "照片",
|
|
|
|
title: "照片",
|
|
|
|
scopedSlots: {customRender: 'pic'},
|
|
|
|
scopedSlots: {customRender: 'pic'},
|
|
|
|
@ -84,6 +108,10 @@ export default {
|
|
|
|
title: "时间",
|
|
|
|
title: "时间",
|
|
|
|
dataIndex: "createTime",
|
|
|
|
dataIndex: "createTime",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "操作",
|
|
|
|
|
|
|
|
scopedSlots: {customRender: 'operate'},
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|