123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793 |
- <template>
- <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="newQueryTable">
- <template v-if="istableChild">
- <el-table ref="table" v-el-table-infinite-scroll="load" :data="dealedTableData" :summary-method="getSummaries" :span-method="tableSpanMethod" :show-summary="showSummary" :header-cell-class-name="headerCellClass" :row-class-name="rowClass" :cell-class-name="cellClass" height="100%" class="table infinite-list" stripe border @cell-click="cellClick">
- <el-table-column v-for="col in tableColsCopy" :key="col.columnName" :prop="col.columnName" :label="col.groupName" align="center">
- <el-table-column v-for="childCol in col.children" :key="childCol.columnName" :width="childCol.nameLength ? Number(childCol.nameLength) : ''" :prop="childCol.columnName" :label="childCol.columnLabel" :formatter="formatter">
- <template #header>
- <el-tooltip :content="childCol.columnDescribe || childCol.columnLabel" placement="top">
- <TableHeaderCell :label="childCol.columnLabel" :filter-options="tableDataFilters[childCol.columnName]" :filter-values.sync="filterValues[childCol.columnName]" :sortable="childCol.needSort" :sort-rule.sync="tableDataSortRules[childCol.columnName]" />
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table-column>
- </el-table>
- </template>
- <template v-else>
- <el-table ref="table" v-el-table-infinite-scroll="load" :data="dealedTableData" :summary-method="getSummaries" :span-method="tableSpanMethod" :show-summary="showSummary" :header-cell-class-name="headerCellClass" :row-class-name="rowClass" :cell-class-name="cellClass" height="100%" class="table infinite-list" border stripe @cell-click="cellClick">
- <el-table-column v-for="(item, index) in tableColsCopy" :key="index" :width="item.nameLength ? Number(item.nameLength) : ''" :prop="item.columnName" :label="item.columnLabel" :show-overflow-tooltip="showOverflowTooltip" :formatter="formatter">
- <template #header>
- <el-tooltip :content="item.columnDescribe || item.columnLabel" placement="top">
- <TableHeaderCell :label="item.columnLabel" :filter-options="tableDataFilters[item.columnName]" :filter-values.sync="filterValues[item.columnName]" :sortable="item.needSort" :sort-rule.sync="tableDataSortRules[item.columnName]" />
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table>
- </template>
- <template v-if="istableDown">
- <div :style="downStyle" class="down-btns">
- <img class="btn-square btn-shadow" src="@/assets/baggage/ic_export.png" title="下载" @click="exportHandler" />
- </div>
- </template>
- <template v-if="istableCol">
- <div :style="btnStyle" class="btns">
- <img class="btn-square btn-shadow" src="@/assets/baggage/ic_setting.png" title="列设置" @click="show" />
- </div>
- <Dialog :flag="dialogFlag" width="600px" class="dialog-check-group">
- <div class="dialog-wrapper">
- <div class="title">列设置</div>
- <div style="height: 600px" class="content">
- <el-scrollbar style="height: 100%">
- <el-tree ref="columnSetTree" :data="tableCols" :class="colsCheckClass" show-checkbox node-key="index" :default-expand-all="true" :props="{
- label: 'columnLabel',
- children: 'children',
- }" :default-checked-keys="checkedKeysTemp" @check="handleCheck" />
- </el-scrollbar>
- </div>
- <div class="foot right t30">
- <el-button size="medium" class="r24" type="primary" @click="onCheck('baggageTableData')">确定</el-button>
- <el-button size="medium" @click="hide">取消</el-button>
- </div>
- </div>
- </Dialog>
- </template>
- </div>
- </template>
- <script>
- import pf from '@/layout/mixin/publicFunc'
- import { getToken } from '@/utils/auth'
- import { getAuthData, formatOrder } from '@/utils/validate'
- import { exportToExcel } from '@/utils/table'
- import tableColsMixin from '../mix/tableCols'
- import Dialog from '@/layout/components/Dialog/index.vue'
- import TableHeaderCell from '@/components/TableHeaderCell/index.vue'
- export default {
- name: 'NewQueryTable',
- components: { Dialog, TableHeaderCell },
- mixins: [pf, tableColsMixin],
- props: {
- // 不换行,溢出隐藏
- showOverflowTooltip: {
- type: Boolean,
- default: true,
- },
- tableTag: {
- type: Object,
- default: () => ({}),
- },
- tableName: {
- type: String,
- default: '',
- },
- istableCol: {
- type: Boolean,
- default: false,
- },
- istableDown: {
- type: Boolean,
- default: false,
- },
- downName: {
- type: String,
- default: '',
- },
- istableChild: {
- type: Boolean,
- default: false,
- },
- btnStyle: {
- type: Object,
- default: () => { },
- },
- downStyle: {
- type: Object,
- default: () => { },
- },
- pageSize: {
- type: Number,
- default: 20,
- },
- shouldReset: {
- type: Boolean,
- default: true
- },
- fastFilter: {
- type: Function,
- default: () => () => true
- },
- },
- data () {
- return {
- page: 0,
- queryId: '',
- noMore: false,
- loading: false,
- tableCols: [], // 表头数据
- tableData: [], // 表格数据
- tableColsCopy: [], // 表头数据缓存
- tableDataFilters: {}, // 表头-下拉数据
- filterValues: {}, // 表头-下拉-选中数据
- tableDataCopy: [], // 缓存table数据
- tableGroups: [], // 表格分组数据
- colShowFilter: '', // 表头-下拉-箭头
- spanArr: [], // 表格分组数据缓存
- pos: 0, // 表格分组计数
- dataContent: [],
- authBtns: [],
- authBtnCol: [],
- authBtnColName: [],
- tableArrs: [], // 重组table-表头下拉
- tableOptions: {}, // 弹框-下来数据缓存
- showSummary: false, // 是否显示统计
- tableDataSortRules: {},
- tableCath: [],
- leaveCount: 0,
- arriveCount: 0,
- checkPath: ['/newDeparture', '/newTransfer/in', '/newTransfer/out', '/newArrival'],
- hasSetTableScroll: false,
- }
- },
- computed: {
- // 设置表头-下拉-选中数据
- fastFilteredTableData () {
- return this.tableData.filter(this.fastFilter)
- },
- dealedTableData () {
- const filtered = this.fastFilteredTableData.filter(item => {
- let flag = true
- Object.entries(this.filterValues).forEach(([key, arr]) => {
- if (arr.length && !arr.includes(String(item[key]))) {
- flag = false
- }
- })
- return flag
- })
- const sortRules = Object.entries(this.tableDataSortRules).reduce(
- (pre, [key, value]) => {
- if (value) {
- pre[0].push(key)
- value = value === 'ascending' ? 'asc' : 'desc'
- pre[1].push(value)
- }
- return pre
- },
- [[], []]
- )
- return this._.orderBy(filtered, sortRules[0], sortRules[1])
- },
- tableHeight () {
- return 100
- },
- fromDataType () {
- return function (type) {
- if (type) {
- return type.replace(/\([^\)]*\)/g, '')
- }
- }
- },
- },
- watch: {
- tableTag: {
- async handler (val) {
- this.dataContent = _.cloneDeep(val)
- delete this.dataContent.shouldReset
- this.restTable()
- if (val.shouldReset) {
- this.$emit('update:shouldReset', true)
- await this.$nextTick()
- this.hasSetTableScroll = false
- }
- this.load()
- },
- deep: true,
- }
- },
- created () {
- if (this.AauthTable && this.AauthTable.length) {
- const t = this.AauthTable.filter(item => item.auth_name == this.tableName)
- const obj = t[0]
- this.AqueryParams = obj
- this.AqueryId = obj.queryTemplateID
- this.AauthId = obj.auth_id
- }
- this.getColumnData()
- },
- mounted () {
- this.setCellClick()
- },
- updated () {
- this.$refs['table']?.doLayout()
- },
- methods: {
- // 获取表头数据
- async getColumnData () {
- try {
- const { code, returnData } = await this.getQueryList(
- SERVICE_ID.sysUserAuthId,
- [
- {
- user_id: getToken('userid'),
- auth_id: this.AauthId,
- },
- ]
- )
- if (code == 0) {
- if (returnData && returnData.length) {
- if (!this.istableCol) {
- sessionStorage.setItem('tableColumns', JSON.stringify(returnData))
- this.$store.dispatch('auth/changeAuthMsg', returnData)
- }
- const msgDatas = returnData.filter(item => item.needShow)
- const msgCounts = msgDatas.filter(item => item.needCount)
- if (msgCounts.length) {
- this.showSummary = true
- }
- const msgDatasShows = formatOrder(msgDatas)
- this.tableCath = msgDatasShows
- if (this.istableChild) {
- const datas = _.cloneDeep(msgDatasShows)
- const cache = {}
- const indices = []
- const others = []
- datas.forEach(item => {
- if (!cache[item.groupName] && item.groupName) {
- cache[item.groupName] = item.groupName
- indices.push(item)
- } else {
- const newItem = _.cloneDeep(item)
- others.push(newItem)
- }
- })
- indices.map((item, index) => {
- item.tabIndex = index
- })
- others.forEach(item => {
- indices.forEach(p => {
- if (item.groupName == p.groupName && item.groupName) {
- item.tabIndex = p.tabIndex
- }
- })
- })
- indices.forEach(item => {
- item.children = [
- _.cloneDeep(item),
- ...this.formatCaps(item.tabIndex, others),
- ]
- })
- this.tableCols = _.cloneDeep(indices)
- } else {
- this.tableCols = _.cloneDeep(msgDatasShows)
- }
- this.tableColsCopy = _.cloneDeep(this.tableCols)
- this.initTableCols()
- this.setTableCols()
- }
- } else {
- this.$message.error('获取表头数据失败')
- }
- } catch (error) {
- console.log(error)
- }
- },
- setTableCols () {
- this.tableCath.forEach(({ columnName, needFilters, needSort }) => {
- if (needFilters) {
- this.$set(this.tableDataFilters, columnName, [])
- this.$set(this.filterValues, columnName, [])
- }
- if (needSort) {
- this.$set(this.tableDataSortRules, columnName, '')
- }
- })
- },
- formatCaps (order, arr) {
- const datas = []
- for (let i = 0; i < arr.length; i++) {
- const element = arr[i]
- if (element['tabIndex'] == order) {
- datas.push(element)
- }
- }
- return datas
- },
- // 获取表格数据
- async getQuery (id, dataContent = this.dataContent, page, pageSize) {
- try {
- if (this.shouldReset) {
- this.loading = true
- }
- this.$emit('update:shouldReset', false)
- await this.$nextTick()
- const { code, returnData } = await this.getQueryListAuth(
- id,
- dataContent,
- page,
- pageSize
- )
- if (code == 0) {
- let tableData = []
- if (returnData.length < pageSize) {
- this.noMore = true
- if (returnData.length === 0) {
- this.page--
- this.loading = false
- }
- }
- if (this.shouldReset) {
- tableData = [...this.tableData, ...returnData]
- this.tableData.push(...returnData)
- } else {
- tableData = [...returnData]
- this.noMore = true
- }
- this.$emit('tableLoad', [...tableData])
- this.initTableData(tableData)
- await this.$nextTick()
- this.setTableScroll()
- this.loading = false
- } else {
- throw new Error('获取表格数据失败')
- }
- } catch (error) {
- this.page--
- this.loading = false
- this.$message.error(error.message)
- }
- },
- restTable () {
- this.loading = false
- this.page = 0
- this.noMore = false
- if (this.shouldReset) {
- this.tableData = []
- }
- },
- load () {
- if (this.tableTag && Object.keys(this.tableTag).length) {
- if (this.noMore || this.loading) {
- return
- }
- if (this.AqueryParams && this.AqueryParams.queryparams) {
- const newData = _.cloneDeep(this.tableTag)
- delete newData.shouldReset
- const paramsType = typeof this.AqueryParams.queryparams
- if (paramsType == 'string') {
- const dataObj = {}
- const paramsData = this.AqueryParams.queryparams.split(',')
- if (paramsData && paramsData.length) {
- for (const key in newData) {
- paramsData.map(item => {
- if (key === item) {
- dataObj[item] = newData[key]
- } else {
- if (item.includes('=')) {
- const newItem = item.split('=')
- if (key === newItem[0]) {
- dataObj[newItem[1]] = newData[key]
- }
- }
- }
- })
- }
- this.dataContent = dataObj
- }
- }
- }
- this.getQuery(
- this.AqueryId,
- this.dataContent,
- ++this.page,
- this.pageSize
- )
- }
- },
- setCellClick () {
- let table = null
- const { auth_id } = this.$route.meta
- const { arrs } = getAuthData(auth_id)
- if (this.tableName) {
- table = this.AauthTable.filter(item => item.auth_name == this.tableName)
- } else {
- table = arrs.filter(item => item.auth_type == 4)
- }
- if (table && table.length) {
- const obj = table[0]
- const { arrs } = getAuthData(obj.auth_id)
- this.authBtnCol = arrs.filter(item => Number(item.service_type) == 6)
- if (this.authBtnCol.length) {
- this.authBtnCol.forEach(item => {
- this.authBtnColName.push(item.relation_data)
- })
- }
- }
- },
- // 初始化表格
- initTableData (tableData) {
- tableData.forEach(async row => {
- if (row.needGroup) {
- this.tableGroups.push(row.columnName)
- }
- })
- const now = new Date()
- if (this.$route.path == '/newDeparture') {
- this.leaveCount = 0
- const nTableData = [...tableData]
- const cData = nTableData.filter(row => Number(row['NO_BSM_number']) + Number(row['check_in_baggage_number']) > 0)
- cData.forEach(row => {
- if (row.abnormalState === 'CAN') {
- row.canceled = 'Y'
- } else if (row.normalState === 'DEP' || row.actualTakeOffTime) {
- row.hasTakenOff = 'Y'
- this.leaveCount++
- }
- })
- this.tableData = _.orderBy(cData, ['canceled', 'hasTakenOff', 'scheduleTakeOffTime'], ['desc', 'asc', 'asc']);
- }
- if (this.$route.path == '/newArrival') {
- this.arriveCount = 0
- const nTableData = [...tableData]
- const cData = nTableData.filter(row => Number(row['NO_BSM_number']) + Number(row['check_in_baggage_number']) > 0)
- cData.forEach(row => {
- if (row.abnormalState === 'CAN') {
- row.canceled = 'Y'
- } else if (row.normalState === 'ARR' || row.actualLandInTime) {
- row.hasLanded = 'Y'
- this.arriveCount++
- }
- })
- this.tableData = _.orderBy(cData, ['canceled', 'hasLanded', 'actualLandInTime'], ['desc', 'asc', 'asc'])
- }
- if (this.$route.path.startsWith('/newTransfer')) {
- this.leaveCount = 0
- const nTableData = [...tableData]
- nTableData.forEach(row => {
- if (row.departure_flights_leave_date && new Date(row.departure_flights_leave_date) < now) {
- row.hasTakenOff = 'Y'
- this.leaveCount++
- }
- })
- this.tableData = _.orderBy(nTableData, ['departure_flights_leave_date', 'normalState'], ['asc', 'desc'])
- }
- const filters = this.setTableFilters(this.tableData, this.tableDataFilters)
- this.tableDataFilters = _.cloneDeep(filters)
- this.tableGroup(this.tableData)
- },
- setTableFilters (tableData, filters) {
- const tempSets = {}
- Object.keys(filters).forEach(key => {
- tempSets[key] = new Set()
- })
- tableData.forEach(item => {
- Object.keys(tempSets).forEach(key => {
- ; (item[key] ?? '') !== '' && tempSets[key].add(String(item[key]))
- })
- })
- Object.keys(tempSets).forEach(key => {
- filters[key] = _.orderBy(
- [...tempSets[key]].map(value => ({
- text: value,
- value,
- })),
- o => o.value
- )
- })
- return filters
- },
- // 分组
- tableGroup (tableData) {
- const spanArr = []
- let pos = 0
- let ifYj = this.tableGroups[0]
- for (let i = 0; i < tableData.length; i++) {
- if (i === 0) {
- spanArr.push(1)
- } else {
- if (tableData[i][ifYj] === tableData[i - 1][ifYj]) {
- spanArr[pos] += 1
- spanArr.push(0)
- } else {
- spanArr.push(1)
- pos = i
- }
- }
- }
- this.spanArr = spanArr
- this.pos = pos
- },
- setTableScroll() {
- const count = Math.max(this.leaveCount, this.arriveCount)
- if ( this.hasSetTableScroll || count === 0) {
- return
- }
- const table = this.$refs['table'].$el
- const scrollParent = table.querySelector('.el-table__body-wrapper')
- if (scrollParent.scrollHeight <= scrollParent.offsetHeight) {
- return
- }
- const lastRow = table.querySelectorAll('.el-table__body tr')[count - 1]
- setTimeout(() => {
- const scrollMid = lastRow.offsetTop + lastRow.offsetHeight - scrollParent.offsetHeight / 2
- const scrollMax = scrollParent.scrollHeight - scrollParent.offsetHeight
- if (scrollMid > 0) {
- const scrollHeight = Math.min(scrollMid, scrollMax)
- scrollParent.scrollTo(0, scrollHeight)
- }
- }, 0)
- this.hasSetTableScroll = true
- },
- popoverShowHandler (prop) {
- this.colShowFilter = prop
- },
- popoverHideHandler () {
- this.colShowFilter = ''
- },
- // 获取弹框-下拉数据
- async getSelectData (id) {
- // name ? [name] : name === null ? [null]: [],
- const { code, returnData } = await this.getQueryList(id, {})
- if (code == 0) {
- return returnData
- } else {
- return []
- }
- },
- // 设置表头-下拉-箭头样式
- arrowClass () {
- return function (prop) {
- const classes = []
- if (this.colShowFilter === prop) {
- classes.push('arrow-active')
- }
- if (
- Object.entries(this.tableDataFilters).find(
- ([key, arr]) => this.filterValues[prop]
- )
- ) {
- classes.push('arrow-blue')
- }
- return classes.join(' ')
- }
- },
- // 合计
- getSummaries (param) {
- const { columns, data } = param
- const sums = []
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = '合计:' + data.length
- return
- }
- this.tableCath.forEach(p => {
- if (column.property == p.columnName && p.needCount) {
- const values = data.map(item => Number(item[column.property]))
- if (!values.every(value => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr)
- if (!isNaN(value)) {
- return prev + curr
- } else {
- return prev
- }
- }, 0)
- sums[index] += ''
- }
- }
- })
- })
- return sums
- },
- // 分组
- tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
- if (this.tableGroups.includes(column['property'])) {
- const _row = this.spanArr[rowIndex]
- const _col = _row > 0 ? 1 : 0
- return {
- rowspan: _row,
- colspan: _col,
- }
- }
- },
- // 给表头单元格加上 ascending 或 descending 使用 element 自带的排序箭头变色
- headerCellClass ({ row, column, rowIndex, columnIndex }) {
- const classes = []
- const rule = this.tableDataSortRules[column.property]
- if (rule) {
- classes.push(rule)
- }
- return classes.join(' ')
- },
- // 表格-设置单元格样式
- cellClass ({ row, column, rowIndex, columnIndex }) {
- if (this.authBtnColName.includes(column.property) && Number(row[column.property]) !== 0) {
- return 'is-click-btn'
- }
- if (this.$route.path == '/newDeparture') {
- if (column.property === 'NO_check_number' && Number(row['NO_check_number']) > 0) {
- return 'cell-toUnload'
- }
- }
- },
- // 表格-设置行样式
- rowClass ({ row, rowIndex }) {
- const classes = []
- if (this.checkPath.includes(this.$route.path)) {
- const { abnormalState } = row
- if (abnormalState) {
- if (abnormalState == 'DLY') {
- classes.push('bgl-delayed')
- }
- if (abnormalState == 'CAN') {
- classes.push('bgl-canceled')
- }
- }
- if (row.hasTakenOff === 'Y' || row.hasLanded === 'Y') {
- classes.push('bgl-hui')
- }
- if (rowIndex === this.leaveCount - 1 || rowIndex === this.arriveCount - 1) {
- classes.push("redBorder");
- }
- }
- return classes
- },
- // 表格-单元格点击
- cellClick (row, column) {
- const dataBtns = this.authBtnCol
- if (dataBtns && dataBtns.length) {
- const clickBtn = dataBtns.filter(
- item => item.relation_data == column.property
- )[0]
- if (clickBtn) {
- const { open_method, route_info, pass_parameters, relation_data } = clickBtn
- if (Number(open_method) === 2 && Number(row[relation_data]) !== 0) {
- if (pass_parameters) {
- const query = pass_parameters.split(',')
- const obj = {}
- query.forEach(key => {
- obj[key] = row[key]
- })
- if (['Inbound_flight_number'].includes(relation_data)) {
- obj.outAirport = obj.inbound_flights_departure_airport
- obj.landAirport = obj.current_airport
- delete obj.current_airport
- delete obj.inbound_flights_departure_airport
- }
- if (['departure_flights_number', 'departure_flights_transferred_bags_number', 'Inbound_baggage_number'].includes(relation_data)) {
- obj.outAirport = obj.current_airport
- obj.landAirport = obj.departure_flights_destination_airport
- delete obj.current_airport
- delete obj.departure_flights_destination_airport
- }
- this.$router.push({
- path: route_info,
- query: obj,
- })
- }
- }
- }
- }
- },
- // 导出
- exportHandler () {
- const table = this.$refs['table'].$el.cloneNode(true)
- const fileName = `${this.downName || this.AqueryParams.auth_name}.xlsx`
- exportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
- },
- formatter (row, column, cellValue, index) {
- let sameColumn = null
- this.tableCols.some(col => {
- if (col.columnName === column.property) {
- sameColumn = col
- return true
- } else if (col.children) {
- col.children.some(childCol => {
- if (childCol.columnName === column.property) {
- sameColumn = childCol
- return true
- }
- })
- }
- })
- if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
- return (cellValue ?? '').replace('T', '\n')
- }
- return cellValue
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .newQueryTable {
- height: 100%;
- position: relative;
- ::v-deep .table {
- .is-click-btn {
- .cell {
- color: #409eff;
- cursor: pointer;
- position: relative;
- }
- }
- .cell {
- color: #000;
- text-align: center;
- white-space: pre-line;
- padding: 0;
- .el-tooltip {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- line-height: 34px;
- }
- }
- tr.bgl-hui td {
- background: #d2d6df;
- }
- tr.bgl-delayed td {
- background: #fcf0b1;
- }
- tr.bgl-canceled td {
- background: #f7babe;
- }
- .redBorder {
- position: relative;
- &::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 2px;
- background: #e83f82;
- }
- }
- td.cell-toUnload {
- background: lightcoral !important;
- position: relative;
- &::after {
- content: "";
- display: block;
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- border: 2px dashed red;
- }
- }
- }
- .btns {
- position: absolute;
- top: -50px;
- right: 32px;
- z-index: 10;
- }
- .down-btns {
- position: absolute;
- top: -50px;
- right: 72px;
- z-index: 10;
- }
- }
- </style>
|