Commit 7ea6cca1 authored by 邓春圆's avatar 邓春圆

调仓申请窗口添加调仓 影像

parent 7cbe1d72
...@@ -108,6 +108,16 @@ ...@@ -108,6 +108,16 @@
{{STATUS[row.status]}} {{STATUS[row.status]}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('出仓影像')">
<template v-slot="{row}">
<warehouse-video-list :modal="false" :status="2" :item ="row"></warehouse-video-list>
</template>
</el-table-column>
<el-table-column :label="$t('入仓影像')">
<template v-slot="{row}">
<warehouse-video-list :modal="false" :status="3" :item ="row"></warehouse-video-list>
</template>
</el-table-column>
</el-table> </el-table>
</el-card> </el-card>
<el-divider contentPosition="left">{{$t('审批流程')}}</el-divider> <el-divider contentPosition="left">{{$t('审批流程')}}</el-divider>
...@@ -145,6 +155,7 @@ import workFlow from "@/components/WorkFlow"; ...@@ -145,6 +155,7 @@ import workFlow from "@/components/WorkFlow";
import Template from "@/views/cms/template"; import Template from "@/views/cms/template";
import {arrryToKeyedObjectBy} from "@/utils"; import {arrryToKeyedObjectBy} from "@/utils";
import {getChannelList} from "@/api/ecw/channel"; import {getChannelList} from "@/api/ecw/channel";
import WarehouseVideoList from "@/views/ecw/order/components/warehouse-video-list.vue";
export default { export default {
name: "batchSingleApplication", name: "batchSingleApplication",
...@@ -156,6 +167,7 @@ export default { ...@@ -156,6 +167,7 @@ export default {
} }
}, },
components: { components: {
WarehouseVideoList,
Template, Template,
warehouseDetails, warehouseDetails,
workFlow workFlow
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
<div v-if="list.length"> <div v-if="list.length">
<el-button type="text" @click="dialogVisible = true">查看图片</el-button> <el-button type="text" @click="dialogVisible = true">查看图片</el-button>
<el-dialog <el-dialog
:modal="modal"
title="提示" title="提示"
:visible.sync="dialogVisible" :visible.sync="dialogVisible"
width="50%"> width="50%">
...@@ -27,6 +28,10 @@ export default { ...@@ -27,6 +28,10 @@ export default {
default:{} default:{}
}, },
status:Number, status:Number,
modal:{
type:Boolean,
default: true,
}
}, },
name: "warehouse-video-list", name: "warehouse-video-list",
data(){ data(){
...@@ -46,6 +51,7 @@ export default { ...@@ -46,6 +51,7 @@ export default {
}) })
} }
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment