From 720e0926fa1c94b952c26e111206c5d6e1ed5ba2 Mon Sep 17 00:00:00 2001
From: lsh <lsh@163.com>
Date: 星期二, 21 四月 2026 15:59:49 +0800
Subject: [PATCH] Merge branch 'master' of http://47.97.1.152:5880/r/zy-wcs-master

---
 src/main/webapp/views/basMap/basMap.html |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/src/main/webapp/views/basMap/basMap.html b/src/main/webapp/views/basMap/basMap.html
index c6774fa..0c5b56b 100644
--- a/src/main/webapp/views/basMap/basMap.html
+++ b/src/main/webapp/views/basMap/basMap.html
@@ -583,8 +583,9 @@
                                 <span v-else>{{ valueOrDash(getTableValue(scope.row, field)) }}</span>
                             </template>
                         </el-table-column>
-                        <el-table-column label="鎿嶄綔" width="220" fixed="right" align="center">
+                        <el-table-column label="鎿嶄綔" width="300" fixed="right" align="center">
                             <template slot-scope="scope">
+                                <el-button type="text" @click="openPayloadDialog(scope.row)">鏌ョ湅鍦板浘鏁版嵁</el-button>
                                 <el-button type="text" @click="openVisualEditor(scope.row)">鍙鍖栫紪杈�</el-button>
                                 <el-button type="text" @click="openEditDialog(scope.row)">淇敼</el-button>
                                 <el-button type="text" style="color:#f56c6c;" @click="removeRows([scope.row[primaryKeyField]])">鍒犻櫎</el-button>
@@ -612,6 +613,34 @@
 
     <el-dialog
         class="dialog-panel"
+        title="鍦板浘鏁版嵁璇︽儏"
+        :visible.sync="payloadDialog.visible"
+        width="960px"
+        :close-on-click-modal="false">
+        <div v-loading="payloadDialog.loading">
+            <el-descriptions :column="2" border size="small" style="margin-bottom: 16px;">
+                <el-descriptions-item label="ID">{{ valueOrDash(payloadDialog.data.id) }}</el-descriptions-item>
+                <el-descriptions-item label="灞傛暟">{{ valueOrDash(payloadDialog.data.lev) }}</el-descriptions-item>
+            </el-descriptions>
+            <el-tabs>
+                <el-tab-pane label="瀹炴椂鏁版嵁">
+                    <el-input :value="stringValue(payloadDialog.data.data)" type="textarea" :rows="8" readonly></el-input>
+                </el-tab-pane>
+                <el-tab-pane label="鏈�杩戞暟鎹�">
+                    <el-input :value="stringValue(payloadDialog.data.lastData)" type="textarea" :rows="8" readonly></el-input>
+                </el-tab-pane>
+                <el-tab-pane label="鍘熷鍦板浘">
+                    <el-input :value="stringValue(payloadDialog.data.originData)" type="textarea" :rows="8" readonly></el-input>
+                </el-tab-pane>
+            </el-tabs>
+        </div>
+        <div slot="footer" class="dialog-footer">
+            <el-button @click="payloadDialog.visible = false">鍏抽棴</el-button>
+        </div>
+    </el-dialog>
+
+    <el-dialog
+        class="dialog-panel"
         :title="dialog.mode === 'create' ? '鏂板鍦板浘' : '淇敼鍦板浘'"
         :visible.sync="dialog.visible"
         width="760px"

--
Gitblit v1.9.1