Aucune description

BInfoDialog03.vue 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <el-dialog title="采集盒信息" :visible.sync="dialogTableVisible" width="80%">
  3. <el-form class="form-main">
  4. <el-row :gutter="16">
  5. <el-col :xs="12" :sm="12" :lg="12" v-for="item in deviceShowList" :key="item.index">
  6. <div class="list-item">
  7. <el-row>
  8. <el-col :span="12">
  9. <el-form-item label="采集盒编号">{{item.code}}</el-form-item>
  10. </el-col>
  11. <el-col :span="12">
  12. <el-form-item label="采集盒信道数量">{{item.channels}}</el-form-item>
  13. </el-col>
  14. <el-col :span="24">
  15. <el-form-item label="采集盒所属服务器编号">{{item.serverCode}}</el-form-item>
  16. </el-col>
  17. <el-col :span="24">
  18. <el-form-item label="备注" class="el-to-block"><br />
  19. <div class="textarea-div">{{item.remark}}</div>
  20. </el-form-item>
  21. </el-col>
  22. </el-row>
  23. </div>
  24. </el-col>
  25. </el-row>
  26. <div class="pagination-container">
  27. <el-pagination
  28. background
  29. @current-change="handleCurrentChange"
  30. :current-page.sync="pageNo"
  31. :page-size="pageSize"
  32. layout="prev, pager, next, jumper"
  33. :total="deviceList.length">
  34. </el-pagination>
  35. </div>
  36. <el-row>
  37. <el-col :span="24" class="el-btn-col">
  38. <div class="el-btn-col-box">
  39. <el-button type="primary" @click="dialogTableVisible=false">关闭</el-button>
  40. </div>
  41. </el-col>
  42. </el-row>
  43. </el-form>
  44. </el-dialog>
  45. </template>
  46. <script>
  47. import './style.scss'
  48. export default {
  49. props: {
  50. deviceList: {
  51. type: Array
  52. }
  53. },
  54. data() {
  55. return {
  56. dialogTableVisible: false,
  57. pageSize: 4,
  58. pageNo: 1
  59. }
  60. },
  61. computed: {
  62. deviceShowList() {
  63. return this.deviceList.slice((this.pageNo - 1) * this.pageSize, this.pageNo * this.pageSize)
  64. }
  65. },
  66. methods: {
  67. handleCurrentChange(val) {
  68. this.pageNo = val
  69. }
  70. }
  71. }
  72. </script>