|
@@ -69,8 +69,8 @@
|
|
|
<img src="../../../../../assets/imgs/1720750327521.jpg"/>
|
|
|
<div style="padding-left: 20px">
|
|
|
<p>
|
|
|
- <span class="title-font">{{ row.RESOURCE_NAME }}1</span><br>
|
|
|
- <span class="content-font">{{ row.RELEASE_REMARKS }}1</span>
|
|
|
+ <span class="title-font">{{ row.RESOURCE_NAME }}</span><br>
|
|
|
+ <span class="content-font">{{ row.RELEASE_REMARKS }}</span>
|
|
|
</p>
|
|
|
</div>
|
|
|
<div class="center expand-column-middle">
|
|
@@ -289,6 +289,13 @@ function jumpTool(data) {
|
|
|
// 批量申请
|
|
|
function batchTool() {
|
|
|
try {
|
|
|
+ if (tableRef.value.getSelectionRows().length <= 0) {
|
|
|
+ showMessage({
|
|
|
+ type: 'error',
|
|
|
+ message: '请选择您要申请的工具!'
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
let tableData = tableRef.value.getSelectionRows();
|
|
|
localStorage.setItem("gis-map-tool", JSON.stringify(tableData))
|
|
|
router.push({name: 'map-application'})
|
|
@@ -314,7 +321,7 @@ function pendingBatchTool() {
|
|
|
pendingTableRef.value.getSelectionRows().forEach(t => {
|
|
|
let data = {}
|
|
|
data.RESOURCE_NAME = t.resourceName
|
|
|
- data.RELEASE_TIME = t.insertTime
|
|
|
+ data.INSERT_TIME = t.insertTime
|
|
|
data.RELEASE_REMARKS = t.interfaceRemarks
|
|
|
tableData.push(data)
|
|
|
})
|