|
@@ -27,7 +27,6 @@
|
|
|
:data="tableData"
|
|
|
tooltip-effect="dark"
|
|
|
stripe
|
|
|
- style="height: 550px;"
|
|
|
class="fontSize"
|
|
|
:header-cell-style="{ background: '#f2f2f2',color:'#000' }"
|
|
|
>
|
|
@@ -91,15 +90,15 @@
|
|
|
</el-dialog>
|
|
|
<!-- 展示文档结束 -->
|
|
|
<!-- 分页 -->
|
|
|
- <el-pagination
|
|
|
+ <!-- <el-pagination
|
|
|
@current-change="handleCurrentChange"
|
|
|
:current-page="table.currentPage"
|
|
|
:page-size="table.packageSize"
|
|
|
layout=" prev, pager, next"
|
|
|
background
|
|
|
- class="pagination"
|
|
|
+ class="paginations"
|
|
|
:total="table.total">
|
|
|
- </el-pagination>
|
|
|
+ </el-pagination> -->
|
|
|
<!-- 分页结束 -->
|
|
|
</div>
|
|
|
</template>
|
|
@@ -175,22 +174,18 @@
|
|
|
let param={
|
|
|
uid:this.$store.state.userInfo.userid,
|
|
|
pid:JSON.parse(localStorage.getItem('pid')),
|
|
|
- page:this.table.currentPage,
|
|
|
- lim:this.table.packageSize
|
|
|
+ // page:this.table.currentPage,
|
|
|
+ // lim:this.table.packageSize
|
|
|
}
|
|
|
// console.log(param);
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api+'/SelectProjectFile',param)
|
|
|
.then(res=>{
|
|
|
- // console.log(res.data);
|
|
|
let k=[]
|
|
|
res.data[0].forEach((e,i) => {
|
|
|
- // console.log(e);
|
|
|
let { projectFile: l } = e;
|
|
|
- // console.log(l);
|
|
|
k=JSON.parse(l)
|
|
|
});
|
|
|
- // console.log(k);
|
|
|
this.tableData=k
|
|
|
},err=>{
|
|
|
console.log(err);
|