From 63b01db83d9aad8a15276b4236a9a22e4aeef065 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期二, 05 五月 2026 12:30:59 +0800
Subject: [PATCH] # Agent数据分析V3.0.1.7
---
src/main/webapp/views/basMap/basMap.html | 47 ++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 46 insertions(+), 1 deletions(-)
diff --git a/src/main/webapp/views/basMap/basMap.html b/src/main/webapp/views/basMap/basMap.html
index c001131..0c5b56b 100644
--- a/src/main/webapp/views/basMap/basMap.html
+++ b/src/main/webapp/views/basMap/basMap.html
@@ -423,6 +423,21 @@
<el-button
size="small"
plain
+ icon="el-icon-edit-outline"
+ @click="openVisualEditorByPrompt">
+ 鍙鍖栫紪杈�
+ </el-button>
+ <el-button
+ size="small"
+ plain
+ icon="el-icon-refresh"
+ :loading="syncingLocMast"
+ @click="promptSyncLocMast">
+ 鍚屾鍦板浘鍧愭爣
+ </el-button>
+ <el-button
+ size="small"
+ plain
icon="el-icon-refresh"
:loading="initializingLocMast"
@click="promptInitLocMast">
@@ -568,8 +583,10 @@
<span v-else>{{ valueOrDash(getTableValue(scope.row, field)) }}</span>
</template>
</el-table-column>
- <el-table-column label="鎿嶄綔" width="160" 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>
</template>
@@ -596,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