diff --git a/src/components/LocalImageUpload/index.vue b/src/components/LocalImageUpload/index.vue new file mode 100644 index 00000000..49fbffed --- /dev/null +++ b/src/components/LocalImageUpload/index.vue @@ -0,0 +1,194 @@ + + + + + + 最多可上传{{this.limit}}张现场照片,允许上传的文件大小限制{{this.fileSize}}(MB) + + + + + + + + + diff --git a/src/main.js b/src/main.js index 1712e6d0..aa6634a8 100644 --- a/src/main.js +++ b/src/main.js @@ -39,6 +39,8 @@ import Editor from "@/components/Editor"; import FileUpload from "@/components/FileUpload"; // 图片上传组件 import ImageUpload from "@/components/ImageUpload"; +// 图片上传组件 +import LocalImageUpload from "@/components/LocalImageUpload"; // 图片预览组件 import ImagePreview from "@/components/ImagePreview"; // 字典标签组件 @@ -94,6 +96,7 @@ Vue.component("RightToolbar", RightToolbar); Vue.component("Editor", Editor); Vue.component("FileUpload", FileUpload); Vue.component("ImageUpload", ImageUpload); +Vue.component("LocalImageUpload", LocalImageUpload); Vue.component("ImagePreview", ImagePreview); Vue.component('split-pane', splitPane); Vue.component("cusEditor", cusEditor) diff --git a/src/views/components/deviceRepairDialog/index.js b/src/views/components/deviceRepairDialog/index.js index d6aadd40..b8bb4d87 100644 --- a/src/views/components/deviceRepairDialog/index.js +++ b/src/views/components/deviceRepairDialog/index.js @@ -8,6 +8,11 @@ export default { props: {repairId: {require: true}}, data() { return { + maxFiles: 3, // 允许同时上传的最大文件数 + fileSizeLimit: 5, // 允许上传的文件大小限制(MB) + uploadedFileNames: '', // 存储已上传文件名,逗号隔开 + + info: null } }, @@ -24,6 +29,13 @@ export default { this.getInfo() }, methods: { + /** + * 父组件处理子组件发送的数据更改 + * @param params + */ + component1DataChange(params) { + this.uploadedFileNames = params; + }, getInfo() { let load = getLoading(this) deviceRepairInfo(this.repairId).then(res => { diff --git a/src/views/components/deviceRepairDialog/index.vue b/src/views/components/deviceRepairDialog/index.vue index f6d2b43e..7b682333 100644 --- a/src/views/components/deviceRepairDialog/index.vue +++ b/src/views/components/deviceRepairDialog/index.vue @@ -36,6 +36,18 @@ {{ info.description }} + + + + {{ info.diagnosisInfo }} diff --git a/src/views/dev/deptDeviceCheck.vue b/src/views/dev/deptDeviceCheck.vue index da4c3daa..d54d505c 100644 --- a/src/views/dev/deptDeviceCheck.vue +++ b/src/views/dev/deptDeviceCheck.vue @@ -293,14 +293,18 @@ maxlength="300" v-model.trim="repairRow.description"/> - - - - - - - - + + + + @@ -348,8 +352,6 @@ - - + + + + @@ -462,6 +476,10 @@ export default { }, data() { return { + maxFiles: 3, // 允许同时上传的最大文件数 + fileSizeLimit: 5, // 允许上传的文件大小限制(MB) + uploadedFileNames: '', // 存储已上传文件名,逗号隔开 + clickRow: null, showSearch: true, loading: false, @@ -534,6 +552,13 @@ watch: { } }, methods: { + /** + * 父组件处理子组件发送的数据更改 + * @param params + */ + component1DataChange(params) { + this.uploadedFileNames = params; + }, applyIdSelect(row){ this.applyId = row.applyId; //查询赋值 @@ -563,7 +588,8 @@ watch: { } pData.details.push({ deviceCode: this.repairRow.deviceCode, - description: this.repairRow.description + description: this.repairRow.description, + livePath: this.uploadedFileNames }) pData.applyUserPhone = this.repairRow.repairUserPhone pData.taskId = this.repairRow.taskId @@ -584,6 +610,7 @@ watch: { }, createRepair(row) { let data = copyProperties(row, {...repairData}); + this.uploadedFileNames = "" this.repairRow = _.extend({}, row, data) }, commitItemCheck() { @@ -631,6 +658,7 @@ watch: { closeCheckDialog() { this.checkTipDialogVisible = false + this.getList() this.getDetailItemList() }, diff --git a/src/views/dev/deptDeviceCheckDetail.vue b/src/views/dev/deptDeviceCheckDetail.vue index 60e2707f..c6268d52 100644 --- a/src/views/dev/deptDeviceCheckDetail.vue +++ b/src/views/dev/deptDeviceCheckDetail.vue @@ -57,30 +57,16 @@ - - - 选取文件 - - - 请上传 - 大小不超过 {{ fileSize }}MB - 格式为 {{ fileType.join("/") }} - 的文件 - - + + @@ -130,6 +116,10 @@ export default { }, data() { return { + maxFiles: 3, // 允许同时上传的最大文件数 + fileSizeLimit: 5, // 允许上传的文件大小限制(MB) + uploadedFileNames: '', // 存储已上传文件名,逗号隔开 + itemRow: {}, itemLoading: false, itemList: [], @@ -142,7 +132,14 @@ export default { } }, methods: { - commitItemCheck() { + /** + * 父组件处理子组件发送的数据更改 + * @param params + */ + component1DataChange(params) { + this.uploadedFileNames = params; + }, + commitItemCheck() { this.$refs.itemForm.validate(b => { if (!b) { return @@ -159,7 +156,8 @@ export default { deviceCode: this.itemRow.deviceCode, suggestion: this.itemRow.suggestion, normalFlag: this.itemRow.normalFlag, - detailItemEntities: this.itemList + detailItemEntities: this.itemList, + livePath: this.uploadedFileNames } deviceCheckDetailFinish(itemParam).then(res => { load.close() @@ -199,10 +197,10 @@ export default { this.itemRow = this.originData this.itemQuery = {...itemQuery, deviceCode: this.itemRow.deviceCode, taskId: this.itemRow.taskId} this.getDetailItemList() + this.uploadedFileNames = this.itemRow.livePath }, } -