|
|
@ -59,9 +59,9 @@ function searchMatrixList(){ |
|
|
border |
|
|
border |
|
|
> |
|
|
> |
|
|
<el-descriptions-item label="可用矩阵" width="50%"> |
|
|
<el-descriptions-item label="可用矩阵" width="50%"> |
|
|
<el-row v-loading="loading"> |
|
|
<el-row v-loading="loading" :gutter="20"> |
|
|
<el-col v-for="item in matrixContList" :key="item.id" :span="24"> |
|
|
<el-col v-for="item in matrixContList" :key="item.id" :span="24" class="materBody"> |
|
|
{{item.name}} |
|
|
<el-text class="mx-1">{{item.name}}</el-text> <el-text class="mx-1">{{item.orgname}}</el-text> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="24"> |
|
|
<el-col :span="24"> |
|
|
<el-pagination v-model:total="total" v-model:current-page="searchArchiveQuery.page" small layout="prev, pager, next" :page-size="searchArchiveQuery.pagesize" :pager-count="5" /> |
|
|
<el-pagination v-model:total="total" v-model:current-page="searchArchiveQuery.page" small layout="prev, pager, next" :page-size="searchArchiveQuery.pagesize" :pager-count="5" /> |
|
|
@ -75,5 +75,10 @@ function searchMatrixList(){ |
|
|
</el-descriptions> |
|
|
</el-descriptions> |
|
|
</template> |
|
|
</template> |
|
|
<style lang='scss' scoped> |
|
|
<style lang='scss' scoped> |
|
|
|
|
|
.materBody{ |
|
|
|
|
|
padding:5px 0 5px 0; |
|
|
|
|
|
display: flex; |
|
|
|
|
|
justify-content: space-between; |
|
|
|
|
|
align-items: center; |
|
|
|
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
|