|
@@ -90,7 +90,7 @@
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<!-- 展示文档结束 -->
|
|
<!-- 展示文档结束 -->
|
|
<!-- 分页 -->
|
|
<!-- 分页 -->
|
|
- <el-pagination
|
|
|
|
|
|
+ <!-- <el-pagination
|
|
@current-change="handleCurrentChange"
|
|
@current-change="handleCurrentChange"
|
|
:current-page="table.currentPage"
|
|
:current-page="table.currentPage"
|
|
:page-size="table.packageSize"
|
|
:page-size="table.packageSize"
|
|
@@ -98,7 +98,7 @@
|
|
background
|
|
background
|
|
class="paginations"
|
|
class="paginations"
|
|
:total="table.total">
|
|
:total="table.total">
|
|
- </el-pagination>
|
|
|
|
|
|
+ </el-pagination> -->
|
|
<!-- 分页结束 -->
|
|
<!-- 分页结束 -->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -174,22 +174,18 @@
|
|
let param={
|
|
let param={
|
|
uid:this.$store.state.userInfo.userid,
|
|
uid:this.$store.state.userInfo.userid,
|
|
pid:JSON.parse(localStorage.getItem('pid')),
|
|
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);
|
|
// console.log(param);
|
|
this.ajax
|
|
this.ajax
|
|
.get(this.$store.state.api+'/SelectProjectFile',param)
|
|
.get(this.$store.state.api+'/SelectProjectFile',param)
|
|
.then(res=>{
|
|
.then(res=>{
|
|
- // console.log(res.data);
|
|
|
|
let k=[]
|
|
let k=[]
|
|
res.data[0].forEach((e,i) => {
|
|
res.data[0].forEach((e,i) => {
|
|
- // console.log(e);
|
|
|
|
let { projectFile: l } = e;
|
|
let { projectFile: l } = e;
|
|
- // console.log(l);
|
|
|
|
k=JSON.parse(l)
|
|
k=JSON.parse(l)
|
|
});
|
|
});
|
|
- // console.log(k);
|
|
|
|
this.tableData=k
|
|
this.tableData=k
|
|
},err=>{
|
|
},err=>{
|
|
console.log(err);
|
|
console.log(err);
|