|
@@ -1,7 +1,163 @@
|
|
|
+<template>
|
|
|
+ <van-row style="margin-top: 1rem;height: 3.2rem;">
|
|
|
+ <van-col :span="18">
|
|
|
+ <van-search
|
|
|
+ v-model="fileName"
|
|
|
+ placeholder="请输入文件名称"
|
|
|
+ shape="round"
|
|
|
+ style="height: 3.2rem"
|
|
|
+ @search="fileSearch"
|
|
|
+ />
|
|
|
+ </van-col>
|
|
|
+ <van-col :span="6" class="design">
|
|
|
+ <van-button
|
|
|
+ icon="replay"
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ @click="fileReset"
|
|
|
+ style="border: 0;font-size: 1.2rem">
|
|
|
+ 重置
|
|
|
+ </van-button>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row style="margin-top: 1rem;height: 3rem">
|
|
|
+ <van-col :span="11" :offset="1" style="display: flex;align-items: center">
|
|
|
+ <van-icon
|
|
|
+ name="arrow-down"
|
|
|
+ color="#1989fa" />
|
|
|
+ <van-text-ellipsis
|
|
|
+ content="文件检索"
|
|
|
+ @click="fileRetrievalShow = true"
|
|
|
+ style="color:#1989fa"
|
|
|
+ />
|
|
|
+ </van-col>
|
|
|
+ <van-col :span="10" class="design">
|
|
|
+ <van-icon
|
|
|
+ name="plus"
|
|
|
+ color="#1989fa" />
|
|
|
+ <van-text-ellipsis
|
|
|
+ content="添加"
|
|
|
+ @click="uploadFileShow = true"
|
|
|
+ style="color:#1989fa"
|
|
|
+ />
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row style="margin-top: 1rem;height: 30rem;">
|
|
|
+ <van-col :span="24">
|
|
|
+ <van-list
|
|
|
+ finished-text="没有更多了"
|
|
|
+ @load="refreshList"
|
|
|
+ :finished="finished"
|
|
|
+ >
|
|
|
+ <van-cell-group>
|
|
|
+ <van-cell v-for="item in fileList" :key="item.ID" style="height: 3.7rem">
|
|
|
+ <template #title>
|
|
|
+ <el-text size="large" style="width: 45vw" :line-clamp="1">{{item.name}}</el-text>
|
|
|
+ </template>
|
|
|
+ <template #value>
|
|
|
+ <van-button
|
|
|
+ icon="search"
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ style="border: 0;font-size: 1rem"
|
|
|
+ @click="filePreview(item.name, item.path)">
|
|
|
+ 预览
|
|
|
+ </van-button>
|
|
|
+ </template>
|
|
|
+ </van-cell>
|
|
|
+ </van-cell-group>
|
|
|
+ </van-list>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row style="margin-top: 2rem">
|
|
|
+ <el-col :span="22" :offset="1">
|
|
|
+ <van-pagination v-model="currentPage" :total-items="pageTotal" :items-per-page="8" @change="pageChange"/>
|
|
|
+ </el-col>
|
|
|
+ </van-row>
|
|
|
+ <van-popup
|
|
|
+ v-model:show="uploadFileShow"
|
|
|
+ style="width: 87vw;height: 58vh"
|
|
|
+ round
|
|
|
+ closeable
|
|
|
+ close-icon-position="top-right"
|
|
|
+ >
|
|
|
+ <van-row style="margin-top: 2vh">
|
|
|
+ <van-col :span="16" :offset="1">
|
|
|
+ <span style="font-size: 1.1rem;">上传文件</span>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row style="margin-top: 3vh">
|
|
|
+ <van-col :span="8" :offset="1">
|
|
|
+ <van-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ icon="arrow-down"
|
|
|
+ @click="fileTypeShow = true">
|
|
|
+ 文件类型
|
|
|
+ </van-button>
|
|
|
+ </van-col>
|
|
|
+ <van-col :span="13" :offset="1" class="typeLayout">
|
|
|
+ <van-field
|
|
|
+ v-model="fileTypeText"
|
|
|
+ disabled
|
|
|
+ placeholder="请选择文件类型"
|
|
|
+ style="border: 1px solid #dadadd;border-radius: 5px"/>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row>
|
|
|
+ <van-col :span="22" :offset="1">
|
|
|
+ <div class="fileExhibition">
|
|
|
+ <van-uploader
|
|
|
+ v-model="fileObjectList"
|
|
|
+ multiple
|
|
|
+ :accept="accept"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row style="margin-top: 2vh">
|
|
|
+ <van-col :span="22" :offset="1" class="design">
|
|
|
+ <van-button type="primary" @click="uploadFile">确认</van-button>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ </van-popup>
|
|
|
+ <van-popup position="bottom" v-model:show="fileTypeShow" round>
|
|
|
+ <van-picker
|
|
|
+ :columns="fileTypeList"
|
|
|
+ :columns-field-names="customFieldName"
|
|
|
+ @cancel="fileTypeShow = false"
|
|
|
+ @confirm="confirmFileType"
|
|
|
+ />
|
|
|
+ </van-popup>
|
|
|
+ <van-popup v-model:show="fileRetrievalShow" round position="bottom">
|
|
|
+ <van-picker-group
|
|
|
+ title="文件搜索"
|
|
|
+ :tabs="['项目列表', '文件类型']"
|
|
|
+ @cancel="fileRetrievalShow = false"
|
|
|
+ @confirm="fileRetrieval"
|
|
|
+ >
|
|
|
+ <van-picker
|
|
|
+ :columns="projectList"
|
|
|
+ :columns-field-names="customProjectName"
|
|
|
+ />
|
|
|
+ <van-picker
|
|
|
+ :columns="fileTypeList"
|
|
|
+ :columns-field-names="customFieldName"
|
|
|
+ />
|
|
|
+ </van-picker-group>
|
|
|
+ </van-popup>
|
|
|
+</template>
|
|
|
+
|
|
|
<script setup>
|
|
|
-import { getAllProject, getProjectFile, getFileType, createProjectFile } from '@/api/project.js'
|
|
|
-import { Download, Upload } from '@element-plus/icons-vue'
|
|
|
+import {
|
|
|
+ getAllProject,
|
|
|
+ getProjectFile,
|
|
|
+ getFileType,
|
|
|
+ createProjectFile,
|
|
|
+ previewProjectFile
|
|
|
+} from '@/api/project.js'
|
|
|
import { showNotify } from "vant";
|
|
|
+import { showImagePreview } from 'vant';
|
|
|
defineOptions({
|
|
|
name: 'Project',
|
|
|
})
|
|
@@ -10,14 +166,14 @@ onMounted(() => {
|
|
|
queryFileType()
|
|
|
})
|
|
|
const projectList = reactive([])
|
|
|
-const projectValue = ref(0)
|
|
|
const queryProjectList = () => {
|
|
|
getAllProject().then(res => {
|
|
|
if (res.code === 0) {
|
|
|
const list = res.data
|
|
|
projectList.length = 0
|
|
|
projectList.push(...list)
|
|
|
- queryProjectFile(list[0].code)
|
|
|
+ fileCondition.code = list[0].code
|
|
|
+ queryProjectFile()
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -28,26 +184,26 @@ const fileCondition = reactive({
|
|
|
genre: 0,
|
|
|
pageInfo: {
|
|
|
page: 1,
|
|
|
- pageSize: 10
|
|
|
+ pageSize: 8
|
|
|
}
|
|
|
}
|
|
|
)
|
|
|
const fileList = reactive([])
|
|
|
-const queryProjectFile = (code) => {
|
|
|
- fileCondition.code = code
|
|
|
+const queryProjectFile = () => {
|
|
|
getProjectFile(fileCondition).then(res => {
|
|
|
if (res.code === 0) {
|
|
|
const list = res.data.list
|
|
|
+ console.log(res.data)
|
|
|
+ pageTotal.value = res.data.total
|
|
|
fileList.length = 0
|
|
|
fileList.push(...list)
|
|
|
+ fileRetrievalShow.value = false
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
const finished = ref(false)
|
|
|
const refreshList = () => {}
|
|
|
|
|
|
-const selectAll = ref(false)
|
|
|
-
|
|
|
//上传文件
|
|
|
const uploadFileShow = ref(false)
|
|
|
const fileTypeList = reactive([])
|
|
@@ -61,23 +217,31 @@ const uploadFile = () => {
|
|
|
showNotify({ type: 'danger', message: '请选择文件类型' });
|
|
|
} else if (fileObjectList.value.length === 0) {
|
|
|
showNotify({ type: 'danger', message: '暂未选择文件' });
|
|
|
+ } else {
|
|
|
+ const formData = new FormData()
|
|
|
+ fileObjectList.value.forEach(item => {
|
|
|
+ formData.append('file', item.file)
|
|
|
+ })
|
|
|
+ formData.append('genre', fileTypeValue.value)
|
|
|
+ formData.append('code', fileCondition.code)
|
|
|
+ createProjectFile(formData).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ showNotify({ type: 'success', message: '上传成功' })
|
|
|
+ queryProjectFile()
|
|
|
+ uploadFileShow.value = false
|
|
|
+ fileObjectList.value = []
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
- // const formData = new FormData()
|
|
|
- // fileObjectList.value.forEach(item => {
|
|
|
- // formData.append('file', item)
|
|
|
- // })
|
|
|
- // formData.append('genre', fileTypeValue.value)
|
|
|
- // formData.append('code', fileCondition.code)
|
|
|
- // createProjectFile(formData).then(res => {
|
|
|
- // if (res.code === 0) {
|
|
|
- // console.log(res.data)
|
|
|
- // }
|
|
|
- // })
|
|
|
}
|
|
|
const customFieldName = {
|
|
|
text: 'name',
|
|
|
value: 'ID',
|
|
|
}
|
|
|
+const customProjectName = {
|
|
|
+ text: 'name',
|
|
|
+ value: 'ID'
|
|
|
+}
|
|
|
// 获取文件类型
|
|
|
const queryFileType = () => {
|
|
|
getFileType().then(res => {
|
|
@@ -85,13 +249,6 @@ const queryFileType = () => {
|
|
|
const list = res.data
|
|
|
fileTypeList.length = 0
|
|
|
fileTypeList.push(...list)
|
|
|
- // let option = { text: '', value: '' }
|
|
|
- // list.forEach(item => {
|
|
|
- // option.text = item.name
|
|
|
- // option.value = item.ID
|
|
|
- // fileTypeList.push(option)
|
|
|
- // })
|
|
|
- // console.log('数据', fileTypeList)
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -105,126 +262,67 @@ const confirmFileType = ({ selectedValues }) => {
|
|
|
})
|
|
|
fileTypeShow.value = false
|
|
|
}
|
|
|
-</script>
|
|
|
|
|
|
-<template>
|
|
|
- <van-row style="margin-top: 2vh">
|
|
|
- <van-col :span="14" :offset="1">
|
|
|
- <el-select placeholder="请选择项目" size="large">
|
|
|
- <el-option
|
|
|
- v-for="item in projectList"
|
|
|
- :key="item.code"
|
|
|
- :label="item.name"
|
|
|
- :value="item.code"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </van-col>
|
|
|
- <van-col :span="7" :offset="1">
|
|
|
- <el-dropdown split-button type="primary" size="large">
|
|
|
- 操作
|
|
|
- <template #dropdown>
|
|
|
- <el-dropdown-menu>
|
|
|
- <el-dropdown-item>
|
|
|
- <el-button type="primary" :icon="Upload" @click="uploadFileShow = true">上传</el-button>
|
|
|
- </el-dropdown-item>
|
|
|
- <el-dropdown-item>
|
|
|
- <el-button type="primary" :icon="Download">下载</el-button>
|
|
|
- </el-dropdown-item>
|
|
|
- </el-dropdown-menu>
|
|
|
- </template>
|
|
|
- </el-dropdown>
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- <van-row style="margin-top: 3vh">
|
|
|
- <van-col :span="11" :offset="1">
|
|
|
- <van-button icon="filter-o" size="small">文件筛选</van-button>
|
|
|
- </van-col>
|
|
|
- <van-col :span="11" class="design">
|
|
|
- <van-checkbox v-model="selectAll" shape="square" label-position="left">全选</van-checkbox>
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- <van-row style="margin-top: 2vh">
|
|
|
- <van-col :span="24">
|
|
|
- <van-list
|
|
|
- finished-text="没有更多了"
|
|
|
- @load="refreshList"
|
|
|
- :finished="finished"
|
|
|
- >
|
|
|
- <van-cell-group>
|
|
|
- <van-cell v-for="item in fileList" :key="item.ID" size="large">
|
|
|
- <template #title>
|
|
|
- <el-text size="large">{{item.name}}</el-text>
|
|
|
- </template>
|
|
|
- <template #value>
|
|
|
- <van-checkbox shape="square" style="margin-left: 41vw"></van-checkbox>
|
|
|
- </template>
|
|
|
- </van-cell>
|
|
|
- </van-cell-group>
|
|
|
- </van-list>
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- <van-popup
|
|
|
- v-model:show="uploadFileShow"
|
|
|
- style="width: 87vw;height: 58vh"
|
|
|
- round
|
|
|
- closeable
|
|
|
- close-icon-position="top-right"
|
|
|
- >
|
|
|
- <van-row style="margin-top: 2vh">
|
|
|
- <van-col :span="16" :offset="1">
|
|
|
- <span style="font-size: 1.1rem;">上传文件</span>
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- <van-row style="margin-top: 3vh">
|
|
|
- <van-col :span="8" :offset="1">
|
|
|
- <van-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="arrow-down"
|
|
|
- @click="fileTypeShow = true">
|
|
|
- 文件类型
|
|
|
- </van-button>
|
|
|
- </van-col>
|
|
|
- <van-col :span="13" :offset="1" class="typeLayout">
|
|
|
- <van-field
|
|
|
- v-model="fileTypeText"
|
|
|
- disabled
|
|
|
- placeholder="请选择文件类型"
|
|
|
- style="border: 1px solid #dadadd;border-radius: 5px"/>
|
|
|
-<!-- <el-text :line-clamp="1" style="font-size: 1rem">-->
|
|
|
-<!-- {{fileTypeText}}-->
|
|
|
-<!-- </el-text>-->
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- <van-row>
|
|
|
- <van-col :span="22" :offset="1">
|
|
|
- <div class="fileExhibition">
|
|
|
- <van-uploader
|
|
|
- v-model="fileObjectList"
|
|
|
- multiple
|
|
|
- :accept="accept"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- <van-row style="margin-top: 2vh">
|
|
|
- <van-col :span="22" :offset="1" class="design">
|
|
|
- <van-button type="primary" @click="uploadFile">确认</van-button>
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- </van-popup>
|
|
|
- <van-popup position="bottom" v-model:show="fileTypeShow" round>
|
|
|
- <van-picker
|
|
|
- :columns="fileTypeList"
|
|
|
- :columns-field-names="customFieldName"
|
|
|
- @cancel="fileTypeShow = false"
|
|
|
- @confirm="confirmFileType"
|
|
|
- />
|
|
|
- </van-popup>
|
|
|
-</template>
|
|
|
+const fileRetrievalShow = ref(false)
|
|
|
+
|
|
|
+const fileName = ref('')
|
|
|
+
|
|
|
+// 文件预览
|
|
|
+const filePreview = (name, path) => {
|
|
|
+ // const suffix = name.substring(name.lastIndexOf(".")+1);
|
|
|
+ const info = {
|
|
|
+ name: name,
|
|
|
+ path: path
|
|
|
+ }
|
|
|
+ previewProjectFile(info).then(res =>{
|
|
|
+ showImagePreview([window.URL.createObjectURL(res)]);
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 文件检索
|
|
|
+const fileRetrieval = (val) => {
|
|
|
+ fileCondition.genre = val[1].selectedOptions[0].ID
|
|
|
+ fileCondition.code = val[0].selectedOptions[0].code
|
|
|
+ queryProjectFile()
|
|
|
+}
|
|
|
+
|
|
|
+// 重置文件检索
|
|
|
+const fileReset = () => {
|
|
|
+ const condition = {
|
|
|
+ code: projectList[0].code,
|
|
|
+ name: "",
|
|
|
+ genre: 0,
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 8
|
|
|
+ }
|
|
|
+ }
|
|
|
+ getProjectFile(condition).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ const list = res.data.list
|
|
|
+ fileList.length = 0
|
|
|
+ fileList.push(...list)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 文件分页
|
|
|
+const currentPage = ref(1)
|
|
|
+const pageTotal = ref(0)
|
|
|
+// 改变页面
|
|
|
+const pageChange = (val) => {
|
|
|
+ console.log(val)
|
|
|
+ fileCondition.pageInfo.page = val
|
|
|
+ queryProjectFile()
|
|
|
+}
|
|
|
+
|
|
|
+const fileSearch = () => {
|
|
|
+ fileCondition.name = fileName
|
|
|
+ queryProjectFile()
|
|
|
+}
|
|
|
+</script>
|
|
|
|
|
|
-<style scoped lang="scss">
|
|
|
+<style scoped>
|
|
|
.design{
|
|
|
display: flex;
|
|
|
align-items: center;
|