|
@@ -0,0 +1,247 @@
|
|
|
+<script setup>
|
|
|
+import { getAllProject, getProjectFile, getFileType, createProjectFile } from '@/api/project.js'
|
|
|
+import { Download, Upload } from '@element-plus/icons-vue'
|
|
|
+import { showNotify } from "vant";
|
|
|
+defineOptions({
|
|
|
+ name: 'Project',
|
|
|
+})
|
|
|
+onMounted(() => {
|
|
|
+ queryProjectList()
|
|
|
+ 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)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+// 项目文件
|
|
|
+const fileCondition = reactive({
|
|
|
+ code: "",
|
|
|
+ name: "",
|
|
|
+ genre: 0,
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 10
|
|
|
+ }
|
|
|
+ }
|
|
|
+)
|
|
|
+const fileList = reactive([])
|
|
|
+const queryProjectFile = (code) => {
|
|
|
+ fileCondition.code = code
|
|
|
+ getProjectFile(fileCondition).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ const list = res.data.list
|
|
|
+ fileList.length = 0
|
|
|
+ fileList.push(...list)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+const finished = ref(false)
|
|
|
+const refreshList = () => {}
|
|
|
+
|
|
|
+const selectAll = ref(false)
|
|
|
+
|
|
|
+//上传文件
|
|
|
+const uploadFileShow = ref(false)
|
|
|
+const fileTypeList = reactive([])
|
|
|
+const fileTypeText = ref('')
|
|
|
+const fileTypeValue = ref(0)
|
|
|
+const fileTypeShow = ref(false)
|
|
|
+const fileObjectList = ref([])
|
|
|
+const accept = ref('.doc,.docx,.pdf,.ppt,.pptx,.xlsx,.xls,image/*')
|
|
|
+const uploadFile = () => {
|
|
|
+ if (fileTypeText.value.length === 0) {
|
|
|
+ showNotify({ type: 'danger', message: '请选择文件类型' });
|
|
|
+ } else if (fileObjectList.value.length === 0) {
|
|
|
+ showNotify({ type: 'danger', message: '暂未选择文件' });
|
|
|
+ }
|
|
|
+ // 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 queryFileType = () => {
|
|
|
+ getFileType().then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ 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)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const confirmFileType = ({ selectedValues }) => {
|
|
|
+ fileTypeValue.value = selectedValues[0]
|
|
|
+ fileTypeList.forEach(item => {
|
|
|
+ if (item.ID === selectedValues[0]) {
|
|
|
+ fileTypeText.value = item.name
|
|
|
+ }
|
|
|
+ })
|
|
|
+ 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>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.design{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: end;
|
|
|
+}
|
|
|
+.typeLayout{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+
|
|
|
+.fileExhibition{
|
|
|
+ margin-top: 3vh;
|
|
|
+ height: 33vh;
|
|
|
+ border: 1px dotted #c8c9cc;
|
|
|
+ Overflow: auto;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 3vw;
|
|
|
+}
|
|
|
+</style>
|