diff --git a/god-ui/src/components/ImageUpload/index.vue b/god-ui/src/components/ImageUpload/index.vue
index b57a15e7..e16a8b2f 100644
--- a/god-ui/src/components/ImageUpload/index.vue
+++ b/god-ui/src/components/ImageUpload/index.vue
@@ -19,7 +19,7 @@
>
-
+
请上传
@@ -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: {
diff --git a/god-ui/src/views/passenger/parkWarningA/index.vue b/god-ui/src/views/passenger/parkWarningA/index.vue
index 2ae9afe4..4bd43e1a 100644
--- a/god-ui/src/views/passenger/parkWarningA/index.vue
+++ b/god-ui/src/views/passenger/parkWarningA/index.vue
@@ -130,7 +130,7 @@
size="mini"
@click="handleAdd"
v-hasPermi="['passenger:parkWarning:add']"
- >新增
+ >人工添加
@@ -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 = "人工修改车辆检测和追踪信息";
});
},
/** 提交按钮 */