田源
2023-10-24 c8005d3f303be7241f5acdc10ad679e1bf8cd602
Source/UBCS-WEB/src/views/docking/info.vue
@@ -93,6 +93,7 @@
      option: {
        height: "auto",
        calcHeight: 20,
        columnBtn:false,
        tip: false,
        headerAlign: "center",
        border: true,
@@ -109,7 +110,6 @@
        addBtn: false,
        editBtn: false,
        delBtn: false,
        columnBtn: false,
        column: [ {
          label: '是否启用',
          prop: 'usedFlag',
@@ -402,7 +402,7 @@
    onLoad(page, params = {}) {
      this.loading = true;
      getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
        console.log(res)
        // console.log(res)
        const data = res.data.data;
        this.page.total = data.total;
        this.data = data.records;
@@ -501,8 +501,24 @@
}
</script>
<style lang="scss">
<style lang="scss" scoped>
.applyRangeTable > .el-card:nth-of-type(2) > .el-card__body > .avue-crud__menu {
  display: none !important;
}
// 滚动条样式修改
// 滚动条的宽度
/deep/ .el-table__body-wrapper::-webkit-scrollbar {
  height: 15px; // 纵向滚动条 必写
  background: white;
  border: white;
  width: 10px;
}
// 滚动条的滑块
/deep/ .el-table__body-wrapper::-webkit-scrollbar-thumb {
  background-color: #ececec;
  border-radius: 20px;
  border: #ececec;
}
</style>