chenlu
2024-01-23 3ad02364ce97ab8188d18c52695c8b57b1e47ea6
north-glass-erp/northglass-erp/src/views/sd/order/SelectOrder.vue
@@ -1,8 +1,9 @@
<script setup>
  import {Search} from "@element-plus/icons-vue"
  import {useRouter} from "vue-router"
  import {reactive} from "vue";
  import {reactive, ref} from "vue";
  const router = useRouter()
  import ProcessCardProgress from '@/views/pp/report/ProcessCardProgress.vue'
  const getTableRow = (row,type) =>{
    switch (type) {
@@ -138,9 +139,11 @@
    }
  })
  const dialogTableVisible = ref(false)
const cellClickEvent =()=>{
    dialogTableVisible.value = true
}
@@ -156,6 +159,7 @@
    />
    <el-button style="margin-top: -5px"  id="searchButton" type="primary" :icon="Search">查询</el-button>
    <vxe-grid
        @cell-dblclick="cellClickEvent"
        max-height="97%"
        class="mytable-scrollbar"
        ref="xGrid"
@@ -191,7 +195,9 @@
      </template>
    </vxe-grid>
    <el-dialog v-model="dialogTableVisible" title="流程卡进度" style="width: 80%;height:75% ">
      <ProcessCardProgress style="width: 100%;height: 100%" />
    </el-dialog>
  </div>
</template>