你好啊
2024-08-06 10ddb739215d5673a93e3475e5dd75f9f326b907
设置发货界面的高度问题
1个文件已修改
16 ■■■■■ 已修改文件
north-glass-erp/northglass-erp/src/views/sd/delivery/SelectDelivery.vue 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/views/sd/delivery/SelectDelivery.vue
@@ -336,6 +336,7 @@
<template>
  <div style="width: 100%;height: 100%">
    <div class="head">
    <el-date-picker
        v-model="orderInfo.selectDeliveryDate"
        type="daterange"
@@ -346,8 +347,11 @@
    />
    <el-button @click="changeDate" style="margin-top: -5px"  id="searchButton" type="primary" :icon="Search">{{$t('basicData.search')}}</el-button>
    </div>
    <div class="main-table">
    <vxe-grid
        max-height="97%"
          height="100%"
        @filter-change="filterChanged"
        class="mytable-scrollbar"
        ref="xGrid"
@@ -407,6 +411,8 @@
      </template>
    </vxe-grid>
    </div>
    <el-dialog
        :key="dialogKey"
        id="print"
@@ -449,7 +455,15 @@
    margin: 8mm 16mm 8mm 16mm;
  }
}
.head{
  width: 100%;
  height: 35px;
}
.main-table{
  width: 100%;
  height: calc(100% - 35px);
}