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

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

parent 7cbe1d72
......@@ -108,6 +108,16 @@
{{STATUS[row.status]}}
</template>
</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-card>
<el-divider contentPosition="left">{{$t('审批流程')}}</el-divider>
......@@ -145,6 +155,7 @@ import workFlow from "@/components/WorkFlow";
import Template from "@/views/cms/template";
import {arrryToKeyedObjectBy} from "@/utils";
import {getChannelList} from "@/api/ecw/channel";
import WarehouseVideoList from "@/views/ecw/order/components/warehouse-video-list.vue";
export default {
name: "batchSingleApplication",
......@@ -156,6 +167,7 @@ export default {
}
},
components: {
WarehouseVideoList,
Template,
warehouseDetails,
workFlow
......
......@@ -2,6 +2,7 @@
<div v-if="list.length">
<el-button type="text" @click="dialogVisible = true">查看图片</el-button>
<el-dialog
:modal="modal"
title="提示"
:visible.sync="dialogVisible"
width="50%">
......@@ -27,6 +28,10 @@ export default {
default:{}
},
status:Number,
modal:{
type:Boolean,
default: true,
}
},
name: "warehouse-video-list",
data(){
......@@ -46,6 +51,7 @@ export default {
})
}
}
}
</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