From 3ad02364ce97ab8188d18c52695c8b57b1e47ea6 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期二, 23 一月 2024 08:40:37 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override
---
north-glass-erp/northglass-erp/src/views/sd/order/SelectOrder.vue | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/north-glass-erp/northglass-erp/src/views/sd/order/SelectOrder.vue b/north-glass-erp/northglass-erp/src/views/sd/order/SelectOrder.vue
index bb7570d..201e2c6 100644
--- a/north-glass-erp/northglass-erp/src/views/sd/order/SelectOrder.vue
+++ b/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>
--
Gitblit v1.8.0