...
|
...
|
@@ -62,7 +62,7 @@ |
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-divider content-position="left"><i class="el-icon-s-home"></i> 入库相关</el-divider>
|
|
|
<el-divider content-position="left"><i class="el-icon-house"></i> 入库相关</el-divider>
|
|
|
<el-row>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label=" " :label-width="formLabelWidth" prop="area">
|
...
|
...
|
@@ -217,8 +217,20 @@ |
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-divider content-position="left"><i class="el-icon-picture-outline"></i>图像操作</el-divider>
|
|
|
<el-row>
|
|
|
<el-col :span="8">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label=" " :label-width="formLabelWidth" prop="picUrl">
|
|
|
<el-input v-model="addForm.picUrl" autocomplete="off" suffix-icon="el-icon-document" clearable>
|
|
|
<template slot="prepend">图片地址</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-button type="success" icon="el-icon-edit" @click="drawerVisible = true">入库图像</el-button>
|
|
|
</el-col>
|
|
|
|
|
|
<!-- <el-col :span="8">-->
|
|
|
<!-- <el-form-item label="" :label-width="formLabelWidth" prop="status">-->
|
|
|
<!-- <el-input v-model="addForm.status" autocomplete="off" style="width: 300px">-->
|
|
|
<!-- <template slot="prepend">状  态</template>-->
|
...
|
...
|
@@ -425,6 +437,15 @@ |
|
|
</el-pagination>
|
|
|
</el-row>
|
|
|
</el-card>
|
|
|
<el-drawer
|
|
|
title="我是标题"
|
|
|
:visible.sync="drawerVisible"
|
|
|
:with-header="false">
|
|
|
<video width="100%" height="200" autoplay loop controls id="videos">
|
|
|
<source src="/static/login/New-jumbo.mp4" type="video/mp4">
|
|
|
</video>
|
|
|
<el-button class="btns" @click="screenshot">一键截屏</el-button>
|
|
|
</el-drawer>
|
|
|
</el-row>
|
|
|
</template>
|
|
|
|
...
|
...
|
@@ -470,6 +491,7 @@ |
|
|
// 编辑对话框
|
|
|
editDialog: false
|
|
|
},
|
|
|
drawerVisible: false,
|
|
|
addForm: {
|
|
|
area: '',
|
|
|
billweight: '',
|
...
|
...
|
@@ -498,6 +520,7 @@ |
|
|
remark3:'',
|
|
|
remark4:'',
|
|
|
remark5:'',
|
|
|
picUrl:''
|
|
|
},
|
|
|
options: [{
|
|
|
value: '板箱',
|
...
|
...
|
@@ -806,6 +829,9 @@ |
|
|
}
|
|
|
};
|
|
|
},
|
|
|
screenshot(){
|
|
|
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getAreaList();
|
...
|
...
|
|