|
@@ -136,8 +136,8 @@
|
|
|
<el-select
|
|
|
v-model="fileType"
|
|
|
clearable
|
|
|
- @change="changeFileType"
|
|
|
placeholder="文件类型"
|
|
|
+ @change="changeFileType"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in editor.typeList"
|
|
@@ -164,6 +164,7 @@
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
:icon="RefreshLeft"
|
|
|
+ @click="resetData"
|
|
|
>
|
|
|
重置
|
|
|
</el-button>
|
|
@@ -171,27 +172,46 @@
|
|
|
<el-col
|
|
|
:span="3"
|
|
|
>
|
|
|
- <el-button
|
|
|
+ <el-dropdown
|
|
|
+ split-button
|
|
|
type="primary"
|
|
|
- :icon="Upload"
|
|
|
- @click="fileDialog = true"
|
|
|
>
|
|
|
- 上传
|
|
|
- </el-button>
|
|
|
- </el-col>
|
|
|
- <el-col
|
|
|
- :span="3"
|
|
|
- >
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- :icon="Download"
|
|
|
- @click="downloadTips"
|
|
|
- >
|
|
|
- 下载
|
|
|
- </el-button>
|
|
|
+ 菜单
|
|
|
+ <template #dropdown>
|
|
|
+ <el-dropdown-menu>
|
|
|
+ <el-dropdown-item>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ :icon="Upload"
|
|
|
+ @click="fileDialog = true"
|
|
|
+ >
|
|
|
+ 上传
|
|
|
+ </el-button>
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ :icon="Download"
|
|
|
+ @click="downloadTips"
|
|
|
+ >
|
|
|
+ 下载
|
|
|
+ </el-button>
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ :icon="Download"
|
|
|
+ @click="projectDeletes"
|
|
|
+ >
|
|
|
+ 删除
|
|
|
+ </el-button>
|
|
|
+ </el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row style="margin-top: 20px" >
|
|
|
+ <el-row style="margin-top: 20px">
|
|
|
<el-col :span="24">
|
|
|
<el-table
|
|
|
:data="fileList"
|
|
@@ -223,7 +243,7 @@
|
|
|
type="primary"
|
|
|
:icon="Download"
|
|
|
size="large"
|
|
|
- @click="projectEdit(scope.$index, scope.row)"
|
|
|
+ @click="oneDownload(scope.row)"
|
|
|
>
|
|
|
下载
|
|
|
</el-button>
|
|
@@ -232,7 +252,7 @@
|
|
|
type="primary"
|
|
|
:icon="Delete"
|
|
|
size="large"
|
|
|
- @click="projectDelete(scope.$index, scope.row)"
|
|
|
+ @click="projectDelete(scope.row)"
|
|
|
>
|
|
|
删除
|
|
|
</el-button>
|
|
@@ -243,11 +263,11 @@
|
|
|
</el-row>
|
|
|
<el-row justify="end">
|
|
|
<el-pagination
|
|
|
- :page-size="10"
|
|
|
- background
|
|
|
- layout="prev, pager, next"
|
|
|
- :total="fileTotal"
|
|
|
- @change="changeFilePage"
|
|
|
+ :page-size="10"
|
|
|
+ background
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :total="fileTotal"
|
|
|
+ @change="changeFilePage"
|
|
|
/>
|
|
|
</el-row>
|
|
|
</el-card>
|
|
@@ -424,11 +444,11 @@
|
|
|
</template>
|
|
|
</el-dialog>
|
|
|
<el-dialog
|
|
|
- v-model="stateTypeShow"
|
|
|
- title="状态和类型编辑"
|
|
|
- width="40%"
|
|
|
+ v-model="stateTypeShow"
|
|
|
+ title="状态和类型编辑"
|
|
|
+ width="40%"
|
|
|
>
|
|
|
- <option-edit/>
|
|
|
+ <option-edit />
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -437,11 +457,12 @@
|
|
|
import { getProjectMessage, editProject } from '@/api/project'
|
|
|
import { onMounted, reactive, ref, computed } from 'vue'
|
|
|
import { getAllUsers } from '@/api/user'
|
|
|
-import { queryFileList, createProjectFile, downloadProjectFile } 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 { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
import OptionEdit from './components/optionEdit.vue'
|
|
|
import { editorData } from '@/pinia/project/project'
|
|
|
+import { deleteDailyFile, fileDownload } from '@/api/dailyFile'
|
|
|
|
|
|
defineOptions({
|
|
|
name: 'ProjectDetails'
|
|
@@ -530,6 +551,18 @@ const projectMessage = (code) => {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+// 重置
|
|
|
+const resetData = () => {
|
|
|
+ fileCondition.code = 'LCZM202407161229'
|
|
|
+ fileCondition.name = ''
|
|
|
+ fileCondition.genre = 0
|
|
|
+ fileCondition.pageInfo = {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 9
|
|
|
+ }
|
|
|
+ queryFile()
|
|
|
+}
|
|
|
+
|
|
|
const changeFileType = (value) => {
|
|
|
if (typeof value === 'number') {
|
|
|
fileTypeList.forEach(item => {
|
|
@@ -656,14 +689,21 @@ const downloadTips = () => {
|
|
|
)
|
|
|
.then(() => {
|
|
|
const type = fileType.value === '' ? 0 : fileType.value
|
|
|
- console.log(type)
|
|
|
const data = {
|
|
|
code: 'LCZM202407161229',
|
|
|
genre: type,
|
|
|
name: fileCondition.name
|
|
|
}
|
|
|
downloadProjectFile(data).then(res => {
|
|
|
- console.log(res.data)
|
|
|
+ console.log(res)
|
|
|
+ const link = document.createElement('a')
|
|
|
+ const href = window.URL.createObjectURL(res) // 创建下载的链接
|
|
|
+ link.href = href
|
|
|
+ link.download = 'LCZM202407161229.zip' // 下载后文件名
|
|
|
+ document.body.appendChild(link)
|
|
|
+ link.click() // 点击下载
|
|
|
+ document.body.removeChild(link) // 下载完成移除元素
|
|
|
+ window.URL.revokeObjectURL(href) // 释放掉blob对象
|
|
|
})
|
|
|
})
|
|
|
.catch(() => {
|
|
@@ -673,6 +713,85 @@ const downloadTips = () => {
|
|
|
})
|
|
|
})
|
|
|
}
|
|
|
+
|
|
|
+// 单文件下载
|
|
|
+const oneDownload = async(val) => {
|
|
|
+ console.log(val)
|
|
|
+ await fileDownload(val).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ const link = document.createElement('a')
|
|
|
+ const href = window.URL.createObjectURL(res) // 创建下载的链接
|
|
|
+ link.href = href
|
|
|
+ link.download = val.name // 下载后文件名
|
|
|
+ document.body.appendChild(link)
|
|
|
+ link.click() // 点击下载
|
|
|
+ document.body.removeChild(link) // 下载完成移除元素
|
|
|
+ window.URL.revokeObjectURL(href) // 释放掉blob对象
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 单文件删除
|
|
|
+const projectDelete = async(val) => {
|
|
|
+ ElMessageBox.confirm(
|
|
|
+ '你确定进行删除操作吗?',
|
|
|
+ '删除',
|
|
|
+ {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .then(async() => {
|
|
|
+ await deleteProjectFile(val).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('删除成功')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ queryFile()
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ ElMessage({
|
|
|
+ type: 'info',
|
|
|
+ message: '取消删除',
|
|
|
+ })
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 多文件删除
|
|
|
+const projectDeletes = async() => {
|
|
|
+ ElMessageBox.confirm(
|
|
|
+ '你确定进行删除操作吗?',
|
|
|
+ '删除',
|
|
|
+ {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .then(async() => {
|
|
|
+ const type = fileType.value === '' ? 0 : fileType.value
|
|
|
+ const data = {
|
|
|
+ code: 'LCZM202407161229',
|
|
|
+ genre: type,
|
|
|
+ name: fileCondition.name
|
|
|
+ }
|
|
|
+ console.log(data)
|
|
|
+ await deleteProjectFiles(data).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success('删除成功')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ queryFile()
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ ElMessage({
|
|
|
+ type: 'info',
|
|
|
+ message: '取消删除',
|
|
|
+ })
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
// 日期格式化
|
|
|
const formatDate = (dateString, locale = 'en-US', timezone = 'Asia/Shanghai') => {
|
|
|
// 使用 Date 构造函数解析日期字符串
|