Browse Source

解决文件上传回显

dev
long 2 years ago
parent
commit
9b821aca8c
  1. 4
      src/api/manage.js
  2. 1
      src/components/jeecg/FileList.vue
  3. 59
      src/components/jeecg/JUpload.vue
  4. 17
      src/views/activiti/form/ProcessUdgetPlanForm.vue

4
src/api/manage.js

@ -227,9 +227,9 @@ export function getRecord(data) {
for (var i = 0; i < text.length; i++) { for (var i = 0; i < text.length; i++) {
var name = text[i].filename var name = text[i].filename
var fileJson = { var fileJson = {
name: text[i].fileName, name: text[i].name,
url: text[i].url, url: text[i].url,
size: text[i].fileSize, size: text[i].size,
id: text[i].id, id: text[i].id,
fileType: text[i].fileType fileType: text[i].fileType
} }

1
src/components/jeecg/FileList.vue

@ -173,6 +173,7 @@
methods: { methods: {
initFileListArr(val) { initFileListArr(val) {
console.log('+++------>',val)
if (!val || val.length == 0) { if (!val || val.length == 0) {
this.fileList = [] this.fileList = []
return return

59
src/components/jeecg/JUpload.vue

@ -32,7 +32,7 @@
<div class="ant-upload-text">{{ text }}</div> <div class="ant-upload-text">{{ text }}</div>
</div> </div>
<a-button v-else-if="buttonVisible"> <a-button v-else-if="buttonVisible">
<a-icon type="upload" />{{ text }} <a-icon type="upload" />{{ text }}
</a-button> </a-button>
</template> </template>
</a-upload> </a-upload>
@ -69,7 +69,6 @@
headers:{}, headers:{},
fileList: [], fileList: [],
newFileList: [], newFileList: [],
result: '',
uploadGoOn:true, uploadGoOn:true,
previewVisible: false, previewVisible: false,
//---------------------------- begin ------------------------------------- //---------------------------- begin -------------------------------------
@ -102,7 +101,7 @@
default:"temp" default:"temp"
}, },
value:{ value:{
type:[Object, Array, String, Number], type:[Array, Object, String, Number],
required:false required:false
}, },
// update-begin- --- author:wangshuai ------ date:20190929 ---- for:Jupload // update-begin- --- author:wangshuai ------ date:20190929 ---- for:Jupload
@ -147,7 +146,6 @@
if (val instanceof Array) { if (val instanceof Array) {
if(this.returnUrl){ if(this.returnUrl){
this.initFileListArr(val); this.initFileListArr(val);
// this.initFileList(val.join(','))
}else{ }else{
this.initFileListArr(val); this.initFileListArr(val);
} }
@ -175,7 +173,6 @@
methods:{ methods:{
initFileListArr(val) { initFileListArr(val) {
console.log('999999',val)
if (!val || val.length == 0) { if (!val || val.length == 0) {
this.fileList = [] this.fileList = []
return return
@ -185,6 +182,7 @@
fileList.push({ fileList.push({
uid: uidGenerator(), uid: uidGenerator(),
name: val[a].name, name: val[a].name,
groups: val[a].groups,
id: val[a].id, id: val[a].id,
status: 'done', status: 'done',
url: val[a].url, url: val[a].url,
@ -192,6 +190,7 @@
result: { result: {
uid: uidGenerator(), uid: uidGenerator(),
name: val[a].name, name: val[a].name,
groups: val[a].groups,
id: val[a].id, id: val[a].id,
status: 'done', status: 'done',
url: val[a].url url: val[a].url
@ -263,17 +262,15 @@
return true return true
}, },
handleChange(info) { handleChange(info) {
console.log("--文件列表改变--",info) if (!info.file.status && this.uploadGoOn === false) {
if(!info.file.status && this.uploadGoOn === false){ info.fileList.pop()
info.fileList.pop();
} }
let fileList = info let fileList = info.fileList
if (info.file.status === 'done') {
if(info.file.status==='done'){ if (this.number > 0) {
if(this.number>0){ fileList = fileList.slice(this.number)
fileList = fileList.slice(-this.number);
} }
if(info.file.response.success){ if (info.file.response.success) {
fileList = fileList.map((file) => { fileList = fileList.map((file) => {
if (file.response) { if (file.response) {
let reUrl let reUrl
@ -284,23 +281,21 @@
} }
file.url = getFileAccessHttpUrl(reUrl) file.url = getFileAccessHttpUrl(reUrl)
} }
return file; return file
}); })
} }
//this.$message.success(`${info.file.name} !`); } else if (info.file.status === 'error') {
}else if (info.file.status === 'error') { this.$message.error(`${info.file.name} 上传失败.`)
this.$message.error(`${info.file.name} 上传失败.`); } else if (info.file.status === 'removed') {
}else if(info.file.status === 'removed'){
this.handleDelete(info.file) this.handleDelete(info.file)
} }
this.fileList = fileList this.fileList = fileList
if(info.file.status==='done' || info.file.status === 'removed'){ if (info.file.status === 'done' || info.file.status === 'removed') {
this.newFileList = [] this.newFileList = []
for (var a = 0; a < fileList.length; a++) { for (var a = 0; a < fileList.length; a++) {
if (fileList[a].status === 'done') { if (fileList[a].status === 'done') {
var fileJson = { var fileJson = {
fileName: fileList[a].response.result.fileName, name: fileList[a].response.result.name,
url: fileList[a].response.result.url, url: fileList[a].response.result.url,
size: fileList[a].response.result.size, size: fileList[a].response.result.size,
id: fileList[a].response.result.id, id: fileList[a].response.result.id,
@ -311,10 +306,10 @@
return return
} }
} }
console.log('2222222222222',this.newFileList)
this.initFileListArr(this.newFileList) this.initFileListArr(this.newFileList)
this.$emit('change', this.newFileList) this.$emit('change', this.newFileList)
} }
//}
}, },
handleDelete(file){ handleDelete(file){
// //
@ -445,16 +440,16 @@
</script> </script>
<style lang="less"> <style lang="less">
.uploadty-disabled{ .uploadty-disabled{
.ant-upload-list-item { .ant-upload-list-item {
.anticon-close{ .anticon-close{
display: none; display: none;
} }
.anticon-delete{ .anticon-delete{
display: none; display: none;
}
} }
} }
}
//---------------------------- begin ------------------------------------- //---------------------------- begin -------------------------------------
.uploadty-mover-mask{ .uploadty-mover-mask{
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.5);

17
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -58,11 +58,6 @@
<j-upload v-decorator="['fileId']" :trigger-change="true"></j-upload> <j-upload v-decorator="['fileId']" :trigger-change="true"></j-upload>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :span="8">
<a-form-model-item label="文件" :labelCol="labelCol" :wrapperCol="wrapperCol" v-show="false">
<FileList v-decorator="['ossFileList']"></FileList>
</a-form-model-item>
</a-col>
</a-row> </a-row>
</a-form> </a-form>
</j-form-container> </j-form-container>
@ -706,18 +701,6 @@
this.$message.error("需求时间不能小于当前流程发起时间") this.$message.error("需求时间不能小于当前流程发起时间")
return; return;
} }
// if (formData.needTime === null || formData.needTime ==='' || formData.needTime === undefined){
// this.$message.error("")
// return;
// }
// if (formData.processPlan === null || formData.processPlan ==='' || formData.processPlan === undefined){
// this.$message.error("")
// return;
// }
// if (formData.materialType === null || formData.materialType ==='' || formData.materialType === undefined){
// this.$message.error("")
// return;
// }
this.form.validateFields((err, values) => { this.form.validateFields((err, values) => {
if (!err) { if (!err) {
formData.procDefId = this.processData.id; formData.procDefId = this.processData.id;

Loading…
Cancel
Save