NNowhZzU
2023-12-27 97c3f97a11524d8bacc6d36cf2ec4e3b93b5c277
north-glass-erp/northglass-erp/src/views/pp/processCard/SelectProcessCard.vue
@@ -65,7 +65,7 @@
    { type: 'seq',fixed:"left", title: '自序', width: 50 },
    {title: '操作', width: 140, slots: { default: 'button_slot' },fixed:"left"},
    {field: 'salesOrderNo', title: '销售单号',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true, },
    {field: 'productionOrderNo', title: '流程卡号', sortable: true,showOverflow:"ellipsis" ,filters:[{ data: '' }],slots: { filter: 'num1_filter' }},
    {field: 'productionOrderNo', width: 120, title: '流程卡号', sortable: true,showOverflow:"ellipsis" ,filters:[{ data: '' }],slots: { filter: 'num1_filter' }},
    {field: 'productID', title: '产品编号', sortable: true,filters:[{ data: '' }],slots: { filter: 'num1_filter' }},
    {field: 'productName', title: '产品名称',filters:[{ data: '' }],slots: { filter: 'num1_filter' }, sortable: true},
    {field: 'entryName', title: '项目名称', sortable: true,showOverflow:"ellipsis"},
@@ -89,7 +89,7 @@
  data:  [
    {
      salesOrderNo: 'NG231201',
      productionOrderNo: 'NG231201A',
      productionOrderNo: 'NG231201A01 ',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -101,7 +101,7 @@
    },
    {
      salesOrderNo: 'NG231201',
      productionOrderNo: 'NG231201B',
      productionOrderNo: 'NG231201B01',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -113,7 +113,7 @@
    },
    {
      salesOrderNo: 'NG231202',
      productionOrderNo: 'NG231202A',
      productionOrderNo: 'NG231202A01',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -125,7 +125,7 @@
    },
    {
      salesOrderNo: 'NG231203',
      productionOrderNo: 'NG231203A',
      productionOrderNo: 'NG231203A01',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -137,7 +137,7 @@
    },
    {
      salesOrderNo: 'NG231204',
      productionOrderNo: 'NG231204A',
      productionOrderNo: 'NG231204A01',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -149,7 +149,7 @@
    },
    {
      salesOrderNo: 'NG231205',
      productionOrderNo: 'NG231205A',
      productionOrderNo: 'NG231205A01',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -161,7 +161,7 @@
    },
    {
      salesOrderNo: 'NG231206',
      productionOrderNo: 'NG231206A',
      productionOrderNo: 'NG231206A01',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -173,7 +173,7 @@
    },
    {
      salesOrderNo: 'NG231207',
      productionOrderNo: 'NG231207A',
      productionOrderNo: 'NG231207A01',
      productID: '9001010203000008',
      productName: '5mm白玻平钢(外)+0.76PVB透明+5mm白玻平钢(内)',
      entryName: '信合春天里',
@@ -202,12 +202,35 @@
})
const form = reactive({
  name: '',
  region: '',
  date1: '',
  date2: '',
  delivery: false,
  type: [],
  resource: '',
  desc: '',
})
</script>
<template>
  <div class="main-div-customer">
    <div id="selectForm">
      <el-row :gutter="0">
        <el-date-picker
            v-model="form.date1"
            type="daterange"
            start-placeholder="开始时间"
            end-placeholder="结束时间"
            :default-time="defaultTime"
        />
        &nbsp;&nbsp;
        <el-button type="primary">查询</el-button>
      </el-row>
    </div>
    <vxe-grid
        max-height="100%"
        @filter-change="filterChanged"
@@ -252,4 +275,8 @@
  width: 99%;
  height: 100%;
}
#selectForm {
  width: 40%;
  text-align: center;
}
</style>