123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- <template>
- <!-- 项目管理 项目结题附件 -->
- <div class="ProjectManagement5">
- <div class="vfpHeader">
- <!-- 详情页 -->
- <div class="titleOne">项目管理</div>
- <div class="smallTitle" style="left: 100px;">项目进展详情</div>
- <el-button type="primary" @click="back">返回</el-button>
- </div>
- <hr>
- <!-- 跳转导航开始 -->
- <div class="AppBar">
- <div @click="content">项目基本内容</div>
- <div @click="remark">项目详情</div>
- <div @click="remark2">活动开展</div>
- <div @click="remark4">项目附件</div>
- <div @click="remark5" class="AppBarActive">项目结题附件</div>
- </div>
- <!-- 跳转导航结束 -->
- <div class="pmInp">
- <!-- <el-button type="primary" class="btn" @click="addFile" size="mini">上传文件</el-button> -->
- <beUpload @getFile="getFile" :navName="'上传文件'" :accept="accept" :progress="progress"></beUpload>
- </div>
- <el-progress v-show="progress.show" :percentage="progress.value" :format="ProgressFormat"></el-progress>
- <!-- 表格部分开始 -->
- <el-table
- :data="tableData"
- tooltip-effect="dark"
- stripe
- class="fontSize"
- :header-cell-style="{ background: '#f2f2f2',color:'#000' }"
- >
- <!-- <el-table-column
- prop="projectTitle"
- label="项目名称"
- align="center"
- >
- <template>
- <span>{{ title }}</span>
- </template>
- </el-table-column> -->
- <el-table-column
- prop="fileName"
- label="项目中期报告"
- align="center"
- >
- </el-table-column>
-
- <el-table-column
- prop="size"
- label="大小"
- align="center"
- >
- </el-table-column>
-
- <el-table-column
- prop="uploadTime"
- label="时间"
- align="center"
- >
- </el-table-column>
- <el-table-column
- prop="operation"
- align="center"
- label="操作"
- >
- <template #default="scope">
- <div class="operations">
- <el-button type="primary" size="mini" @click="checkFile(scope.row.url)" style="background: #477edd">明细查看</el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <!-- 展示文档开始 -->
- <el-dialog
- title="展示文件"
- :visible.sync="showFile"
- width="80vw"
- class="addDialog showDialog"
- >
- <div class="addDialogLogo">LOGO</div>
- <div class="showFileArea">
- <!-- <vpdf v-if="/^\s*$/g.test(showFileUrl)&&showFileUrl.split('.')[showFileUrl.split('.').length-1]=='pdf'" :pdfUrl="showFileUrl"></vpdf> -->
- <vword v-if="showFileType == 0" :pdfUrl="showFileUrl"></vword>
- <vpdf v-else :pdfUrl="showFileUrl"></vpdf>
- </div>
- </el-dialog>
- <!-- 分页 -->
- <!-- <el-pagination
- @current-change="handleCurrentChange"
- :current-page="table.currentPage"
- :page-size="table.packageSize"
- layout=" prev, pager, next"
- background
- class="paginations"
- :total="table.total">
- </el-pagination> -->
- <!-- 分页结束 -->
-
- </div>
- </template>
-
- <script>
- import beUpload from '../../components/tool/beUpload'
- import vpdf from "@/components/vpdf.vue";
- import vword from "@/components/vword.vue";
- export default {
- components: { beUpload, vpdf, vword },
- data() {
- return {
- accept:"*",
- // table:{ // 分页数据
- // total:0,
- // packageSize:8,
- // currentPage:1
- // },
- showFile:false,
- showFileType: 0,
- showFileUrl: "",
- title:"",
- tableData:[], //附件列表
- file:'',
- progress:{
- value:0,
- show:false
- },
- }
- },
- methods:{
- ProgressFormat(value){ //进度条
- return value ==100?'100%':`${value}%`
- },
- //展示文件
- checkFile(url) {
- console.log(url);
- if (
- url.split(".")[url.split(".").length - 1].toLocaleUpperCase() == "PDF"
- ) {
- this.showFileUrl = url;
- this.showFileType = 1;
- } else {
- this.showFileUrl =
- "https://view.officeapps.live.com/op/view.aspx?src=" + url;
- this.showFileType = 0;
- }
- this.showFile = true;
- },
- getFile(val) { //上传文件
- this.file = val;
- let oldData = [];
- if (this.tableData!=null) {
- this.tableData.forEach(item=>oldData.push(item))
- oldData.push(val)
- }else{
- oldData.push(val)
- }
- let param={
- uid:this.$store.state.userInfo.userid,
- cid:JSON.parse(localStorage.getItem('pid')),
- projectFile:JSON.stringify(oldData)
- }
- this.ajax
- .post(this.$store.state.api+'/AddProjectManageFile',param)
- .then(res=>{
- console.log(res);
- if (res.data==1) {
- this.getData()
- this.$message.success('上传成功')
- this.progress.show = false;
- }else{
- this.$message.error('上传失败')
- }
-
- },err=>{
- console.log(err);
- })
- },
- // handleCurrentChange(val) { //当页数发生改变的时候调用获取列表数据请求
- // // console.log(`当前页: ${val}`);
- // this.table.currentPage=val
- // this.getData()
- // },
- getData(){ //获取基础信息
- let param={
- uid:this.$store.state.userInfo.userid,
- pid:JSON.parse(localStorage.getItem('pid')),
- }
- // console.log(param);
- this.ajax
- .get(this.$store.state.api+'/SelectProjectManageFile',param)
- .then(res=>{
- console.log(res.data);
- let file = JSON.parse(res.data[0][0]['endFile']);
- this.tableData=file
- },err=>{
- console.log(err);
- })
- },
- content(){
- this.$router.push('/ProjectManagement1')
- },
- remark(){
- this.$router.push('/ProjectManagement2')
- },
- remark2(){
- this.$router.push('/ProjectManagement3')
- },
- remark4(){
- this.$router.push('/ProjectManagement4')
- },
- remark5(){
- this.$router.push('/ProjectManagement5')
- },
-
- // backBtn2(){
- // this.$router.push('/ProjectManagement1')
- // },
- // detail(){
- // },
- back(){
- this.$router.push('/ProjectManagement')
- },
- },
- mounted(){
- this.getData()
- }
- }
- </script>
-
- <style lang="less">
- .ProjectManagement5{
- .pagination{
- float: right;
- margin: 20px 55px 10px;
- }
- .addDialog {
- font-size: 18px;
- .el-dialog {
- border-radius: 5px;
- overflow: hidden;
- }
- .deleteContent {
- width: 100%;
- margin: 30px 0;
- font-size: 22px;
- color: #000;
- }
- .addDialogLogo {
- width: 60px;
- height: 30px;
- display: flex;
- justify-content: center;
- line-height: 30px;
- border-radius: 5px;
- background: #f2f2f2;
- position: absolute;
- left: 20px; top: 15px;
- }
- .el-dialog__header {
- display: flex;
- justify-content: center;
- background: #32455b;
- }
- .el-dialog__title {
- color:#fff;
- display: flex;
- justify-content: center;
- font-size: 18px;
- position: relative;
- top: -2px;
- }
- .addDialogMid {
- box-sizing: border-box;
- padding: 0 60px 0 10px;
- .addDialogTit {
- display: flex;
- span {
- width: 80px;
- font-size: 16px;
- line-height: 40px;
- text-align: left;
- }
- }
- .addDialogTit1 {
- display: flex;
- justify-content: space-between;
- margin-bottom: 15px;
- }
- .addDialogTit2 {
- margin-top: 10px;
- font-size: 16px;
- color: #000;
- text-indent: 2em;
- }
- .addDialogCon {
- margin-top: 20px;
- }
- }
- .dialog-footer {
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- // .btn5 {
- // font-size: 16px;
- // }
- }
- }
- .pm5footer{
- float: right;
- margin-top: 30px;
-
- .backBtn{
- background: #169bd5;
- float: right;
- width: 100px;
- }
- }
-
- .pm1Tit{
- display: flex;
- margin-left: 20px;
- div{
- width: 130px;
- cursor: pointer;
- font-weight: 550;
- }
- .pr1TitBass{
- height: 2px;
- width: 100%;
- background: #3D67BC;
- }
- }
- .pmInp{
- width: 100%;
- margin: 10px 0 10px 0;
- display: flex;
- justify-content: flex-end;
- .btn{
- height: 30px;
- width: 100px;
- font-size: 16px;
- background: #477edd;
- // margin-left: 10px;
- }
- }
- }
-
-
- </style>
|