MrShi
4 天以前 05aec1e9986fbe3e907259bb1a1396f129bd0fa1
admin/src/components/business/OperaCasesListWindow.vue
@@ -110,7 +110,8 @@
        containDeleted: 1,
        name: '',
        importId: '',
        status: null
        status: null,
        memberId: null
      },
      memberList: []
    }
@@ -137,13 +138,17 @@
    },
    getTableHeight(){
      this.$nextTick(() => {
        this.tableHeight = window.innerHeight - 180- document.getElementById('curSearchForm').clientHeight
        this.tableHeight = window.innerHeight - 180;
        if(document.getElementById('curSearchForm')){
          this.tableHeight = this.tableHeight - document.getElementById('curSearchForm').clientHeight
        }
      })
    },
    open (title, memberId, importId) {
      this.title = title
      this.visible = true
      this.getTableHeight()
      this.searchForm.memberId = memberId
      this.tableData = {
        // 已选中的数据
        selectedRows: [],
@@ -174,9 +179,9 @@
</style>
<style  >
.success-row {
  background: #f0f9eb; /* 浅绿色背景 */
  background: #f0f9eb  !important; /* 浅绿色背景 */
}
.warning-row {
  background: rgba(161, 14, 14, 0.35); /* 浅红色背景 */
  background: rgba(161, 14, 14, 0.35)  !important; /* 浅红色背景 */
}
</style>