mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 22:06:45 +08:00
添加项目 路径图上传样式
This commit is contained in:
@@ -780,8 +780,8 @@
|
||||
支持:pdf.ppt.pptx.doc.docx.xls.xlsx.jpeg.png.gif.zip
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
v-for="item in docList"
|
||||
<!-- <div
|
||||
v-for="item in fileList"
|
||||
:key="item.src"
|
||||
style="margin-top: 20px"
|
||||
class="docListStyle"
|
||||
@@ -800,6 +800,30 @@
|
||||
item.name
|
||||
}}</span>
|
||||
<span style="color: #4ea6ff; float: right">删除</span>
|
||||
</div> -->
|
||||
<div
|
||||
v-for="item in fileList"
|
||||
:key="item.uid"
|
||||
class="docListStyle"
|
||||
>
|
||||
<img
|
||||
src="@/assets/images/basicinfo/download.png"
|
||||
style="
|
||||
cursor: pointer;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-right: 40px;
|
||||
"
|
||||
alt=""
|
||||
/>
|
||||
<span style="font: oblique bold 16px Sans-serif">{{
|
||||
item.name
|
||||
}}</span>
|
||||
<span
|
||||
style="color: #4ea6ff; float: right; cursor: pointer"
|
||||
@click="deFile(item.uid)"
|
||||
>删除</span
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1898,11 +1922,13 @@ export default {
|
||||
remark: state.remark,
|
||||
routerId: state.routerId,
|
||||
status: state.action,
|
||||
}).then((res) => {
|
||||
console.log(res)
|
||||
}).catch((err) => {
|
||||
console.log(err)
|
||||
})
|
||||
.then((res) => {
|
||||
console.log(res);
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err);
|
||||
});
|
||||
}
|
||||
|
||||
if (info.file.status === "done") {
|
||||
@@ -2003,6 +2029,32 @@ export default {
|
||||
message.error("编辑失败");
|
||||
});
|
||||
};
|
||||
const deFile = (id) => {
|
||||
console.log(id);
|
||||
let index = state.fileList.findIndex((item) => {
|
||||
item.uid == id;
|
||||
});
|
||||
state.fileList.splice(index, 1);
|
||||
let str = JSON.stringify(state.fileList);
|
||||
//要编辑路径图
|
||||
editRoutered({
|
||||
attach: str,
|
||||
name: state.styTitle,
|
||||
picUrl: state.picUrl,
|
||||
remark: state.remark,
|
||||
routerId: state.routerId,
|
||||
status: state.action,
|
||||
})
|
||||
.then((res) => {
|
||||
console.log(res);
|
||||
message.destroy();
|
||||
return message.success("删除成功");
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err);
|
||||
message.warning("删除失败");
|
||||
});
|
||||
};
|
||||
return {
|
||||
...toRefs(state),
|
||||
...toRefs(levelList),
|
||||
@@ -2052,6 +2104,7 @@ export default {
|
||||
stageChange,
|
||||
pageChange,
|
||||
setconfig,
|
||||
deFile,
|
||||
};
|
||||
},
|
||||
};
|
||||
@@ -3924,6 +3977,11 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
.btnbox {
|
||||
.ant-upload-list {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.onemain {
|
||||
margin-top: 20px;
|
||||
|
||||
Reference in New Issue
Block a user