123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610 |
- <template>
- <view>
- <map :latitude="detailData.originLatitude" :longitude="detailData.originLongitude" :markers="covers" class="map"
- :polyline="polyline"></map>
- <cover-view v-if='show'>
- <view>确认行程已结束?</view>
- </cover-view>
- <view class='wrap'>
- <view class="c-row">
- <view class="title">车牌号</view>
- <view class="con-list">
- <input :disabled='titleBtn=="申请报销"' v-model='detailData.carNo' placeholder="请输入车牌号" maxlength="7"></input>
- </view>
- </view>
- <view @click='startTrack' class="button" v-if='titleBtn=="开始轨迹"'>{{titleBtn}}</view>
- <view @click='endTrack' class="button1" v-if='titleBtn=="结束轨迹"'>{{titleBtn}}</view>
- <view @click='reimbursement' class="button2" v-if='titleBtn=="申请报销"'>{{titleBtn}}</view>
- </view>
- <u-toast ref="uToast" />
- <!-- <u-modal v-model="show" @confirm='submit' content="确认行程已结束?" :show-cancel-button='true' ></u-modal> -->
- </view>
- </template>
- <script>
- var that
- export default {
- data() {
- return {
- fillingId: '',
- polyline: [{ //指定一系列坐标点,从数组第一项连线至最后一项
- points: [],
- color: "#0000AA", //线的颜色
- width: 1, //线的宽度
- // dottedLine:true,//是否虚线
- }],
- carNo:'',
- show:false,
- detailData: {
- carNo: '',
- travelStatus: '',
- originProvince: '',
- originCity: '',
- originArea: '',
- originLongitude: '',
- originLatitude: '',
- destinationProvince: '',
- destinationCity: '',
- destinationArea: '',
- destinationLongitude: '',
- destinationLatitude: '',
- trackFlag: '',
- compId: '',
- commonId: '',
- driverName: '',
- fillingNo: '',
- strokeType: '1',
- },
- covers: [],
- titleBtn: "开始轨迹",
- }
- },
- created() {
- // #ifdef APP-PLUS
- const subNVue = uni.getSubNVueById('popview') //'popview'就是你在
- subNVue.hide('none', 100);
-
- uni.$on('page-popup-submit', (data) => {
- console.log(data)
- subNVue.hide('none', 100);
-
- this.submit()
- })
- uni.$on('page-popup-close', (data) => {
- console.log(data)
- subNVue.hide('none', 100);
- })
- // #endif
- },
- destroyed() {
- // 移除监听事件
- uni.$off("page-popup-submit")
- },
- onLoad(options) {
-
- this.id = options.id
- that = this
- },
- onShow() {
- var that = this
- if (this.id) {
- console.log(1111111)
- this.seeInfo()
- } else {
- // #ifdef APP-PLUS
- this.getLngLat('开始轨迹');
- // #endif
- }
- },
- methods: {
- getLngLat(type) {
- this.checkOpenGPSServiceByAndroidIOS()
- var that = this
- uni.showLoading({
- title: '获取定位中',
- mask: true
- })
- var num=0
- uni.getLocation({
- type: 'gcj02',
- geocode: true,
- success: res => {
- if (res.latitude) {
- console.log("定位信息", res)
- if (type == '开始轨迹' || type == '已开始') {
- that.detailData.originLongitude = res.longitude;
- that.detailData.originLatitude = res.latitude;
- that.detailData.originProvince = res.address.province;
- that.detailData.originCity = that.$helper.filterUrban(res.address.city)
- that.detailData.originArea = that.$helper.filterUrban(res.address.district)
- that.detailData.originAddress = res.address.street + res.address.streetNum
- } else if (type == '结束轨迹') {
- // console.log("res",res)
- that.detailData.carNo=that.carNo
- that.detailData.destinationLongitude = res.longitude;
- that.detailData.destinationLatitude = res.latitude;
- that.detailData.destinationProvince = res.address.province;
- that.detailData.destinationCity = that.$helper.filterUrban(res.address.city)
- that.detailData.destinationArea = that.$helper.filterUrban(res.address
- .district)
- that.detailData.destinationAddress = res.address.street + res.address.streetNum
- that.detailData.trackFlag = "1"
- num++
- console.log("asddfadsad",that.detailData,num)
- if (!that.detailData.destinationAddress) {
- uni.showToast({
- title: "未获取结束位置,请开启定位在试!",
- icon: "none"
- })
- return
- }
- that.$api.doRequest('post', '/fillingDetailInfo/api/addFillingDetail', that.detailData)
- .then(res1 => {
- if (res1.data.code == 200) {
- }
- })
- .catch(res => {
- uni.$u.toast(res.message);
- });
- that.$api.doRequest('post', '/fuelFillingInfo/api/addFilling', that.detailData)
- .then(res1 => {
- if (res1.data.code == 200) {
- this.titleBtn = "申请报销"
- }
- })
- .catch(res => {
- uni.$u.toast(res.message);
- });
- }
- this.covers = [{
- id: 0,
- latitude: res.latitude,
- longitude: res.longitude,
- iconPath: '../../../static/img/location.png',
- }]
- that.$forceUpdate()
- uni.hideLoading()
- } else {
- if (uni.getSystemInfoSync().platform == 'android') {
- var context = plus.android.importClass("android.content.Context");
- var locationManager = plus.android.importClass(
- "android.location.LocationManager");
- var main = plus.android.runtimeMainActivity();
- var mainSvr = main.getSystemService(context.LOCATION_SERVICE);
- that.bool = mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)
- }
- if (that.bool === false) {
- uni.showModal({
- title: '提示',
- content: '请打开定位服务',
- success: ({
- confirm,
- cancel
- }) => {
- if (confirm) {
- if (uni.getSystemInfoSync().platform == 'android') {
- var Intent = plus.android.importClass(
- 'android.content.Intent');
- var Settings = plus.android.importClass(
- 'android.provider.Settings');
- var intent = new Intent(Settings
- .ACTION_LOCATION_SOURCE_SETTINGS);
- var main = plus.android.runtimeMainActivity();
- main.startActivity(intent); // 打开系统设置GPS服务页面
- }
- }
- }
- });
- uni.hideLoading()
- }
- }
- },
- fail: res => {
- console.log('定位失败')
- console.log(res)
- uni.hideLoading()
- }
- });
- },
- checkOpenGPSServiceByAndroidIOS() {
- let system = uni.getSystemInfoSync(); // 获取系统信息
- if (system.platform === 'android') { // 判断平台
- var context = plus.android.importClass("android.content.Context");
- var locationManager = plus.android.importClass("android.location.LocationManager");
- var main = plus.android.runtimeMainActivity();
- var mainSvr = main.getSystemService(context.LOCATION_SERVICE);
- if (!mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)) {
- uni.showModal({
- title: '提示',
- content: '请打开定位服务功能',
- // showCancel: false, // 不显示取消按钮
- success(res) {
- if (res.confirm) {
- if (!mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)) {
- var Intent = plus.android.importClass('android.content.Intent');
- var Settings = plus.android.importClass('android.provider.Settings');
- var intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
- main.startActivity(intent); // 打开系统设置GPS服务页面
- }
- }
- }
- });
- }
- } else if (system.platform === 'ios') {
- // console.log("苹果");
- var cllocationManger = plus.ios.import("CLLocationManager");
- var enable = cllocationManger.locationServicesEnabled();
- var status = cllocationManger.authorizationStatus();
- plus.ios.deleteObject(cllocationManger);
- if (enable && status != 2) {
- console.log("手机系统的定位已经打开");
- } else {
- console.log("手机系统的定位没有打开");
- uni.showModal({
- title: '提示',
- content: '请前往设置-隐私-定位服务打开定位服务功能',
- // showCancel: false, // 不显示取消按钮
- success(res) {
- if (res.confirm) {
- var UIApplication = plus.ios.import("UIApplication");
- var application2 = UIApplication.sharedApplication();
- var NSURL2 = plus.ios.import("NSURL");
- // var setting2 = NSURL2.URLWithString("prefs:root=LOCATION_SERVICES");
- // var setting2 = NSURL2.URLWithString("App-Prefs:root=LOCATION_SERVICES");
- // var setting2 = NSURL2.URLWithString("app-settings");
- var setting2 = NSURL2.URLWithString("App-Prefs:root=Privacy&path=LOCATION");
- // var setting2 = NSURL2.URLWithString("App-Prefs:root=Privacy&path=LOCATION_SERVICES");
- application2.openURL(setting2);
- plus.ios.deleteObject(setting2);
- plus.ios.deleteObject(NSURL2);
- plus.ios.deleteObject(application2);
- }
- }
- });
- }
- }
- },
- seeInfo() {
- this.$api.doRequest('get', '/fuelFillingInfo/getFilling', {
- id: this.id
- }).then(res => {
- console.log(222222,res.data,this.id)
- if (res.data.code == 200) {
- this.detailData = res.data.data
- console.log(this.detailData,111111)
- if (this.detailData.travelStatus == "已开始") {
- this.titleBtn = "结束轨迹"
- } else if (this.detailData.travelStatus == "已结束") {
- this.titleBtn = "申请报销"
- }
- // #ifdef APP-PLUS
- this.getLngLat(this.detailData.travelStatus);
- // #endif
- }
- })
- },
- async seeInfo1() {
- await this.$api.doRequest('get', '/fuelFillingInfo/getFilling', {
- id: this.id
- }).then(res => {
- if (res.data.code == 200) {
- this.detailData = res.data.data
- }
- })
- },
- // 申请报销
- reimbursement() {
- uni.navigateTo({
- url: '/pages/fuelfilling/apply_for_reimbursement?id=' + this.id
- })
- },
- // 结束轨迹
- endTrack() {
- this.carNo=this.detailData.carNo
- // #ifdef APP-PLUS
- const subNVue = uni.getSubNVueById('popview') //'popview'就是你在
- subNVue.show('zoom-fade-out', 300, function(){ });
- // #endif
- },
- submit(){
- if (that.$helper.fUN_AmapLocation) {
- that.$helper.fUN_AmapLocation.stop({}, result => {
- console.log('====fUN_AmapLocation定位stop====', JSON.stringify(result));
- // 更新轨迹结束地点
- // 更新结束地点位置
- this.seeInfo1()
- this.getLngLat('结束轨迹')
- });
- }
- },
- //开始轨迹
- startTrack() {
- var that=this
- if (!this.detailData.carNo) {
- uni.showToast({
- title: "车牌号不能为空!",
- icon: "none"
- })
- return
- }
- if (!this.detailData.originAddress) {
- uni.showToast({
- title: "未获取起始位置,请开启定位在试!",
- icon: "none"
- })
- return
- }
- uni.showLoading({
- title:'加载中',
- mask:true
- })
- that.detailData.compId = uni.getStorageSync('pcUserInfo').compId
- that.detailData.commonId = uni.getStorageSync('pcUserInfo').userId
- that.detailData.driverName = uni.getStorageSync('userInfo').userName
- that.detailData.trackFlag = "0"
- console.log(that.detailData)
- that.$api.doRequest('post', '/fuelFillingInfo/api/addFilling', that.detailData).then(res1 => {
- console.log(res1.data)
- if (res1.data.code == 200) {
- that.$helper.fUN_AmapLocation.start({
- intervalTime: 5000,
- isReport: false
- },
- res => {
- this.covers = [{
- id: 0,
- latitude: res.latitude,
- longitude: res.longitude,
- iconPath: '../../../static/img/location.png',
- }]
- this.id = res1.data.data
- this.seeInfo1()
- let _data = {
- fillingId: res1.data.data,
- longitude: res.longitude,
- latitude: res.latitude,
- province: res.province,
- city: res.city,
- area: res.district
- }
- // if (this.shippingNoteInfos && this.shippingNoteInfos.length > 0) { //更新持续定位经纬度
- // for (let i = 0; i < this.shippingNoteInfos.length; i++) {
- // this.shippingNoteInfos[i].startLatitude = _data.latitude //纬度
- // this.shippingNoteInfos[i].startLocationText = _data.city //起点
- // this.shippingNoteInfos[i].startLongitude = _data.longitude //经度
- // }
- // }
- this.$helper.gjList.push(_data)
- uni.setStorageSync('mapGJ', this.$helper.gjList);
- console.log('this.$helper.gjList')
- console.log(this.$helper.gjList)
- console.log("条数", uni.getStorageSync('mapGJ').length)
- if (uni.getStorageSync('mapGJ').length > 5) {
- //存储轨迹经纬度list
- that.$api.doRequest('post', '/trackDetailInfo/api/addTrackDetail', {
- fillingId: _data.fillingId,
- carNo: that.detailData.carNo,
- // trackDetailInfos: JSON.stringify(uni.getStorageSync('mapGJ'))
- trackDetailInfos: uni.getStorageSync('mapGJ')
- }).then(res => {
- that.polyline[0].points.push({
- latitude: _data.latitude,
- longitude: _data.longitude
- });
- console.log('上传经纬度list', res)
- uni.hideLoading()
- uni.removeStorageSync('mapGJ');
- this.$helper.gjList = []
- })
- .catch(res => {
- uni.showToast({
- icon: "none",
- title: res.message
- })
- });
- }
- }
- );
- uni.showToast({
- title: "轨迹持续监控中!",
- icon: "none",
- complete() {
- that.titleBtn = '结束轨迹'
- }
- })
- }
- })
- .catch(res => {
- uni.$u.toast(res.message);
- });
- // if (this.titleBtn == "开始轨迹") {
- // var that = this
- // uni.showModal({
- // content: "确定开始轨迹?",
- // showCancel: true,
- // confirmText: '确定',
- // success: function(res) {
- // if (res.confirm) {
- // that.detailData.compId = uni.getStorageSync('pcUserInfo').compId
- // that.detailData.commonId = uni.getStorageSync('pcUserInfo').userId
- // that.detailData.driverName = uni.getStorageSync('userInfo').userName
- // that.detailData.trackFlag = "0"
- // that.detailData.fillingNo = "202207040001"
- // that.detailData.originProvince = "辽宁省"
- // that.detailData.originCity = "营口市"
- // that.detailData.originArea = "鲅鱼圈区"
- // that.detailData.originLongitude = "122.21"
- // that.detailData.originLatitude = "40.664"
- // that.$api.doRequest('post', '/fuelFillingInfo/api/addFilling',
- // that.detailData
- // )
- // .then(res => {
- // that.id = res.data.data
- // if (res.data.code == 200) {
- // that.$api.msg('提交成功')
- // that.titleBtn = "结束轨迹"
- // } else {
- // that.$api.msg('提交失败')
- // }
- // })
- // }
- // }
- // })
- // } else if (this.titleBtn == "结束轨迹") {
- // var that = this
- // uni.showModal({
- // content: "确定结束轨迹?",
- // showCancel: true,
- // confirmText: '确定',
- // success: function(res) {
- // if (res.confirm) {
- // that.detailData.compId = uni.getStorageSync('pcUserInfo').compId
- // that.detailData.commonId = uni.getStorageSync('pcUserInfo').userId
- // that.detailData.driverName = uni.getStorageSync('userInfo').userName
- // that.detailData.trackFlag = "1"
- // that.detailData.destinationProvince = "江苏省"
- // that.detailData.destinationCity = "宿迁市"
- // that.detailData.destinationArea = "宿城区"
- // that.detailData.destinationLongitude = "118.291"
- // that.detailData.destinationLatitude = "33.942"
- // that.$api.doRequest('post', '/fuelFillingInfo/api/addFilling',
- // that.detailData
- // )
- // .then(res => {
- // if (res.data.code == 200) {
- // that.$api.msg('提交成功')
- // that.titleBtn = "申请报销"
- // } else {
- // that.$api.msg('提交失败')
- // }
- // })
- // }
- // }
- // })
- // } else {
- // uni.navigateTo({
- // url: '/pages/fuelfilling/apply_for_reimbursement?id=' + this.id
- // })
- // }
- },
- }
- }
- </script>
- <style lang='scss' scoped>
- page {
- background: #F5F6FA;
- }
- .title_b {
- margin: 20rpx 20rpx 0rpx 20rpx;
- padding: 20rpx 10rpx 20rpx 10rpx;
- font-size: 18px;
- font-weight: 550;
- }
- .c-row {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- /* padding: 20rpx 30rpx;
- margin: 20rpx 0; */
- }
- .con-list {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- color: #303133;
- line-height: 40rpx;
- text-align: right;
- padding-right: 20rpx;
- }
- .wrap {
- background: #fff;
- padding: 40rpx 20rpx;
- box-sizing: border-box;
- height: 20vh;
- }
- .button {
- background: #22C572;
- width: 90%;
- margin: 40rpx auto 30rpx;
- padding: 10px;
- color: #fff;
- text-align: center;
- border-radius: 30px;
- }
- .button1 {
- background: #ff0000;
- width: 90%;
- margin: 40rpx auto 30rpx;
- padding: 10px;
- color: #fff;
- text-align: center;
- border-radius: 30px;
- }
- .button2 {
- background: #4089ff;
- width: 90%;
- margin: 40rpx auto 30rpx;
- padding: 10px;
- color: #fff;
- text-align: center;
- border-radius: 30px;
- }
- .buns_item {
- display: flex;
- padding: 80rpx 0 50rpx 0;
- justify-content: space-around;
- }
- .but_css {
- background: #22C572;
- width: 40%;
- padding: 20rpx;
- color: #fff;
- text-align: center;
- border-radius: 20rpx;
- }
- /deep/.u-radio-group {
- flex-direction: row-reverse;
- }
- .no-boder {
- border: 0;
- }
- .textarea {
- background: #F9F9FA;
- border: 1px solid #EEEEEE;
- }
- .map {
- width: 100vw;
- height: 80vh;
- }
- </style>
|