功能优化

This commit is contained in:
hayu 2024-12-12 23:01:06 +08:00
parent 211e864671
commit 2a509f1214
2 changed files with 19 additions and 152 deletions

View File

@ -12,8 +12,8 @@
<!-- <script async src="https://api.map.baidu.com/api?v=2.0&ak=cClgLBaLgGUdQDilX9dGvieL"></script>-->
<!-- <script src="https://api.map.baidu.com/api?type=webgl&v=2.0&ak=cClgLBaLgGUdQDilX9dGvieL"></script>-->
<!-- <script type="text/javascript" src="https://api.map.baidu.com/library/TrackAnimation/src/TrackAnimation_min.js"></script>-->
<script async src="http://10.1.0.142:2000/api.map.baidu.com/api?v=2.0&ak=cClgLBaLgGUdQDilX9dGvieL"></script>
<script src="http://10.1.0.142:2000/api.map.baidu.com/getscript?v=2.0&ak=cClgLBaLgGUdQDilX9dGvieL"></script>
<!-- <script async src="http://10.1.0.142:2000/api.map.baidu.com/api?v=2.0&ak=cClgLBaLgGUdQDilX9dGvieL"></script>-->
<!-- <script src="http://10.1.0.142:2000/api.map.baidu.com/getscript?v=2.0&ak=cClgLBaLgGUdQDilX9dGvieL"></script>-->
<!-- http://192.168.1.100/api.map.baidu.com/getscript?v=2.0&ak=你的key&services=&t=20170104214439-->
<!-- <script src="http://10.1.0.142:2000/mybaidu/api?type=webgl&v=2.0&ak=cClgLBaLgGUdQDilX9dGvieL"></script>-->
<!-- <script type="text/javascript" src="http://10.1.0.142:2000/mybaidu/library/TrackAnimation/src/TrackAnimation_min.js"></script>-->

View File

@ -105,36 +105,6 @@
<!-- 添加或修改部门对话框 -->
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
<!-- 内层对话框 选择地图 -->
<el-dialog
width="70%"
title="选择地图"
:visible.sync="innerVisible"
v-if="innerVisible"
append-to-body
>
<el-row class="search-container">
<el-input
clearable
placeholder="请输入地址"
v-model="searchAddress"
@keyup.enter.native="onSearchAddress"
/>
<el-button
type="primary"
style="width: 120px"
@click="onSearchAddress"
>搜索</el-button
>
</el-row>
<div
id="map-container"
style="height: 550px; background-color: #bfc"
>
</div>
</el-dialog>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-row>
<el-col :span="24" v-if="form.parentId !== 0">
@ -222,23 +192,8 @@
</el-row>
<el-row>
<el-col :span="24">
<el-form-item>
<el-button type="primary" @click="handleProjectAddress"
>选择位置</el-button>
</el-form-item>
<el-form-item label="经度" prop="lon">
<el-input disabled v-model="form.lon" />
</el-form-item>
<el-form-item label="纬度" prop="lat">
<el-input disabled v-model="form.lat" />
</el-form-item>
<el-form-item label="位置" prop="address">
<el-input
v-model="form.address"
disabled
style="width: 60%"
/>
<el-input v-model="form.address" placeholder="请输入位置" maxlength="50"/>
</el-form-item>
</el-col>
</el-row>
@ -289,9 +244,6 @@ export default {
components: { Treeselect },
data() {
return {
innerVisible: false,
map: null,
searchAddress: '',
//
loading: true,
//
@ -318,11 +270,7 @@ export default {
isDepartmentList:[{id:'0',name:'否'},{id:'1',name:'是'}],
provinceList:["北京","上海","天津","重庆","河北","山西","内蒙古","辽宁","吉林","黑龙江","江苏","浙江","安徽","福建","江西","山东","河南","湖北","湖南","广东","广西","海南","四川","贵州","云南","西藏","陕西","甘肃","宁夏","青海","新疆","香港","澳门","台湾"],
//
form: {
lon: '',
lat: '',
address: '',
},
form: {},
//
rules: {
parentId: [
@ -452,12 +400,12 @@ export default {
this.reset();
getDept(row.id).then(response => {
this.form = response.data;
if(!this.form.parentId){
this.form.parentId=0
if (!this.form.parentId) {
this.form.parentId = 0
}
if(this.form.orgHeadUserId!=null){
if (this.form.orgHeadUserId != null) {
let arr = this.form.orgHeadUserId.split(',')
this.$set(this.form,"orgHeadUserIdList",arr)
this.$set(this.form, "orgHeadUserIdList", arr)
}
this.open = true;
this.title = "修改部门";
@ -467,10 +415,10 @@ export default {
});
},
/** 提交按钮 */
submitForm: function() {
submitForm: function () {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.orgHeadUserId=this.form.orgHeadUserIdList.join(',')
this.form.orgHeadUserId = this.form.orgHeadUserIdList.join(',')
if (this.form.id != undefined) {
updateDept(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
@ -489,17 +437,22 @@ export default {
},
/** 删除按钮操作 */
handleDelete(row) {
this.$modal.confirm('是否确认删除名称为"' + row.orgName + '"的数据项?').then(function() {
this.$modal.confirm('是否确认删除名称为"' + row.orgName + '"的数据项?').then(function () {
return delDept(row.id);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
}).catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
exportOrg(this.queryParams).then(res => {
downloadFile({ fileName: `组织架构_${new Date().getTime()}.xlsx`, fileData: res, fileType: 'application/vnd.ms-excel;charset=utf-8' })
downloadFile({
fileName: `组织架构_${new Date().getTime()}.xlsx`,
fileData: res,
fileType: 'application/vnd.ms-excel;charset=utf-8'
})
})
},
/** 导入按钮操作 */
@ -528,93 +481,7 @@ export default {
//
submitFileForm() {
this.$refs.upload.submit();
},
/** 选择工程地址 */
handleProjectAddress() {
const this_ = this;
this.searchAddress = '';
this.innerVisible = true;
this.$nextTick(() => {
//线 new BMapGL
//线 new window.BMap
this_.map = new BMapGL.Map('map-container'); //
let point;
if (this_.form.lon != null && this_.form.lon !== '' && this_.form.lat != null && this_.form.lat !== '') {
console.log(this_.form.lat, this_.form.lon);
point = new BMapGL.Point(this_.form.lon, this_.form.lat);
let marker = new BMapGL.Marker(point); //
this_.map.addOverlay(marker);
} else {
point = new BMapGL.Point(117.13805, 31.8734); //
}
this_.map.centerAndZoom(point, 14); //
this_.map.enableScrollWheelZoom(true); //
this_.map.setMinZoom(14) //
this_.map.setMaxZoom(14) //
//
// this_.map.disableDragging(); //
this_.map.disableDoubleClickZoom(); //
this_.map.disablePinchToZoom(); //
this_.map.disableKeyboard(); //
var geoc = new BMapGL.Geocoder();
this_.map.addEventListener('click', function (e) {
var pt = e.latlng;
geoc.getLocation(pt, function (res) {
var addComp = res.addressComponents;
this_.form.address = `${addComp.province}${addComp.city}${addComp.district}${addComp.street}${addComp.streetNumber}`;
this_.form.lon = e.latlng.lng;
this_.form.lat = e.latlng.lat;
});
this_.map.clearOverlays();
point = new BMapGL.Point(e.latlng.lng, e.latlng.lat);
let marker = new BMapGL.Marker(point); //
this_.map.addOverlay(marker);
});
});
},
/* 搜索 */
onSearchAddress() {
//
const myGeo = new BMapGL.Geocoder()
const _this = this
myGeo.getPoint(
this.searchAddress,
function (point) {
if (point) {
_this.map.clearOverlays()
const {lng, lat} = point
_this.map.centerAndZoom(point, 16)
_this.map.addOverlay(
new BMapGL.Marker(point, {
title: _this.searchAddress,
}),
)
//
myGeo.getLocation(
new BMapGL.Point(lng, lat),
function (result) {
if (result) {
let addComp = result.addressComponents
_this.form.address = `${addComp.province}${addComp.city}${addComp.district}${addComp.street}${addComp.streetNumber}`
_this.form.lon = lng
_this.form.lat = lat
}
},
)
} else {
this.$message.error('您输入的地址有误,请重新输入')
}
},
'中国',
)
},
}
}
};
</script>