forked from drone/command-center-dashboard

张含笑
2025-04-15 dd6912b96f3738458b29c993de26e501edfc4778
src/views/SignMachineNest/MachineRight/MachineStatus/MachineTableDetails/DeviceJob/DeviceJob.vue
@@ -28,21 +28,20 @@
            <el-table-column label="操作" width="80">
               <template #default="scope">
                  <div class="ztzf-view" @click="viewJob(scope.row)">查看</div>
                  <!-- <el-button type="warning" link @click="viewJob(scope.row)">查看</el-button> -->
               </template>
            </el-table-column>
         </el-table>
      </div>
      <el-pagination
      <!-- <el-pagination
      class="ztzf-pagination"
         background
         :page-sizes="[10, 20, 30, 50]"
         v-model:current-page="sizeParams.current"
         v-model:page-size="sizeParams.size"
         layout=" prev, pager, next, jumper"
         layout=" prev, pager, next,sizes, jumper"
         :total="total"
         @change="pageChange"
      />
      /> -->
   </div>
   <DeviceJobDetails v-model:show="deviceJobDetailsShow" />
@@ -58,7 +57,7 @@
})
const sizeParams = ref({
   current: 1,
   size: 5,
   size: 99999,
})
const store = useStore()
const device_sn = computed(() => store.state.home.singleUavHome.device_sn)
@@ -96,12 +95,6 @@
   getList()
})
</script>
<style lang="scss">
.devicejob-container {
   // 表格
}
</style>
<style scoped lang="scss">
// 标题
.machineTableDetailsTitle {
@@ -127,8 +120,15 @@
// 表格
.devicelob-table {
   padding: 0 17px;
   height: 280px;
   overflow: hidden;
      overflow-y: scroll !important;
}
:deep(::-webkit-scrollbar ){
            width: 0;
            display: none;
            background: none !important;
         }
// 分页
:deep(.el-pagination) {