|
@@ -62,7 +62,7 @@ |
|
@@ -62,7 +62,7 @@ |
62
|
</el-form-item>
|
62
|
</el-form-item>
|
63
|
</el-col>
|
63
|
</el-col>
|
64
|
</el-row>
|
64
|
</el-row>
|
65
|
- <el-divider content-position="left"><i class="el-icon-s-home"></i> 入库相关</el-divider>
|
65
|
+ <el-divider content-position="left"><i class="el-icon-house"></i> 入库相关</el-divider>
|
66
|
<el-row>
|
66
|
<el-row>
|
67
|
<el-col :span="6">
|
67
|
<el-col :span="6">
|
68
|
<el-form-item label=" " :label-width="formLabelWidth" prop="area">
|
68
|
<el-form-item label=" " :label-width="formLabelWidth" prop="area">
|
|
@@ -217,8 +217,20 @@ |
|
@@ -217,8 +217,20 @@ |
217
|
</el-form-item>
|
217
|
</el-form-item>
|
218
|
</el-col>
|
218
|
</el-col>
|
219
|
</el-row>
|
219
|
</el-row>
|
|
|
220
|
+ <el-divider content-position="left"><i class="el-icon-picture-outline"></i>图像操作</el-divider>
|
220
|
<el-row>
|
221
|
<el-row>
|
221
|
- <el-col :span="8">
|
222
|
+ <el-col :span="6">
|
|
|
223
|
+ <el-form-item label=" " :label-width="formLabelWidth" prop="picUrl">
|
|
|
224
|
+ <el-input v-model="addForm.picUrl" autocomplete="off" suffix-icon="el-icon-document" clearable>
|
|
|
225
|
+ <template slot="prepend">图片地址</template>
|
|
|
226
|
+ </el-input>
|
|
|
227
|
+ </el-form-item>
|
|
|
228
|
+ </el-col>
|
|
|
229
|
+ <el-col :span="6">
|
|
|
230
|
+ <el-button type="success" icon="el-icon-edit" @click="drawerVisible = true">入库图像</el-button>
|
|
|
231
|
+ </el-col>
|
|
|
232
|
+
|
|
|
233
|
+<!-- <el-col :span="8">-->
|
222
|
<!-- <el-form-item label="" :label-width="formLabelWidth" prop="status">-->
|
234
|
<!-- <el-form-item label="" :label-width="formLabelWidth" prop="status">-->
|
223
|
<!-- <el-input v-model="addForm.status" autocomplete="off" style="width: 300px">-->
|
235
|
<!-- <el-input v-model="addForm.status" autocomplete="off" style="width: 300px">-->
|
224
|
<!-- <template slot="prepend">状  态</template>-->
|
236
|
<!-- <template slot="prepend">状  态</template>-->
|
|
@@ -425,6 +437,15 @@ |
|
@@ -425,6 +437,15 @@ |
425
|
</el-pagination>
|
437
|
</el-pagination>
|
426
|
</el-row>
|
438
|
</el-row>
|
427
|
</el-card>
|
439
|
</el-card>
|
|
|
440
|
+ <el-drawer
|
|
|
441
|
+ title="我是标题"
|
|
|
442
|
+ :visible.sync="drawerVisible"
|
|
|
443
|
+ :with-header="false">
|
|
|
444
|
+ <video width="100%" height="200" autoplay loop controls id="videos">
|
|
|
445
|
+ <source src="/static/login/New-jumbo.mp4" type="video/mp4">
|
|
|
446
|
+ </video>
|
|
|
447
|
+ <el-button class="btns" @click="screenshot">一键截屏</el-button>
|
|
|
448
|
+ </el-drawer>
|
428
|
</el-row>
|
449
|
</el-row>
|
429
|
</template>
|
450
|
</template>
|
430
|
|
451
|
|
|
@@ -470,6 +491,7 @@ |
|
@@ -470,6 +491,7 @@ |
470
|
// 编辑对话框
|
491
|
// 编辑对话框
|
471
|
editDialog: false
|
492
|
editDialog: false
|
472
|
},
|
493
|
},
|
|
|
494
|
+ drawerVisible: false,
|
473
|
addForm: {
|
495
|
addForm: {
|
474
|
area: '',
|
496
|
area: '',
|
475
|
billweight: '',
|
497
|
billweight: '',
|
|
@@ -498,6 +520,7 @@ |
|
@@ -498,6 +520,7 @@ |
498
|
remark3:'',
|
520
|
remark3:'',
|
499
|
remark4:'',
|
521
|
remark4:'',
|
500
|
remark5:'',
|
522
|
remark5:'',
|
|
|
523
|
+ picUrl:''
|
501
|
},
|
524
|
},
|
502
|
options: [{
|
525
|
options: [{
|
503
|
value: '板箱',
|
526
|
value: '板箱',
|
|
@@ -806,6 +829,9 @@ |
|
@@ -806,6 +829,9 @@ |
806
|
}
|
829
|
}
|
807
|
};
|
830
|
};
|
808
|
},
|
831
|
},
|
|
|
832
|
+ screenshot(){
|
|
|
833
|
+
|
|
|
834
|
+ }
|
809
|
},
|
835
|
},
|
810
|
mounted() {
|
836
|
mounted() {
|
811
|
this.getAreaList();
|
837
|
this.getAreaList();
|