chenlu
2024-12-02 e50fa16b6dbc4e7c50d5fbdbc04d2a556ca01c4e
north-glass-erp/northglass-erp/src/components/sd/order/OrderProcess.vue
@@ -15,7 +15,7 @@
  showOverflow:true,
  rowConfig: {isCurrent: true, isHover: true,height: 30},//鼠标移动或选择高亮
  virtualScroll: true, // 开启虚拟滚动功能
  id: 'OrderList',
  id: 'OrderProcess',
  printConfig: {},
  importConfig: {},
  exportConfig: {},
@@ -35,7 +35,11 @@
  columns:[
  ],
  mergeCells:[]
  mergeCells:[],
  toolbarConfig: {
    zoom: true,
    custom: true
  }
})
@@ -117,7 +121,11 @@
      <template #num1_filter="{ column, $panel }">
        <div>
          <div v-for="(option, index) in column.filters" :key="index">
            <input type="type" v-model="option.data" @input="changeFilterEvent($event, option, $panel)"/>
            <input
                type="type"
                v-model="option.data"
                @keyup.enter.native="$panel.confirmFilter()"
                @input="changeFilterEvent($event, option, $panel)"/>
          </div>
        </div>
      </template>