代码路侧车检页面修改 上传组件改成单个上传

This commit is contained in:
likehai 2023-10-18 10:23:39 +08:00
parent 414be7c618
commit 3d2ed15bd1
2 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@
>
<i class="el-icon-plus"></i>
</el-upload>
<!-- 上传提示 -->
<div class="el-upload__tip" slot="tip" v-if="showTip">
请上传
@ -51,12 +51,12 @@ export default {
//
limit: {
type: Number,
default: 5,
default: 1,
},
// (MB)
fileSize: {
type: Number,
default: 5,
default: 10,
},
// , ['png', 'jpg', 'jpeg']
fileType: {

View File

@ -130,7 +130,7 @@
size="mini"
@click="handleAdd"
v-hasPermi="['passenger:parkWarning:add']"
>新增</el-button>
>人工添加</el-button>
</el-col>
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
@ -482,7 +482,7 @@ export default {
handleAdd() {
this.reset();
this.open = true;
this.title = "添加停车预警信息";
this.title = "人工添加车辆检测和追踪信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
@ -491,7 +491,7 @@ export default {
getParkWarning(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改停车预警信息";
this.title = "人工修改车辆检测和追踪信息";
});
},
/** 提交按钮 */