Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
罗鑫霖
/
vion-tools
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 07d1fa74
authored
Jul 03, 2023
by
李君
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://git.keliuyun.com:55676/luoxinlin/vion-tools
2 parents
b55e0961
0edcae6f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
21 deletions
package.json
src/views/FeatureMatchingAccuracy/FeatureMatchingAccuracy.vue
package.json
View file @
07d1fa7
...
...
@@ -4,7 +4,7 @@
"private"
:
true
,
"scripts"
:
{
"serve"
:
"vue-cli-service serve"
,
"build"
:
"vue-cli-service build"
,
"build"
:
"
set NODE_OPTIONS=--openssl-legacy-provider &&
vue-cli-service build"
,
"lint"
:
"vue-cli-service lint"
,
"dev"
:
"vue-cli-service serve"
},
...
...
src/views/FeatureMatchingAccuracy/FeatureMatchingAccuracy.vue
View file @
07d1fa7
...
...
@@ -142,9 +142,9 @@
<el-table
:data=
"item.hitRecords"
style=
"width: 100%"
border
>
<el-table-column
type=
"index"
label=
"序号"
width=
"80"
>
</el-table-column>
<el-table-column
prop=
"counttime"
label=
"时间"
>
<el-table-column
prop=
"counttime"
label=
"时间"
>
</el-table-column>
<el-table-column
prop=
"gateName"
label=
"监控点名称"
>
<el-table-column
prop=
"gateName"
label=
"监控点名称"
>
</el-table-column>
<el-table-column
prop=
"direction"
label=
"方向"
>
</el-table-column>
...
...
@@ -187,9 +187,7 @@ export default {
setup
()
{
const
accountList
=
ref
([]);
const
plazaList
=
ref
([]);
const
tableDataList
=
ref
([
]);
const
tableDataList
=
ref
([]);
const
selectList
=
ref
([]);
const
router
=
useRouter
();
const
isShow
=
ref
(
true
);
...
...
@@ -509,6 +507,13 @@ export default {
});
identifyResultList
.
value
=
r
.
data
;
total_identify
.
value
=
r
.
data
.
total
;
}
else
{
// identifyResultList.value = [];
// total_identify.value =0;
ElMessage
({
message
:
r
.
msg_info
,
type
:
"warning"
,
});
}
});
};
...
...
@@ -617,7 +622,7 @@ export default {
selectList
.
value
=
val
;
console
.
log
(
val
);
};
const
formatUrlList
=
ref
([])
const
formatUrlList
=
ref
([]);
const
selectReport
=
()
=>
{
if
(
selectList
.
value
.
length
<=
0
)
{
return
ElMessage
({
...
...
@@ -627,29 +632,29 @@ export default {
}
isShow
.
value
=
false
;
let
datas
=
selectList
.
value
.
map
(
item
=>
item
.
id
).
join
(
','
)
let
datas
=
selectList
.
value
.
map
((
item
)
=>
item
.
id
).
join
(
","
);
FeatureMatchingAccuracyApi
.
getfeatureReport
({
idList
:
datas
}).
then
(
res
=>
{
tableDataList
.
value
=
res
// console.log(tableDataList.value)
// formatUrlList.value=tableDataList.value.picList.map(item=>{
// return window._baseImgUrl + "tool/picture/" + item
// })
// console.log(formatUrlList.value)
})
idList
:
datas
,
}).
then
(
(
res
)
=>
{
tableDataList
.
value
=
res
;
// console.log(tableDataList.value)
// formatUrlList.value=tableDataList.value.picList.map(item=>{
// return window._baseImgUrl + "tool/picture/" + item
// })
// console.log(formatUrlList.value)
})
;
};
const
returns
=
()
=>
{
console
.
log
(
isShow
.
value
);
isShow
.
value
=
true
;
};
const
formatUrl
=
(
url
)
=>
{
const
formatUrl
=
(
url
)
=>
{
return
window
.
_baseImgUrl
+
"tool/picture/"
+
url
;
}
const
formatUrl1
=
(
url
)
=>
{
}
;
const
formatUrl1
=
(
url
)
=>
{
return
window
.
_baseImgUrl
+
"picture/"
+
url
;
}
}
;
return
{
// sequence
tableDataList
,
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment