Zhu Zhonghua
2025-04-16 1f236bfe78813d4a97ad2bc0aa5af0575679c379
增加锁定列和滚动高度问题
已修改5个文件
25 ■■■■ 文件已修改
src/views/mainPlan/apsPartRoutStat/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mainPlan/gasPiping/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mainPlan/platePlan/index.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mainPlan/weldSeam/index.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/partPlan/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mainPlan/apsPartRoutStat/index.vue
@@ -19,8 +19,8 @@
          v-hasPermi="['apsPartRouteStat:edit']"
        >更新</el-button>
      </el-col>
      <right-toolbar @queryTable="getList" :search="false"></right-toolbar>
    </el-row>
    <vxe-grid ref="gridRef" v-bind="gridOptions" :loading="loading"></vxe-grid>
  </div>
</template>
src/views/mainPlan/gasPiping/index.vue
@@ -207,7 +207,7 @@
const total = ref(0);
const daterangePlanStartDay = ref([]);
const daterangePlanEndDay = ref([]);
const height = ref(document.documentElement.clientHeight - 210 + "px;")
const height = ref(document.documentElement.clientHeight - 270 + "px;")
const isVisible = ref(false);
const isError = ref(false);
const planned = ref(true);
src/views/mainPlan/platePlan/index.vue
@@ -105,7 +105,6 @@
        :loading="loading"
        :height="height"
        @on-checkbox="handleCheckboxChange"
        :expand-config="expandConfig"
        :subGridOptions="subGridOptions"
    >
@@ -219,7 +218,7 @@
const daterangePlanStartDay = ref([]);
const daterangePlanEndDay = ref([]);
const height = ref(document.documentElement.clientHeight - 210 + "px;")
const height = ref(document.documentElement.clientHeight - 270 + "px;")
const isVisible = ref(false);
const isError = ref(false);
const planned = ref(true);
@@ -431,9 +430,9 @@
// 表格配置
const columns = ref([
  { field: 'expand', type: 'expand', width: 60, align: 'center', slots: { content: 'expandContent' } },
  { type: 'checkbox', width: 60, align:"center"},
  { type: 'seq', title: '序号', width: 60 },
  { field: 'expand', type: 'expand', width: 60, align: 'center', slots: { content: 'expandContent' } },
  {
    title: '主计划员',
    field: 'masterPlanner',
@@ -482,7 +481,7 @@
  {
    title: '单据号',
    field: 'documentNumber',
    width: 100,
    width: 140,
  },
  {
    title: '需求分类',
@@ -850,11 +849,9 @@
const expandConfig = ref({
  lazy: true,
  loadMethod ({ row }) {
    debugger;
    // 调用接口
    return listProcessRoute({'workOrderNo':row.documentNumber}).then(data => {
      row.subList = data.rows;
      debugger;
    })
  }
})
src/views/mainPlan/weldSeam/index.vue
@@ -20,7 +20,7 @@
          v-hasPermi="['weldSeam:weldSeam:export']"
        >导出</el-button>
      </el-col>
      <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
      <right-toolbar :search="false" @queryTable="getList"></right-toolbar>
    </el-row>
    <HxlhTable
@@ -171,7 +171,6 @@
const open = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref([]);
const single = ref(true);
const multiple = ref(true);
@@ -210,21 +209,24 @@
// 表格配置 
const columns = ref([
  { type: 'seq', title: '序号', width: 60 },
  { type: 'seq', title: '序号', width: 60, fixed: 'left' },
  {
    title: '年份',
    field: 'year',
    width: 100,
    fixed: 'left'
  },
  {
    title: '月份',
    field: 'month',
    width: 80,
    fixed: 'left'
  },
  {
    title: '生产基地',
    field: 'productionBase',
    width: 150,
    fixed: 'left'
  },
  {
    title: '订单需求',
@@ -709,7 +711,7 @@
  console.log(row);
  open.value = true;
  title.value = "修改焊缝";
  form.value = row;
  form.value = {...row};
  // const _id = row.id
  // getWeldSeam(_id).then(response => {
  //   form.value = response.data;
src/views/partPlan/index.vue
@@ -244,7 +244,7 @@
const total = ref(0);
const daterangePlanStartDay = ref([]);
const daterangePlanEndDay = ref([]);
const height = ref(document.documentElement.clientHeight - 210 + "px;")
const height = ref(document.documentElement.clientHeight - 270 + "px;")
const isVisible = ref(false);
const isError = ref(false);
const planned = ref(true);