123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593 |
- <template>
- <view class="content">
- <view class="map">
- <map @updated='mapChange' ref='map_1' style="width:750rpx; height: 600rpx" :latitude="latitude"
- :longitude="longitude" :markers="marker"></map>
- </view>
- <view class="location">
- <view v-for="(item,index) in list" :key="item.id">
- <view class="location-item">
- <view class="box-left">
- <view class="img01">
- <image src="../../static/img/line01.png" mode=""></image>
- </view>
- <view class="img02" v-if="item.info !=null">
- <image src="../../static/img/002.png" mode=""></image>
- </view>
- <view class="img02" v-else>
- <image src="../../static/img/002.png" mode=""></image>
- </view>
- <view class="info">
- <view class="info-header">
- <view class="name">
- 救护员{{ index +1 }}
- </view>
- <view class="distance">
- {{item.range >= 1 ?(item.range + 'km'):(item.distance + 'm')}}
- </view>
- <view class="location-icon">
- <image src="../../static/img/location-icon.png" mode=""></image>
- </view>
- </view>
- <view class="address">
- {{ item.address }}
- </view>
- </view>
- </view>
- <view class="box-right">
- <view class="img" v-if="item.is_create == 0" @click="rescue(item,index)">
- <image src="../../static/img/rescue.png" mode=""></image>
- </view>
- <view class="called" v-else>
- 已呼叫
- </view>
- </view>
- </view>
- </view>
- <uni-load-more :status="loadingType" v-if="list.length != 0"></uni-load-more>
- <!-- <empty v-if="list.length === 0 && loaded"></empty> -->
- <espempty v-if="list.length === 0 && loaded"></espempty>
- </view>
- <uni-popup ref="popup" type="center" @click="close">
- <view class="popup_row">
- <view class="title">
- <view class="title-left">
- 请输入您的手机号,等待救援!
- </view>
- <view class="cancel" @click="cancel">
- <image src="../../static/img/cancel1.png" mode=""></image>
- </view>
- </view>
- <view class="inpBox">
- <input type="text" value="" placeholder="请输入您的手机号" v-model="to_phone" />
- </view>
- <view class="inpedit">
- 可在方框中修改您的手机号
- </view>
- <view class="comfirm">
- <view class="comfirm1" @click="comfirm1()">
- 确认
- </view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex';
- import espempty from '@/components/espempty';
- import uniPopup from '@/components/uni-popup/uni-popup.vue';
- import {
- getdis,
- tocall
- } from '@/api/index.js';
- import {
- userinfo
- } from '@/api/user.js';
- import {
- getcomAddress
- } from '@/api/index.js';
- import {
- getMechanismList,
- applyRescuer,
- getRescuerList,
- getApplyList,
- sos,
- geocoder
- } from '@/api/category.js'
- export default {
- components: {
- uniPopup,
- espempty,
- },
- //相关配置参数
- data() {
- return {
- user_id: '',
- rescuers_id: 0,
- loadingType: 'more',
- loaded: false,
- page: 1,
- limit: 100,
- list: [],
- latitude: '',
- longitude: '',
- current: 0,
- name: '',
- uid: '',
- name: '',
- phone: '',
- to_phone: '',
- marker: [],
- specificAdd: '',
- user_address: '', //用户地址逆解析
- addressData: {
- name: '',
- mobile: '',
- latitude: 0, //纬度
- longitude: 0, //经度
- address: {
- province: '',
- city: '',
- district: '',
- detail: '',
- },
- area: '',
- default: false
- },
- }
- },
- onLoad() {
- let obj = this;
- obj.getLocal()
- console.log('开始加载事件');
- obj.loadBaseData();
- },
- computed: {
- ...mapState('user', ['hasLogin', 'userInfo'])
- },
- methods: {
- ...mapMutations('user', ['setUserInfo']),
- // 获取本地坐标
- getLocal() {
- let obj = this;
-
- let weichatBrowser = uni.getStorageSync('weichatBrowser')
- if(weichatBrowser) {
- let wxOjb = require('jweixin-module');
- wxOjb.ready(() => {
- console.log('加载完毕注册事件');
- wxOjb.getLocation({
- type: 'gcj02',
- success(e) {
- console.log(e)
- obj.latitude = Math.abs(e.latitude)
- obj.longitude = Math.abs(e.longitude)
- console.log('本地坐标', obj.latitude, obj.longitude)
- geocoder({
- latitude: obj.latitude,
- longitude: obj.longitude
- }).then(res => {
- console.log(res)
- obj.user_address = res.data.result.address
- console.log(obj.user_address, 'obj.user_address')
- })
- let item = {
- id: 0,
- latitude: obj.latitude,
- longitude: obj.longitude,
- iconPath: '',
- width: '35',
- height: '35',
- }
- obj.marker.push(item)
- obj.getRescuerList(obj.latitude, obj.longitude)
- },
- fail(err) {
- obj.getLocal()
- }
- })
- })
- }else {
- uni.getLocation({
- type: 'gcj02',
- success(e) {
- console.log(e)
- obj.latitude = Math.abs(e.latitude)
- obj.longitude = Math.abs(e.longitude)
- console.log('本地坐标', obj.latitude, obj.longitude)
- geocoder({
- latitude: obj.latitude,
- longitude: obj.longitude
- }).then(res => {
- console.log(res)
- obj.user_address = res.data.result.address
- console.log(obj.user_address, 'obj.user_address')
- })
- let item = {
- id: 0,
- latitude: obj.latitude,
- longitude: obj.longitude,
- iconPath: '../../static/img/jiuyuan.png',
- width: '35',
- height: '35',
- }
- obj.marker.push(item)
- obj.getRescuerList(obj.latitude, obj.longitude)
- },
- fail(err) {
- obj.getLocal()
- }
- })
- }
-
-
- },
- // 获取救援者列表
- getRescuerList(lat, lon) {
- let obj = this
- if (obj.loadingType == 'loading' || obj.loadingType == 'noMore') {
- return
- }
- obj.loadingType = 'loading'
- getRescuerList({
- page: obj.page,
- limit: obj.limit,
- latitude: lat,
- longitude: lon,
- }).then(res => {
- // this.peoplelist = res.data
- let arr = []
- res.data.forEach(item => {
- let pro = {
- id: item.id * 1,
- latitude: item.latitude,
- longitude: item.longitude,
- iconPath: '/static/img/img014.png',
- width: '35',
- height: '35',
- }
- arr.push(pro)
- })
- obj.list = obj.list.concat(res.data)
- obj.marker = obj.marker.concat(arr)
- if (res.data.length == obj.limit) {
- obj.loadingType = 'more'
- } else {
- obj.loadingType = 'noMore'
- }
- obj.$set(obj, 'loaded', true)
- })
- },
- loadBaseData() {
- userinfo({}).then(({
- data
- }) => {
- console.log(123, data)
- this.to_phone = data.mobile
- this.setUserInfo(data);
- });
- },
- // 地图渲染完毕事件
- mapChange(e) {
- console.log(e);
- },
- cancel() {
- this.$refs.popup.close();
- },
- comfirm1: function() {
- let obj = this
- if (obj.to_phone.toString().trim() == '') {
- return obj.$api.msg('请输入手机号码')
- } else {
- console.log('obj.to_phone1111', obj.to_phone)
- const reg = /^(\+?0?86-?)?1[\d]\d{9}$/;
- if (!reg.test(obj.to_phone)) {
- obj.$api.msg('请填写正确的手机号码');
- return;
- }
- sos({
- mobile: obj.to_phone,
- address: obj.user_address,
- latitude: obj.latitude,
- longitude: obj.longitude,
- rescuers_id: obj.rescuers_id,
- rescuers_user_id: obj.user_id,
- re_url: obj.$store.state.baseURL + '/index/#/pages/applic/rescuerecords',
- }).then(res => {
- uni.showModal({
- title: '请耐心等待救援',
- success: res => {
- if (res.confirm) {
- window.location.reload(); //重新刷新页面
- }
- }
- })
- obj.$refs.popup.close();
- })
- }
- },
- // 立即救援
- rescue(item, index) {
- let obj = this;
- console.log(item, 'jiuzhu item')
- uni.showModal({
- content: '是否发起求救?',
- success: res => {
- if (res.confirm) {
- this.$refs.popup.open(item, index);
- obj.rescuers_id = item.id
- obj.user_id = item.user_id
- }
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- body,
- page {
- height: 100%;
- width: 100%;
- background-color: #fff;
- }
- .content {
- height: 100%;
- width: 100%;
- background-color: #fff;
- }
- .map {
- width: 100%;
- height: 600rpx;
- }
- /* #ifdef H5 */
- .location {
- overflow-y: scroll; //溢出就滑动起来
- // z-index: 990;
- position: fixed;
- bottom: 0;
- height: 55%;
- width: 100%;
- background-color: #fff;
- padding: 24rpx;
- //搜索框
- .Search-box {
- // z-index: 999;
- height: 80rpx;
- // position: fixed;
- // top: 0;
- // left: 0;
- // width: 100%;
- // background: #FFFFFF;
- // padding-top: 10rpx;
- padding-right: 24rpx;
- padding-left: 24rpx;
- .Search-box-sort {
- float: left;
- margin-left: 32rpx;
- margin-right: 19rpx;
- .sort-text {
- width: 57rpx;
- height: 29rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: rgba(51, 51, 51, 1);
- line-height: 58rpx;
- margin-right: 19rpx;
- }
- .sort-img {
- width: 21rpx;
- height: 11rpx;
- margin-bottom: 4rpx;
- }
- }
- .Search-box-size {
- // width:70%;
- height: 58rpx;
- border-radius: 32rpx;
- background-color: #f1f1f1;
- padding-left: 36rpx;
- display: flex;
- align-items: center;
- .box-img {
- height: 32rpx;
- width: 32rpx;
- margin-right: 16rpx;
- }
- // .box-right{
- // height: 58rpx;
- // // width: 100%;
- // background-color: pink;
- // }
- .box-word {
- width: 100%;
- font-size: 26rpx;
- font-weight: 500;
- color: rgba(205, 203, 203, 1);
- line-height: 55rpx;
- }
- }
- }
- .location-item {
- z-index: 1000;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #E7E8EA;
- padding: 15rpx 0;
- .box-left {
- display: flex;
- .img01 {
- width: 8rpx;
- height: 28rpx;
- margin-right: 18rpx;
- image {
- width: 8rpx;
- height: 28rpx;
- }
- }
- .img02 {
- width: 117rpx;
- height: 117rpx;
- border-radius: 50%;
- image {
- width: 117rpx;
- height: 117rpx;
- border-radius: 50%;
- }
- }
- .info {
- margin-left: 16rpx;
- .info-header {
- display: flex;
- align-items: center;
- .name {
- font-size: 32rpx;
- color: #333333;
- }
- .distance {
- margin-left: 25rpx;
- font-size: 28rpx;
- color: #303133;
- }
- .location-icon {
- margin-left: 10rpx;
- width: 20rpx;
- height: 26rpx;
- image {
- width: 20rpx;
- height: 26rpx;
- display: inline;
- }
- }
- }
- .address {
- font-size: 26rpx;
- color: #333333;
- margin-top: 33rpx;
- }
- }
- }
- .box-right {
- flex-shrink: 0;
- .img {
- height: 107rpx;
- image {
- width: 107rpx;
- height: 107rpx;
- }
- }
- .called {
- margin-right: 16rpx;
- height: 107rpx;
- line-height: 107rpx;
- font-size: 28rpx;
- color: #CB131C;
- }
- }
- }
- }
- .popup_row {
- // margin-top: 108rpx;
- height: 440rpx;
- border-radius: 25rpx;
- width: 100%;
- padding: 24rpx;
- background-color: #f8f8f8;
- z-index: 999;
- .title {
- border-bottom: 2rpx solid #F2F2F2;
- color: #E63931;
- font-size: 32rpx;
- padding-left: 4rpx;
- padding-bottom: 16rpx;
- display: flex;
- justify-content: space-between;
- // align-items: center;
- .cancel {
- margin-left: 52rpx;
- width: 36rpx;
- height: 36rpx;
- image {
- width: 36rpx;
- height: 36rpx;
- }
- }
- }
- .inpBox {
- margin-top: 52rpx;
- border: 2px solid #f2f2f2;
- padding: 12rpx 24rpx;
- color: #FF9797;
- border-radius: 8rpx;
- .input-placeholder {
- // height: 70rpx;
- font-size: 32rpx;
- color: #FF9797;
- }
- }
- .inpedit {
- margin-top: 24rpx;
- margin-left: 14rpx;
- font-size: 28rpx;
- color: #FF9797;
- }
- .comfirm {
- display: flex;
- justify-content: flex-end;
- margin-top: 54rpx;
- .comfirm1 {
- padding: 12rpx 24rpx;
- border-radius: 12rpx;
- color: #FFFFFF;
- background-color: #E63931;
- }
- }
- }
- /* #endif */
- </style>
|