导出还没通
parent
06920346f8
commit
a116151652
|
@ -58,7 +58,7 @@
|
|||
<el-upload
|
||||
ref="upload"
|
||||
:disabled="isDisabled"
|
||||
:file-list.sync="infoForm.photos"
|
||||
:file-list.sync="fileList"
|
||||
:multiple="false"
|
||||
:auto-upload="true"
|
||||
:limit="limitNum"
|
||||
|
@ -100,7 +100,7 @@
|
|||
</el-form>
|
||||
|
||||
<el-dialog :visible.sync="dialogImgVisible">
|
||||
<img :src="dialogImageUrl" width="100%" alt="">
|
||||
<img :src="config.fileUrl+infoForm.photos" width="100%" alt="">
|
||||
</el-dialog>
|
||||
|
||||
<div class="ui-height"/>
|
||||
|
@ -109,7 +109,8 @@
|
|||
type="primary"
|
||||
icon="el-icon-arrow-left"
|
||||
plain
|
||||
@click="goBack">返回</el-button>
|
||||
@click="goBack">返回
|
||||
</el-button>
|
||||
<el-button type="primary" @click="confirm">确 定</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -139,7 +140,7 @@ export default {
|
|||
seriouslyInjured: null, // 重伤人数
|
||||
cause: '', // 事故起因
|
||||
summary: '', // 事故概述
|
||||
photos: [], // 事故照片
|
||||
photos: '', // 事故照片
|
||||
analysis: '', // 原因分析及责任认定
|
||||
suggestions: '', // 考核建议
|
||||
measures: '', // 整改措施
|
||||
|
@ -154,8 +155,8 @@ export default {
|
|||
tableName: '',
|
||||
/** 图片上传限制个数 */
|
||||
limitNum: 1,
|
||||
/** 预览图片地址 */
|
||||
dialogImageUrl: '',
|
||||
/** 图片 */
|
||||
fileList: [],
|
||||
allowRemove: true, // 添加一个控制标志
|
||||
/** 预览弹窗 */
|
||||
dialogImgVisible: false,
|
||||
|
@ -224,15 +225,6 @@ export default {
|
|||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 单独查询图片流文件
|
||||
*/
|
||||
getFileImageBinaray(fileName) {
|
||||
requestFN(`/accident/view/photos`, { path: fileName }).then((res) => {
|
||||
console.log('res :>> ', res)
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 点击文件列表中已上传的文件时的钩子
|
||||
*/
|
||||
|
@ -244,6 +236,7 @@ export default {
|
|||
/**
|
||||
* 文件上传失败时的钩子处理
|
||||
*/
|
||||
// eslint-disable-next-line handle-callback-err
|
||||
handleError(err, file, fileList) {
|
||||
this.$message({
|
||||
message: `${file.name}上传失败, 请稍后重试`,
|
||||
|
@ -280,11 +273,7 @@ export default {
|
|||
formData.append('file', file)
|
||||
upload('/accident/import/photos', formData).then((data) => {
|
||||
if (data.result === 'success') {
|
||||
this.infoForm.photos = [{
|
||||
name: file.name,
|
||||
url: URL.createObjectURL(file),
|
||||
remotePathName: data.path
|
||||
}]
|
||||
this.infoForm.photos = data.path
|
||||
}
|
||||
})
|
||||
return false
|
||||
|
|
|
@ -101,7 +101,6 @@ export default {
|
|||
|
||||
data() {
|
||||
return {
|
||||
config: config,
|
||||
// 搜索查询条件
|
||||
searchForm: {
|
||||
/** 事故名称 */
|
||||
|
@ -242,7 +241,7 @@ export default {
|
|||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.listLoading = false
|
||||
window.open(config.templatefileUrl + 'template/limitSpace.xls')
|
||||
window.open(config.httpurl + '/export/excel')
|
||||
}).catch(() => {
|
||||
this.listLoading = false
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue