|
|
@@ -679,6 +679,16 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="Remark" label="描述" show-overflow-tooltip></el-table-column>
|
|
|
</el-table>
|
|
|
+ <el-pagination small
|
|
|
+ @size-change="handleProjectSizeChange2"
|
|
|
+ @current-change="handleProjectCurrentChange2"
|
|
|
+ :current-page="currentPageProject2"
|
|
|
+ :page-sizes="[10, 20, 30]"
|
|
|
+ :page-size="sizeProject2"
|
|
|
+ layout="total, sizes, prev, pager, next,jumper"
|
|
|
+ :total="currentItemCountProject2"
|
|
|
+ style="margin: 5px;">
|
|
|
+ </el-pagination>
|
|
|
</el-card>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="服务类" v-if="accessedType.includes('03')">
|
|
|
@@ -785,6 +795,16 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="Remark" label="描述" show-overflow-tooltip></el-table-column>
|
|
|
</el-table>
|
|
|
+ <el-pagination small
|
|
|
+ @size-change="handleProjectSizeChange3"
|
|
|
+ @current-change="handleProjectCurrentChange3"
|
|
|
+ :current-page="currentPageProject3"
|
|
|
+ :page-sizes="[10, 20, 30]"
|
|
|
+ :page-size="sizeProject3"
|
|
|
+ layout="total, sizes, prev, pager, next,jumper"
|
|
|
+ :total="currentItemCountProject3"
|
|
|
+ style="margin: 5px;">
|
|
|
+ </el-pagination>
|
|
|
</el-card>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
@@ -1122,9 +1142,15 @@
|
|
|
Grade: '',
|
|
|
size: 10,
|
|
|
sizeProject: 10,
|
|
|
+ sizeProject2: 10,
|
|
|
+ sizeProject3: 10,
|
|
|
currentItemCount: 0,
|
|
|
currentPageProject: 1,
|
|
|
+ currentPageProject2: 1,
|
|
|
+ currentPageProject3: 1,
|
|
|
currentItemCountProject: 0,
|
|
|
+ currentItemCountProject2: 0,
|
|
|
+ currentItemCountProject3: 0,
|
|
|
UnitOrg: '',
|
|
|
ComAuditdialogShow: false,
|
|
|
chooseAuditorVisibleFen: false,
|
|
|
@@ -1765,10 +1791,28 @@
|
|
|
this.currentPageProject = 1
|
|
|
this.getsubfile1()
|
|
|
},
|
|
|
+ handleProjectSizeChange2 (value) {
|
|
|
+ this.sizeProject2 = value
|
|
|
+ this.currentPageProject2 = 1
|
|
|
+ this.getsubfile2()
|
|
|
+ },
|
|
|
+ handleProjectSizeChange3 (value) {
|
|
|
+ this.sizeProject3 = value
|
|
|
+ this.currentPageProject3 = 1
|
|
|
+ this.getsubfile3()
|
|
|
+ },
|
|
|
handleProjectCurrentChange (value) {
|
|
|
this.currentPageProject = value
|
|
|
this.getsubfile1()
|
|
|
},
|
|
|
+ handleProjectCurrentChange2 (value) {
|
|
|
+ this.currentPageProject2 = value
|
|
|
+ this.getsubfile2()
|
|
|
+ },
|
|
|
+ handleProjectCurrentChange3 (value) {
|
|
|
+ this.currentPageProject3 = value
|
|
|
+ this.getsubfile3()
|
|
|
+ },
|
|
|
initDatas () {
|
|
|
this.getMainInfo()
|
|
|
let params = {
|
|
|
@@ -1881,15 +1925,15 @@
|
|
|
SupplierId: this.supplierId,
|
|
|
SupplierTypeCode: '02',
|
|
|
MInfoId: this.MInfoId,
|
|
|
- _currentPage: 1,
|
|
|
- _size: 1000
|
|
|
+ _currentPage: this.currentPageProject2,
|
|
|
+ _size: this.sizeProject2
|
|
|
}
|
|
|
_this.$axios.get('qualchange/filelist', {
|
|
|
params
|
|
|
})
|
|
|
.then(res => {
|
|
|
_this.subfileList2 = res.data.items
|
|
|
- _this.currentItemCount = res.data.currentItemCount
|
|
|
+ _this.currentItemCountProject2 = res.data.currentItemCount
|
|
|
for (let idx in _this.subfileList2) {
|
|
|
_this.subfileList2[idx].FileUrlList = _this.subfileList2[idx].FileUrl.split('$')
|
|
|
}
|
|
|
@@ -1925,15 +1969,15 @@
|
|
|
SupplierId: this.supplierId,
|
|
|
SupplierTypeCode: '03',
|
|
|
MInfoId: this.MInfoId,
|
|
|
- _currentPage: 1,
|
|
|
- _size: 1000
|
|
|
+ _currentPage: this.currentPageProject3,
|
|
|
+ _size: this.sizeProject3
|
|
|
}
|
|
|
_this.$axios.get('qualchange/filelist', {
|
|
|
params
|
|
|
})
|
|
|
.then(res => {
|
|
|
_this.subfileList3 = res.data.items
|
|
|
- _this.currentItemCount = res.data.currentItemCount
|
|
|
+ _this.currentItemCountProject3 = res.data.currentItemCount
|
|
|
for (let idx in _this.subfileList3) {
|
|
|
_this.subfileList3[idx].FileUrlList = _this.subfileList3[idx].FileUrl.split('$')
|
|
|
}
|