v1.2.0需求开发中

This commit is contained in:
2025-07-18 16:22:28 +08:00
parent a0ebd8254a
commit 9fa026f267
75 changed files with 10703 additions and 1197 deletions

View File

@@ -0,0 +1,28 @@
import { findDataInfo } from "../../../api/documentManagement"
export default{
data(){
return{
}
},
mounted(){
// this.fetchDataInfo()
if (this.$route.query.id) {
this.fetchDataInfo({id:this.$route.query.id})
}
},
methods:{
async fetchDataInfo(params){
const res = await findDataInfo(params)
if (res && res.code === 200) {
this.modifyData = res.data
this.addParams.content = this.modifyData.content
}
}
}
}