|
@@ -389,9 +389,18 @@
|
|
v-model="editData.level"
|
|
v-model="editData.level"
|
|
@change="changeUrgency"
|
|
@change="changeUrgency"
|
|
>
|
|
>
|
|
- <el-radio :value="1">正常</el-radio>
|
|
|
|
- <el-radio :value="2">重要</el-radio>
|
|
|
|
- <el-radio :value="3">紧急</el-radio>
|
|
|
|
|
|
+ <el-radio
|
|
|
|
+ :value="1"
|
|
|
|
+ :label="1"
|
|
|
|
+ >正常</el-radio>
|
|
|
|
+ <el-radio
|
|
|
|
+ :value="2"
|
|
|
|
+ :label="2"
|
|
|
|
+ >重要</el-radio>
|
|
|
|
+ <el-radio
|
|
|
|
+ :value="3"
|
|
|
|
+ :label="3"
|
|
|
|
+ >紧急</el-radio>
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="项目状态">
|
|
<el-form-item label="项目状态">
|
|
@@ -457,12 +466,15 @@
|
|
import { getProjectMessage, editProject } from '@/api/project'
|
|
import { getProjectMessage, editProject } from '@/api/project'
|
|
import { onMounted, reactive, ref, computed } from 'vue'
|
|
import { onMounted, reactive, ref, computed } from 'vue'
|
|
import { getAllUsers } from '@/api/user'
|
|
import { getAllUsers } from '@/api/user'
|
|
-import {queryFileList, createProjectFile, downloadProjectFile, deleteProjectFile, deleteProjectFiles} from '@/api/file'
|
|
|
|
|
|
+import { queryFileList, createProjectFile, downloadProjectFile, deleteProjectFile, deleteProjectFiles } from '@/api/file'
|
|
import { Download, Upload, Delete, Search, RefreshLeft, Edit } from '@element-plus/icons-vue'
|
|
import { Download, Upload, Delete, Search, RefreshLeft, Edit } from '@element-plus/icons-vue'
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
import OptionEdit from './components/optionEdit.vue'
|
|
import OptionEdit from './components/optionEdit.vue'
|
|
import { editorData } from '@/pinia/project/project'
|
|
import { editorData } from '@/pinia/project/project'
|
|
-import { deleteDailyFile, fileDownload } from '@/api/dailyFile'
|
|
|
|
|
|
+import { fileDownload } from '@/api/dailyFile'
|
|
|
|
+import { useRoute, useRouter } from 'vue-router'
|
|
|
|
+const router = useRouter()
|
|
|
|
+const route = useRoute()
|
|
|
|
|
|
defineOptions({
|
|
defineOptions({
|
|
name: 'ProjectDetails'
|
|
name: 'ProjectDetails'
|
|
@@ -471,7 +483,7 @@ defineOptions({
|
|
// 数据
|
|
// 数据
|
|
const editor = editorData()
|
|
const editor = editorData()
|
|
const fileCondition = reactive({
|
|
const fileCondition = reactive({
|
|
- code: 'LCZM202407161229',
|
|
|
|
|
|
+ code: route.query.code,
|
|
name: '',
|
|
name: '',
|
|
genre: 0,
|
|
genre: 0,
|
|
pageInfo: {
|
|
pageInfo: {
|
|
@@ -525,7 +537,7 @@ const projectState = computed(() => {
|
|
// .............................................
|
|
// .............................................
|
|
// 方法
|
|
// 方法
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
- projectMessage('LCZM202407161229')
|
|
|
|
|
|
+ projectMessage(route.query.code)
|
|
queryFile()
|
|
queryFile()
|
|
editor.getStateList()
|
|
editor.getStateList()
|
|
editor.getTypeList()
|
|
editor.getTypeList()
|
|
@@ -553,7 +565,7 @@ const projectMessage = (code) => {
|
|
|
|
|
|
// 重置
|
|
// 重置
|
|
const resetData = () => {
|
|
const resetData = () => {
|
|
- fileCondition.code = 'LCZM202407161229'
|
|
|
|
|
|
+ fileCondition.code = route.query.code
|
|
fileCondition.name = ''
|
|
fileCondition.name = ''
|
|
fileCondition.genre = 0
|
|
fileCondition.genre = 0
|
|
fileCondition.pageInfo = {
|
|
fileCondition.pageInfo = {
|
|
@@ -590,7 +602,7 @@ const queryFile = () => {
|
|
const editBasicMessage = () => {
|
|
const editBasicMessage = () => {
|
|
const data = {
|
|
const data = {
|
|
id: editData.ID,
|
|
id: editData.ID,
|
|
- code: 'LCZM202407161229',
|
|
|
|
|
|
+ code: route.query.code,
|
|
name: editData.name,
|
|
name: editData.name,
|
|
principal: editData.principal,
|
|
principal: editData.principal,
|
|
price: parseInt(editData.price),
|
|
price: parseInt(editData.price),
|
|
@@ -619,14 +631,15 @@ const editBasicMessage = () => {
|
|
duration: 2000
|
|
duration: 2000
|
|
})
|
|
})
|
|
messagePopupShow.value = false
|
|
messagePopupShow.value = false
|
|
- projectMessage('LCZM202407161229')
|
|
|
|
|
|
+ projectMessage(route.query.code)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
const messageEdit = () => {
|
|
const messageEdit = () => {
|
|
- messagePopupShow.value = true
|
|
|
|
Object.assign(editData, information)
|
|
Object.assign(editData, information)
|
|
|
|
+ console.log(editData)
|
|
|
|
+ messagePopupShow.value = true
|
|
}
|
|
}
|
|
// 上传文件
|
|
// 上传文件
|
|
const fileDialogClose = () => {
|
|
const fileDialogClose = () => {
|
|
@@ -662,7 +675,7 @@ const supplementFile = () => {
|
|
formData.append('file', item.raw)
|
|
formData.append('file', item.raw)
|
|
})
|
|
})
|
|
formData.append('genre', uploadFileType.value)
|
|
formData.append('genre', uploadFileType.value)
|
|
- formData.append('code', 'LCZM202407161229')
|
|
|
|
|
|
+ formData.append('code', route.query.code)
|
|
console.log(formData.get('genre'))
|
|
console.log(formData.get('genre'))
|
|
createProjectFile(formData).then(res => {
|
|
createProjectFile(formData).then(res => {
|
|
if (res.code === 0) {
|
|
if (res.code === 0) {
|
|
@@ -690,7 +703,7 @@ const downloadTips = () => {
|
|
.then(() => {
|
|
.then(() => {
|
|
const type = fileType.value === '' ? 0 : fileType.value
|
|
const type = fileType.value === '' ? 0 : fileType.value
|
|
const data = {
|
|
const data = {
|
|
- code: 'LCZM202407161229',
|
|
|
|
|
|
+ code: route.query.code,
|
|
genre: type,
|
|
genre: type,
|
|
name: fileCondition.name
|
|
name: fileCondition.name
|
|
}
|
|
}
|
|
@@ -699,7 +712,7 @@ const downloadTips = () => {
|
|
const link = document.createElement('a')
|
|
const link = document.createElement('a')
|
|
const href = window.URL.createObjectURL(res) // 创建下载的链接
|
|
const href = window.URL.createObjectURL(res) // 创建下载的链接
|
|
link.href = href
|
|
link.href = href
|
|
- link.download = 'LCZM202407161229.zip' // 下载后文件名
|
|
|
|
|
|
+ link.download = route.query.code + '.zip' // 下载后文件名
|
|
document.body.appendChild(link)
|
|
document.body.appendChild(link)
|
|
link.click() // 点击下载
|
|
link.click() // 点击下载
|
|
document.body.removeChild(link) // 下载完成移除元素
|
|
document.body.removeChild(link) // 下载完成移除元素
|
|
@@ -771,7 +784,7 @@ const projectDeletes = async() => {
|
|
.then(async() => {
|
|
.then(async() => {
|
|
const type = fileType.value === '' ? 0 : fileType.value
|
|
const type = fileType.value === '' ? 0 : fileType.value
|
|
const data = {
|
|
const data = {
|
|
- code: 'LCZM202407161229',
|
|
|
|
|
|
+ code: route.query.code,
|
|
genre: type,
|
|
genre: type,
|
|
name: fileCondition.name
|
|
name: fileCondition.name
|
|
}
|
|
}
|
|
@@ -813,8 +826,8 @@ const headSelect = () => {
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
//
|
|
-const changeUrgency = () => {
|
|
|
|
- console.log(editData.level)
|
|
|
|
|
|
+const changeUrgency = (v) => {
|
|
|
|
+ console.log(v)
|
|
}
|
|
}
|
|
|
|
|
|
const changeFilePage = (value) => {
|
|
const changeFilePage = (value) => {
|