fix 视频显示,数据精度,æ·操问题作æ;添加操作手册

This commit is contained in:
2024-07-20 16:59:33 +08:00
parent d10d97f344
commit b500a532b1
13 changed files with 97 additions and 20 deletions

View File

@@ -3,7 +3,7 @@
<div id="lonlatMap" style=" width:100%; height: 100%;position: absolute;z-index: 1"></div>
<div
style="position: absolute;right:10px;top: 10px;z-index: 2;background:rgba(255,255,255,0.6);border-radius: 5px;overflow: hidden">
<div class="map-gj">图层</div>
<!-- <div class="map-gj">图层</div>-->
<div class="map-gj" @click="onLineTool">测距</div>
<div class="map-gj" @click="onPolygonTool">测面</div>
<div class="map-gj" @click="clerOver">清除</div>

View File

@@ -230,7 +230,6 @@ export default {
.map-gj {
padding: 5px 10px;
border: 1px solid #999999;
}
.map-gj:last-child {

View File

@@ -9,13 +9,19 @@ export default {
name: 'RuoYiDoc',
data() {
return {
url: 'http://doc.ruoyi.vip/ruoyi-vue'
url: 'http://doc.ruoyi.vip/ruoyi-vue',
zjDoc: process.env.VUE_APP_BASE_API + "/profile/common/州级账号Web平台操作指导手册.pdf",
sjDoc: process.env.VUE_APP_BASE_API + "/profile/common/市、县级账号Web平台操作指导手册.pdf",
}
},
methods: {
goto() {
window.open(this.url)
var gotoURL = this.sjDoc;
if(this.$auth.hasRoleOr(["admin", "zjgly"])){
gotoURL = this.zjDoc
}
window.open(gotoURL)
}
}
}
</script>
</script>