|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <van-row style="margin-top: 20px;height: 50px;">
|
|
|
+ <van-row class="fileSearchBox">
|
|
|
<van-col :span="18">
|
|
|
<van-search
|
|
|
v-model="fileName"
|
|
@@ -9,47 +9,46 @@
|
|
|
@search="fileSearch"
|
|
|
/>
|
|
|
</van-col>
|
|
|
- <van-col :span="6" class="design">
|
|
|
+ <van-col :span="5" class="design">
|
|
|
<van-button
|
|
|
icon="replay"
|
|
|
type="primary"
|
|
|
plain
|
|
|
@click="fileReset"
|
|
|
- style="border: 0;font-size: 18px">
|
|
|
+ style="border: 0;padding: 0;font-size: 0.45rem">
|
|
|
重置
|
|
|
</van-button>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
- <van-row style="margin-top: 20px;height: 50px">
|
|
|
+ <van-row class="fileOperation">
|
|
|
<van-col
|
|
|
:span="11"
|
|
|
:offset="1"
|
|
|
style="display: flex;
|
|
|
align-items: center">
|
|
|
- <van-icon
|
|
|
- name="arrow-down"
|
|
|
- color="#1989fa"
|
|
|
- size="18"
|
|
|
- />
|
|
|
- <van-text-ellipsis
|
|
|
- content="文件检索"
|
|
|
+ <van-button
|
|
|
+ icon="arrow-down"
|
|
|
+ plain
|
|
|
+ style="padding: 0;border: 0;font-size: 0.45rem"
|
|
|
+ type="primary"
|
|
|
@click="fileRetrievalShow = true"
|
|
|
- style="color:#1989fa;font-size: 18px"
|
|
|
- />
|
|
|
+ >
|
|
|
+ 文件检索
|
|
|
+ </van-button>
|
|
|
</van-col>
|
|
|
- <van-col :span="10" class="design">
|
|
|
- <van-icon
|
|
|
- name="plus"
|
|
|
- size="18"
|
|
|
- color="#1989fa" />
|
|
|
- <van-text-ellipsis
|
|
|
- content="添加"
|
|
|
+ <van-col :span="11" class="design">
|
|
|
+ <van-button
|
|
|
+ icon="plus"
|
|
|
+ plain
|
|
|
+ style="padding: 0;border: 0;font-size: 0.45rem"
|
|
|
+ type="primary"
|
|
|
@click="uploadFileShow = true"
|
|
|
- style="color:#1989fa;font-size: 18px"
|
|
|
- />
|
|
|
+ >
|
|
|
+ 添加
|
|
|
+ </van-button>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
- <van-row style="margin-top: 20px;height: 560px;">
|
|
|
+ <van-row class="fileListBox">
|
|
|
<van-col :span="24">
|
|
|
<van-list
|
|
|
finished-text="没有更多了"
|
|
@@ -57,16 +56,18 @@
|
|
|
:finished="finished"
|
|
|
>
|
|
|
<van-cell-group>
|
|
|
- <van-cell v-for="item in fileList" :key="item.ID" style="height: 70px">
|
|
|
+ <van-cell v-for="item in fileList" :key="item.ID" class="fileListCell">
|
|
|
<template #title>
|
|
|
- <el-text size="large" style="width: 45vw" :line-clamp="1">{{item.name}}</el-text>
|
|
|
+ <van-text-ellipsis
|
|
|
+ style="width: 50vw"
|
|
|
+ :content="item.name"/>
|
|
|
</template>
|
|
|
<template #value>
|
|
|
<van-button
|
|
|
icon="search"
|
|
|
type="primary"
|
|
|
plain
|
|
|
- style="border: 0;font-size: 18px"
|
|
|
+ style="border: 0;font-size: 0.45rem;padding: 0"
|
|
|
@click="filePreview(item.name, item.path)">
|
|
|
预览
|
|
|
</van-button>
|
|
@@ -76,24 +77,27 @@
|
|
|
</van-list>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
- <van-row style="margin-top: 30px">
|
|
|
+ <van-row class="filePageBox">
|
|
|
<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: 350px;height: 420px"
|
|
|
- round
|
|
|
- closeable
|
|
|
- close-icon-position="top-right"
|
|
|
+ position="bottom"
|
|
|
+ class="filePlusBox"
|
|
|
>
|
|
|
- <van-row style="margin-top: 10px">
|
|
|
- <van-col :span="16" :offset="1">
|
|
|
- <span style="font-size: 18px;">上传文件</span>
|
|
|
+ <van-row
|
|
|
+ justify="center"
|
|
|
+ class="filePlusTitle"
|
|
|
+ >
|
|
|
+ <van-col>
|
|
|
+ <span style="font-size: 0.45rem">
|
|
|
+ 上传文件
|
|
|
+ </span>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
- <van-row style="height: 46px;margin-top: 10px;">
|
|
|
+ <van-row class="filePlusType">
|
|
|
<van-col :span="8" :offset="1">
|
|
|
<van-button
|
|
|
type="primary"
|
|
@@ -108,7 +112,7 @@
|
|
|
v-model="fileTypeText"
|
|
|
disabled
|
|
|
placeholder="请选择文件类型"
|
|
|
- style="border: 1px solid #dadadd;border-radius: 5px"/>
|
|
|
+ style="border: 1px solid #dadadd;border-radius: 5px;"/>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
<van-row>
|
|
@@ -122,9 +126,14 @@
|
|
|
</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-row class="confirmBox">
|
|
|
+ <van-col :span="22" :offset="1">
|
|
|
+ <van-button
|
|
|
+ type="primary"
|
|
|
+ size="large"
|
|
|
+ @click="uploadFile">
|
|
|
+ 确认
|
|
|
+ </van-button>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
</van-popup>
|
|
@@ -165,6 +174,7 @@ import {
|
|
|
} from '@/api/project.js'
|
|
|
import { showNotify } from "vant";
|
|
|
import { showImagePreview } from 'vant';
|
|
|
+const route = useRoute()
|
|
|
defineOptions({
|
|
|
name: 'Project',
|
|
|
})
|
|
@@ -179,7 +189,13 @@ const queryProjectList = () => {
|
|
|
const list = res.data
|
|
|
projectList.length = 0
|
|
|
projectList.push(...list)
|
|
|
- fileCondition.code = list[0].code
|
|
|
+ // 获取路由code
|
|
|
+ const code = route.query.code
|
|
|
+ if (typeof code === 'undefined') {
|
|
|
+ fileCondition.code = list[0].code
|
|
|
+ } else {
|
|
|
+ fileCondition.code = code
|
|
|
+ }
|
|
|
queryProjectFile()
|
|
|
}
|
|
|
})
|
|
@@ -329,16 +345,54 @@ const fileSearch = () => {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style scoped>
|
|
|
-.design{
|
|
|
+<style scoped lang="less">
|
|
|
+.flex {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: end;
|
|
|
}
|
|
|
-.typeLayout{
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
+.fileSearchBox{
|
|
|
+ margin-top: 15px;
|
|
|
+ height: 50px;
|
|
|
+ .design{
|
|
|
+ .flex;
|
|
|
+ }
|
|
|
+}
|
|
|
+.fileOperation {
|
|
|
+ margin-top: 10px;
|
|
|
+ height: 50px;
|
|
|
+ .design{
|
|
|
+ .flex
|
|
|
+ }
|
|
|
+}
|
|
|
+.fileListBox{
|
|
|
+ margin-top: 10px;
|
|
|
+ height: 480px;
|
|
|
+ .fileListCell{
|
|
|
+ height: 60px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.filePageBox {
|
|
|
+ margin-top: 30px;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+.filePlusBox{
|
|
|
+ height: 470px;
|
|
|
+ .filePlusTitle{
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ .filePlusType{
|
|
|
+ height: 46px;
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ .typeLayout{
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ .confirmBox{
|
|
|
+ margin-top: 30px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.fileExhibition{
|