deviceLocal.vue 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130
  1. <template>
  2. <view class="container">
  3. <map
  4. id="myMap"
  5. :longitude="longitude"
  6. :latitude="latitude"
  7. :scale="scale"
  8. :markers="marker"
  9. :polyline="polylines"
  10. :circles="circles"
  11. @markertap="bindMarkertap"
  12. show-location
  13. enable-3D
  14. show-compass
  15. enable-overlooking
  16. :enable-satellite="mapParams.enableSatellite"
  17. :enable-traffic="mapParams.enableTraffic"
  18. style="width: 100%; height: 100vh"
  19. @tap="bindTapMap"
  20. ></map>
  21. <map-control :mapParams="mapParams" @changeParams="mapChange"></map-control>
  22. <view v-if="showInfo" class="battery-group">
  23. <view class="battery-item">
  24. <view class="map-top">
  25. <view class="map-cross">
  26. <view class="map-top-box">
  27. <view class="map-top-text">GPS</view>
  28. <view :class="gps > 0 ? 'map-top-i' : 'map-top-n'" />
  29. <view :class="gps > 1 ? 'map-top-i' : 'map-top-n'" />
  30. <view :class="gps > 2 ? 'map-top-i' : 'map-top-n'" />
  31. <view :class="gps > 3 ? 'map-top-i' : 'map-top-n'" />
  32. <view :class="gps > 4 ? 'map-top-i' : 'map-top-n'" />
  33. </view>
  34. <view class="map-top-box gsm-view">
  35. <view class="map-top-text">GSM</view>
  36. <view :class="gsm > 0 ? 'map-top-i' : 'map-top-n'" />
  37. <view :class="gsm > 1 ? 'map-top-i' : 'map-top-n'" />
  38. <view :class="gsm > 2 ? 'map-top-i' : 'map-top-n'" />
  39. <view :class="gsm > 3 ? 'map-top-i' : 'map-top-n'" />
  40. <view :class="gsm > 4 ? 'map-top-i' : 'map-top-n'" />
  41. </view>
  42. </view>
  43. <view class="map-top-box-1">
  44. <view class="map-top-text-1">{{ deviceInfo.quantity }}%</view>
  45. <image src="/static/resource/images/battery.png" class="bottom-img"></image>
  46. </view>
  47. <view v-if="deviceInfo.quantity >= 20" :style="'width: ' + batteryWidth + 'rpx;right:' + (71 + (37 - batteryWidth)) + 'rpx'" class="battery_num_view"></view>
  48. <view v-if="deviceInfo.quantity < 20" :style="'width: ' + batteryWidth + 'rpx;right:' + (71 + (37 - batteryWidth)) + 'rpx'" class="battery_num_view_red"></view>
  49. </view>
  50. <view class="batter-info-group">
  51. <view class="battery-desc flex-row flex-between">
  52. <view>名称:{{ deviceInfo.name }}</view>
  53. <view>状态:{{ status }}</view>
  54. </view>
  55. <view class="battery-desc flex-row flex-between">
  56. <view>编号:{{ macid }}</view>
  57. <view>设防状态:{{ deviceInfo.protectState ? (deviceInfo.protectState == 1 ? '设防' : '撤防') : '未知' }}</view>
  58. </view>
  59. <view class="battery-desc flex-row flex-between">
  60. <view>控制:{{ deviceInfo.oilState == 1 ? '已通电' : '已断电' }}</view>
  61. <view>定位类型:{{ deviceInfo.signalType == 0 ? 'GPS+北斗' : deviceInfo.signalType == 1 ? 'WIFI' : deviceInfo.signalType == 16 ? 'LBS' : '未知' }}</view>
  62. </view>
  63. <view class="battery-desc flex-row flex-between">
  64. <view>当日里程:{{ deviceInfo.day_mil }}</view>
  65. <view>总里程:{{ deviceInfo.mil }}</view>
  66. </view>
  67. <view class="battery-desc flex-row flex-between">
  68. <view>
  69. 电压:{{
  70. (deviceInfo.voltage ? deviceInfo.voltage + 'V' : '未知') +
  71. (deviceInfo.elecState ? (deviceInfo.elecState == 1 ? '(主电接通)' : '(主电断开)') : '')
  72. }}
  73. </view>
  74. <view v-if="deviceInfo && deviceInfo.temp && deviceInfo.temp != ''">温度: {{ deviceInfo.temp + '℃' }}</view>
  75. </view>
  76. <view class="battery-desc">通信:{{ deviceInfo.heart_time ? tools.formatTime(deviceInfo.heart_time) : '未知' }}</view>
  77. <view class="battery-desc">定位:{{ deviceInfo.gps_time ? tools.formatTime(deviceInfo.gps_time) : '未知' }}</view>
  78. <view v-if="address != ''" class="battery-desc">地址:{{ address }}</view>
  79. <!-- <view wx:if="{{ address != '' }}" class="battery-desc">GPS最近地址:{{ address }}</view> -->
  80. </view>
  81. </view>
  82. </view>
  83. <view class="bottom-view">
  84. <view class="bottom-center">
  85. <image :src="trace ? '/static/resource/images/zhuizong.png' : '/static/resource/images/zhuizong1.png'" class="bottom-img"></image>
  86. </view>
  87. <view class="bottom-centent">
  88. <view class="bottom-item" @tap="bindTrackDialogOpen">
  89. <image :src="trackPoints.length == 0 ? '/static/resource/images/guiji2.png' : '/static/resource/images/guiji1.png'" class="bottom-img"></image>
  90. <view class="bottom-text">轨迹</view>
  91. </view>
  92. <view class="bottom-item" @tap="bindAlarmPopupOpen">
  93. <image :src="alarmList.length == 0 ? '/static/resource/images/tongzhi.png' : '/static/resource/images/tongzhi1.png'" class="bottom-img"></image>
  94. <view class="bottom-text">报警</view>
  95. </view>
  96. <!--<view class="bottom-item" bindtap="bindTrace">
  97. <image class="bottom-img"></image>
  98. <view class="bottom-text">追踪</view>
  99. </view>-->
  100. <view class="bottom-item" @tap="bindNavigate">
  101. <image class="bottom-img"></image>
  102. <view class="bottom-text">导航</view>
  103. </view>
  104. <view class="bottom-item" @tap="bindSendCommand" data-cmd="CLOSERELAY">
  105. <image src="/static/resource/images/duandian1.png" class="bottom-img"></image>
  106. <view class="bottom-text">断电</view>
  107. </view>
  108. <view class="bottom-item" @tap="bindSendCommand" data-cmd="OPENRELAY">
  109. <image src="/static/resource/images/tongdian1.png" class="bottom-img"></image>
  110. <view class="bottom-text">通电</view>
  111. </view>
  112. </view>
  113. <image v-if="trackPoints.length != 0" :src="inPlay ? '/static/resource/images/zhanting.png' : '/static/resource/images/bofang.png'" class="play-img" @tap="bindPlay"></image>
  114. <image v-if="trackPoints.length != 0" src="/static/resource/images/tingliu.png" class="stop-img" @tap="bindStopPopupOpen"></image>
  115. <view v-if="trackStopList.length != 0" class="stop-img" @tap="bindStopPopupOpen">
  116. <view class="tip-top">{{ trackStopList.length }}</view>
  117. </view>
  118. <image v-if="trackPoints.length != 0" src="/static/resource/images/guanbi1.png" class="close-img" @tap="bindCloseTrack"></image>
  119. <view @tap="loadLastGpsInfo" class="gps_last">
  120. <view class="text_view">最新</view>
  121. <view class="text_view">GPS</view>
  122. </view>
  123. <image src="/static/resource/images/weilan2.png" class="fence-img" @tap="bindFencePopupOpen"></image>
  124. <view v-if="trace" class="trace-box">追踪时间:{{ tools.formatHourSeconds(traceTime) }}</view>
  125. <!--<van-grid>
  126. <van-grid-item text="轨迹" bind:click="bindTrackDialogOpen">
  127. <van-icon slot="icon" name="map-marked" color="#409EFF" />
  128. </van-grid-item>
  129. <van-grid-item text="报警" bind:click="bindAlarmPopupOpen">
  130. <van-icon slot="icon" name="bell" color="#F56C6C" info="{{ alarmList.length }}"/>
  131. </van-grid-item>
  132. <van-grid-item wx:if="{{trackPoints.length!=0}}" text="播放" bind:click="bindPlay">
  133. <van-icon wx:if="{{!inPlay}}" slot="icon" name="play" color="#67C23A" />
  134. <van-icon wx:if="{{inPlay}}" slot="icon" name="pause" color="#67C23A" />
  135. </van-grid-item>
  136. <van-grid-item wx:if="{{trackPoints.length!=0}}" text="停留" bind:click="bindStopPopupOpen">
  137. <van-icon slot="icon" name="location" color="#E6A23C" info="{{ trackStopList.length }}"/>
  138. </van-grid-item>
  139. </van-grid>-->
  140. </view>
  141. <view class="left-group">
  142. <view class="left-group-i">
  143. <image class="btn-ctr" src="/static/resource/images/position.png" @tap="moveToLocation"></image>
  144. </view>
  145. </view>
  146. <view v-if="trackPoints.length != 0" class="track_bottom">
  147. <view class="track_total_time">
  148. 时间:{{ tools.formatTimeNoSecond(trackDialogFrom.startTime / 1000) }} 至 {{ tools.formatTimeNoSecond(trackDialogFrom.endTime / 1000) }} 共{{ mileage_total }}公里
  149. </view>
  150. <view class="track_slide flex-row flex-between">
  151. <slider @change="trackPlayChangeAdress" @changing="trackPlayChange" :value="nowPlayIndex" min="1" :max="totalTrackValue" style="width: 70%" />
  152. <view @tap="bindFastForward" class="flex-row fastForward">
  153. <image class="fastForward_img" src="/static/resource/images/fastForward.png"></image>
  154. <text v-if="adjustSpeed == 0" class="fastForward_text">慢</text>
  155. <text v-if="adjustSpeed == 1" class="fastForward_text">中</text>
  156. <text v-if="adjustSpeed == 2" class="fastForward_text">快</text>
  157. </view>
  158. </view>
  159. </view>
  160. <van-dialog use-slot title="轨迹" :show="trackDialogShow" show-cancel-button confirm-button-text="查询" @close="bindTrackDialogClose" @confirm="bindTrackDialogConfirm">
  161. <van-cell-group>
  162. <view style="height: 20rpx"></view>
  163. <view style="margin-left: 36rpx" class="flex-row">
  164. <view class="location_mark">定位类型:</view>
  165. <view @tap="bindLocationType" data-index="1" :class="isLocationType == 1 ? 'sel_location_view' : 'un_location_view'">GPS</view>
  166. <view @tap="bindLocationType" data-index="2" :class="isLocationType == 2 ? 'sel_location_view' : 'un_location_view'">LBS</view>
  167. <view @tap="bindLocationType" data-index="3" :class="isLocationType == 3 ? 'sel_location_view' : 'un_location_view'">GPS+LBS</view>
  168. </view>
  169. <van-field :value="trackDialogFrom.formatStartTime" label="开始时间" left-icon="clock-o" disabled :border="false" @tap.native="bindTrackStartTimeSelect" />
  170. <van-field :value="trackDialogFrom.formatEndTime" label="结束时间" left-icon="clock-o" disabled :border="false" @tap.native="bindTrackEndTimeSelect" />
  171. <van-row gutter="2">
  172. <van-col span="7" offset="1">
  173. <van-button type="default" custom-style="border: 0;width:100%;" @click="bindTrackTimeSelectToday">当天</van-button>
  174. </van-col>
  175. <van-col span="8">
  176. <van-button type="default" custom-style="border: 0;width:100%;" @click="bindTrackTimeSelectYesterday">昨天</van-button>
  177. </van-col>
  178. <van-col span="7">
  179. <van-button type="default" custom-style="border: 0;width:100%;" @click="bindTrackTimeSelectLastday">前天</van-button>
  180. </van-col>
  181. </van-row>
  182. </van-cell-group>
  183. </van-dialog>
  184. <van-popup
  185. :show="alarmPopupShow"
  186. :z-index="9999"
  187. round
  188. closeable
  189. :overlay="flase"
  190. custom-style="height: 45%"
  191. safe-area-inset-top
  192. position="bottom"
  193. @close="bindAlarmPopupClose"
  194. >
  195. <van-cell-group>
  196. <van-cell title="报警" />
  197. <van-cell :value="item.address" @click="MoveToAlarm($event, { p: item })" :data-p="item" v-for="(item, index) in alarmList" :key="index">
  198. <view slot="title">
  199. <view class="van-cell-text">
  200. <van-tag type="danger">{{ item.alarm_desc }}</van-tag>
  201. \t
  202. <van-tag type="primary">{{ item.speed }}公里/小时</van-tag>
  203. </view>
  204. <view class="van-cell-text">
  205. {{ item.formatTime }}
  206. </view>
  207. </view>
  208. </van-cell>
  209. </van-cell-group>
  210. </van-popup>
  211. <van-popup
  212. :show="trackStopPopupShow"
  213. :z-index="9999"
  214. round
  215. closeable
  216. :overlay="flase"
  217. custom-style="height: 45%"
  218. safe-area-inset-top
  219. position="bottom"
  220. @close="bindStopPopupClose"
  221. >
  222. <van-cell-group>
  223. <van-cell title="停留点" />
  224. <van-cell :value="item.address" @click="MoveToStop($event, { p: item })" :data-p="item" v-for="(item, index) in trackStopList" :key="index">
  225. <view slot="title">
  226. <view class="van-cell-text">
  227. {{ item.name }}\t
  228. <van-tag type="warning">{{ item.format_stop_time }}</van-tag>
  229. </view>
  230. <view class="van-cell-text">{{ item.time }} - {{ item.end_time }}</view>
  231. </view>
  232. </van-cell>
  233. </van-cell-group>
  234. </van-popup>
  235. <van-popup :show="timeSelectShow" :z-index="9999" position="bottom" @close="bindTimeSelectClose">
  236. <van-datetime-picker type="datetime" :value="selectTime" @confirm="bindTimeSelectConfirm" @cancel="bindTimeSelectClose" />
  237. </van-popup>
  238. <van-popup
  239. :show="fencePopupShow"
  240. :z-index="9999"
  241. round
  242. closeable
  243. :overlay="flase"
  244. custom-style="height: 45%"
  245. safe-area-inset-top
  246. position="bottom"
  247. @close="bindFencePopupClose"
  248. >
  249. <van-cell-group>
  250. <van-cell>
  251. <view slot="title">
  252. <view class="van-cell-text">
  253. 围栏
  254. <van-button icon="plus" type="info" size="small" @tap.native="addFence" style="margin-left: 30rpx">添加</van-button>
  255. </view>
  256. </view>
  257. </van-cell>
  258. <van-cell :value="item.radius + '米'" @click="MoveToFence($event, { p: item })" :data-p="item" v-for="(item, index) in fenceList" :key="index">
  259. <view slot="title">
  260. <view class="van-cell-text">
  261. {{ item.name }}
  262. </view>
  263. <view class="van-cell-text">报警类型: {{ item.type == 1 ? '进' : item.type == 2 ? '出' : item.type == 3 ? '双向' : '关闭' }}</view>
  264. </view>
  265. </van-cell>
  266. </van-cell-group>
  267. </van-popup>
  268. <van-popup
  269. :show="selectFence != null"
  270. :z-index="9999"
  271. round
  272. closeable
  273. :overlay="flase"
  274. custom-style="height: 45%"
  275. safe-area-inset-top
  276. position="bottom"
  277. @close="bindFenceClose"
  278. >
  279. <van-cell-group>
  280. <van-cell>
  281. <view slot="title">
  282. <view class="van-cell-text">
  283. 围栏设置
  284. <van-button v-if="selectFence.id" icon="cross" type="danger" size="small" @tap.native="delFence" style="margin-left: 30rpx">删除</van-button>
  285. </view>
  286. </view>
  287. </van-cell>
  288. <van-cell title="围栏名称" title-width="90px">
  289. <input placeholder="请输入围栏名称" @blur="onFenceNameChange" :value="selectFence.name" style="color: rgba(0, 0, 0, 1)" />
  290. </van-cell>
  291. <!-- van-field value="{{ selectFence.name }}" label="围栏名称" placeholder="请输入围栏名称" border="{{ false }}" bind:change="onFenceNameChange"/ -->
  292. <van-cell title="报警类型" title-width="90px">
  293. <van-radio-group :value="selectFence.type" class="flex-row flex-around" @change="onFenceTypeChange">
  294. <van-radio name="1">进</van-radio>
  295. <van-radio name="2">出</van-radio>
  296. <van-radio name="3">双向</van-radio>
  297. <van-radio name="0">关闭</van-radio>
  298. </van-radio-group>
  299. </van-cell>
  300. <van-cell title="围栏半径" title-width="90px">
  301. <view class="flex-row flex-around" style="width: 100%; height: 100%">
  302. <image src="/static/resource/images/-.png" style="width: 40rpx; height: 40rpx" @tap="onFenceRadiusMinus"></image>
  303. <slider :value="selectFence.radius" @change="onFenceRadiusChange" @changing="onFenceRadiusChange" min="1" max="10000" show-value style="width: 75%" />
  304. <!--van-slider value="{{ selectFence.radius }}" min="1" max="10000" use-button-slot bind:change="onFenceRadiusChange" style="width: 75%;">
  305. <view class="custom-button" slot="button">
  306. {{ selectFence.radius }}米
  307. </view>
  308. </van-slider-->
  309. <image src="/static/resource/images/+.png" style="width: 40rpx; height: 40rpx" @tap="onFenceRadiusPlus"></image>
  310. </view>
  311. </van-cell>
  312. </van-cell-group>
  313. <view style="padding: 0 16px; margin-top: 50rpx">
  314. <button class="save-btn" @tap="bindFenceSave">保存</button>
  315. </view>
  316. </van-popup>
  317. </view>
  318. </template>
  319. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  320. <script>
  321. import mapControl from '@/component/mapControl/mapControl';
  322. // pages/deviceLocal/deviceLocal.js
  323. const config = require('../../common/config.js');
  324. const common = require('../../common/common.js');
  325. var http = require('../../common/http.js');
  326. var storage = require('../../common/storage.js');
  327. var QQMapWX = require('../../libs/qqmap-wx-jssdk.js');
  328. var qqmapsdk;
  329. export default {
  330. components: {
  331. mapControl
  332. },
  333. data() {
  334. return {
  335. deviceInfo: {
  336. quantity: '',
  337. name: '',
  338. protectState: false,
  339. oilState: 0,
  340. signalType: 0,
  341. day_mil: '',
  342. mil: '',
  343. voltage: false,
  344. elecState: false,
  345. temp: '',
  346. heart_time: false,
  347. gps_time: false
  348. },
  349. marker: [],
  350. mileage_total: 0,
  351. deviceMarker: [],
  352. trackMarker: [],
  353. alarmMarker: [],
  354. playMarker: [],
  355. endSlide: 0,
  356. polylines: [],
  357. trackPoints: [],
  358. trackStopList: [],
  359. batteryWidth: 37,
  360. alarmList: [],
  361. adjustSpeed: 1,
  362. scale: 8,
  363. speedTime: 200,
  364. trackDialogFrom: {
  365. startTime: new Date(new Date().getTime() - 3600000).getTime(),
  366. formatStartTime: common.formatDateTime(new Date(new Date().getTime() - 3600000).getTime()),
  367. endTime: new Date().getTime(),
  368. formatEndTime: common.formatDateTime(new Date().getTime())
  369. },
  370. latitude_my: null,
  371. longitude_my: null,
  372. trackDialogShow: false,
  373. selectTime: new Date().getTime(),
  374. selectTimeType: '',
  375. alarmPopupShow: false,
  376. trackStopPopupShow: false,
  377. timeSelectShow: false,
  378. inPlay: false,
  379. playTimer: null,
  380. nowPlayIndex: 0,
  381. totalTrackValue: 0,
  382. currentTrackValue: 0,
  383. macid: '',
  384. gps: 0,
  385. gsm: 0,
  386. status: '',
  387. address: '',
  388. showInfo: true,
  389. iconList: [],
  390. locationTimer: null,
  391. longitude: null,
  392. latitude: null,
  393. trace: false,
  394. tracePoints: [],
  395. traceTime: 0,
  396. traceTimer: null,
  397. fencePopupShow: false,
  398. fenceList: [],
  399. isLocationType: 1,
  400. circles: [],
  401. selectFence: null,
  402. mapParams: {
  403. enableSatellite: false,
  404. // 是否开启卫星图
  405. enableTraffic: false // 是否开启实时路况
  406. },
  407. isShowGPS: false,
  408. // locationInfo:{}
  409. locationType: '',
  410. locationAdress: '',
  411. locationGpsType: '',
  412. locationGpsAdress: '',
  413. gpsMarker: [],
  414. flase: ''
  415. };
  416. },
  417. /**
  418. * 生命周期函数--监听页面加载
  419. */
  420. onLoad: function (options) {
  421. this.loadIconList();
  422. this.readyDeviceInfo();
  423. this.loadAlarmList();
  424. this.loadFenceList();
  425. this.locationLoop(true);
  426. //this.loadLastGpsInfo()
  427. this.locationTimer = setInterval(this.locationLoop, 10000);
  428. //获取当前位置
  429. uni.getLocation({
  430. type: 'gcj02',
  431. success: (res) => {
  432. //console.log(res)
  433. this.setData({
  434. latitude_my: res.latitude,
  435. longitude_my: res.longitude
  436. });
  437. }
  438. });
  439. this.mapCtx = uni.createMapContext('myMap');
  440. },
  441. onHide: function () {},
  442. onShow: function () {},
  443. onUnload: function () {
  444. clearInterval(this.locationTimer);
  445. clearInterval(this.traceTimer);
  446. clearInterval(this.playTimer);
  447. },
  448. methods: {
  449. loadIconList: function () {
  450. this.iconList = storage.getIconList();
  451. if (!this.iconList) {
  452. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  453. if (resp.data.code === 200) {
  454. this.iconList = resp.data.data.list;
  455. storage.setIconList(resp.data.data.list);
  456. } else {
  457. common.simpleToast(resp.data.msg);
  458. }
  459. });
  460. }
  461. },
  462. trackPlayChange(e) {
  463. var index = e.detail.value;
  464. this.setData({
  465. nowPlayIndex: index
  466. });
  467. this.playLoop();
  468. },
  469. bindLocationType(e) {
  470. const index = e.currentTarget.dataset.index;
  471. console.log(index);
  472. this.setData({
  473. isLocationType: index
  474. });
  475. },
  476. trackPlayChangeAdress(e) {
  477. console.log('22222');
  478. var index = e.detail.value;
  479. this.setData({
  480. nowPlayIndex: index
  481. });
  482. const me = this;
  483. this.playLoop();
  484. console.log(me.playMarker.length);
  485. if (me.playMarker.length > 0) {
  486. console.log('22222333333');
  487. // qqmapsdk.reverseGeocoder({
  488. // location: {
  489. // latitude: me.data.playMarker[0].latitude,
  490. // longitude: me.data.playMarker[0].longitude
  491. // },
  492. // success: function (res) {
  493. // const formatted_addresses = res.result.formatted_addresses
  494. // const address = res.result.address
  495. // let ps = '';
  496. // let tmp_addr = '地址: ' + address
  497. // while (tmp_addr.length > 15) {
  498. // ps += tmp_addr.substring(0, 15) + "\n";
  499. // tmp_addr = tmp_addr.substring(15);
  500. // }
  501. // ps += tmp_addr
  502. // var playMark = me.data.playMarker
  503. // playMark[0].callout.content += ps
  504. // me.setData({
  505. // playMarker: playMark
  506. // })
  507. // console.log("1111111")
  508. // me.setMarkers()
  509. // }
  510. // })
  511. const me = this;
  512. const pData = {
  513. lng: me.playMarker[0].longitude,
  514. lat: me.playMarker[0].latitude,
  515. pi: 'wx_deviceLocal'
  516. };
  517. http.postApi(config.API_MAP_REGEO, pData, function (resp) {
  518. if (resp.data.code === 200) {
  519. var jsonData = resp.data.data.data;
  520. if (jsonData.code === 0) {
  521. const address = jsonData.address;
  522. let ps = '';
  523. let tmp_addr = '地址: ' + address;
  524. while (tmp_addr.length > 15) {
  525. ps += tmp_addr.substring(0, 15) + '\n';
  526. tmp_addr = tmp_addr.substring(15);
  527. }
  528. ps += tmp_addr;
  529. var playMark = me.playMarker;
  530. playMark[0].callout.content += ps;
  531. me.setData({
  532. playMarker: playMark
  533. });
  534. }
  535. }
  536. });
  537. }
  538. },
  539. bindFastForward() {
  540. if (this.adjustSpeed === 0) {
  541. this.setData({
  542. adjustSpeed: 1,
  543. speedTime: 400
  544. });
  545. clearInterval(this.playTimer);
  546. this.playTimer = setInterval(this.playLoop, this.speedTime);
  547. } else if (this.adjustSpeed === 1) {
  548. this.setData({
  549. adjustSpeed: 2,
  550. speedTime: 200
  551. });
  552. clearInterval(this.playTimer);
  553. this.playTimer = setInterval(this.playLoop, this.speedTime);
  554. } else if (this.adjustSpeed === 2) {
  555. this.setData({
  556. adjustSpeed: 0,
  557. speedTime: 600
  558. });
  559. clearInterval(this.playTimer);
  560. this.playTimer = setInterval(this.playLoop, this.speedTime);
  561. }
  562. },
  563. loadAlarmList() {
  564. common.loading();
  565. const deviceInfo = storage.getSelectedDeviceInfo();
  566. http.postApi(
  567. config.API_GPS_ALARM,
  568. {
  569. macid: deviceInfo.mac_id
  570. },
  571. (resp) => {
  572. uni.hideLoading();
  573. if (resp.data.code === 200) {
  574. var alarmList = resp.data.data.list;
  575. alarmList.forEach((p, i) => {
  576. alarmList[i].formatTime = common.formatDateTime(p.send_time * 1000);
  577. qqmapsdk.reverseGeocoder({
  578. location: {
  579. latitude: p.latitude,
  580. longitude: p.longitude
  581. },
  582. success: (res) => {
  583. const formatted_addresses = res.result.formatted_addresses;
  584. const address = res.result.address; //+ formatted_addresses.recommend
  585. let ps = '';
  586. let tmp_addr = '地址: ' + address;
  587. while (tmp_addr.length > 15) {
  588. ps += tmp_addr.substring(0, 15) + '\n';
  589. tmp_addr = tmp_addr.substring(15);
  590. }
  591. ps += tmp_addr;
  592. alarmList[i].address = address;
  593. alarmList[i].ps = ps;
  594. this.setData({
  595. alarmList: alarmList
  596. });
  597. }
  598. });
  599. });
  600. this.setData({
  601. alarmList: alarmList
  602. });
  603. } else {
  604. common.simpleToast(resp.data.msg);
  605. }
  606. }
  607. );
  608. },
  609. readyDeviceInfo() {
  610. const me = this;
  611. // 实例化API核心类
  612. qqmapsdk = new QQMapWX({
  613. key: config.QQ_MAP_KEY
  614. });
  615. const deviceInfo = storage.getSelectedDeviceInfo();
  616. if (deviceInfo) {
  617. console.log('1111');
  618. console.log(deviceInfo);
  619. // this.batteryWidth = deviceInfo.quantity/100*37
  620. // console.log(deviceInfo.quantity)
  621. uni.setNavigationBarTitle({
  622. title: deviceInfo.mac_id
  623. });
  624. if (parseInt(deviceInfo.expire) === 1) {
  625. common.simpleToast('设备到期');
  626. setTimeout(function () {
  627. uni.navigateBack({
  628. delta: 1
  629. });
  630. }, 1500);
  631. }
  632. } else {
  633. clearInterval(this.locationTimer);
  634. setTimeout(function () {
  635. uni.navigateBack({
  636. delta: 1
  637. });
  638. }, 1500);
  639. }
  640. },
  641. setMarkers() {
  642. this.setData({
  643. marker: this.deviceMarker.concat(this.trackMarker, this.alarmMarker, this.playMarker, this.gpsMarker)
  644. });
  645. },
  646. setPolylines() {
  647. var polylines = [
  648. {
  649. points: this.trackPoints,
  650. color: '#1989FADD',
  651. width: 5,
  652. arrowLine: true
  653. }
  654. ]; /*, {
  655. points: this.data.trackPoints.slice(0,this.data.nowPlayIndex+1),
  656. color: '#F56C6CDD',
  657. width: 3,
  658. }]*/
  659. if (this.trace) {
  660. polylines.push({
  661. points: this.tracePoints,
  662. color: '#DD4C4CDD',
  663. width: 3,
  664. arrowLine: true
  665. });
  666. }
  667. this.setData({
  668. polylines: polylines
  669. });
  670. },
  671. bindTrackDialogOpen() {
  672. this.setData({
  673. trackDialogShow: true
  674. });
  675. },
  676. // 计算里程数
  677. calculateMileage(history) {
  678. let mileage = 0;
  679. for (let i = 0; i < history.length - 1; i++) {
  680. mileage += parseInt(common.getFlatternDistance(history[i].longitude, history[i].latitude, history[i + 1].longitude, history[i + 1].latitude));
  681. }
  682. var mileage_total = mileage == 0 ? 0 : (mileage / 1000).toFixed(2);
  683. console.log('公里');
  684. console.log(mileage_total);
  685. this.setData({
  686. mileage_total: mileage_total
  687. });
  688. },
  689. getCurrentMil(mileage, i, history) {
  690. //var mileage = mileage_current
  691. mileage += parseInt(common.getFlatternDistance(history[i].longitude, history[i].latitude, history[i + 1].longitude, history[i + 1].latitude));
  692. console.log(mileage);
  693. return mileage;
  694. },
  695. loadTotalMil() {
  696. const deviceInfo = storage.getSelectedDeviceInfo();
  697. http.postApi(
  698. config.API_SHOW_MIL,
  699. {
  700. macid: deviceInfo.mac_id,
  701. location_type: this.isLocationType,
  702. from: parseInt(this.trackDialogFrom.startTime / 1000),
  703. to: parseInt(this.trackDialogFrom.endTime / 1000)
  704. },
  705. (resp) => {
  706. if (resp.data.code === 200) {
  707. this.setData({
  708. mileage_total: resp.data.data.distance
  709. });
  710. } else {
  711. common.simpleToast(resp.data.msg);
  712. }
  713. }
  714. );
  715. },
  716. bindTrackDialogConfirm() {
  717. this.bindTrackDialogClose();
  718. this.setData({
  719. inPlay: false
  720. });
  721. clearInterval(this.playTimer);
  722. common.loading();
  723. const deviceInfo = storage.getSelectedDeviceInfo();
  724. http.postApi(
  725. config.API_GPS_TRACK,
  726. {
  727. macid: deviceInfo.mac_id,
  728. location_type: this.isLocationType,
  729. from: parseInt(this.trackDialogFrom.startTime / 1000),
  730. to: parseInt(this.trackDialogFrom.endTime / 1000)
  731. },
  732. (resp) => {
  733. this.loadTotalMil();
  734. uni.hideLoading();
  735. if (resp.data.code === 200) {
  736. if (!resp.data.data.points || resp.data.data.points.length === 0) {
  737. common.simpleToast('当前未有轨迹');
  738. return;
  739. }
  740. // this.calculateMileage(resp.data.data.points)
  741. var points = [];
  742. var trackMarker = [];
  743. var trackStopList = [];
  744. var n = 1;
  745. this.setData({
  746. totalTrackValue: resp.data.data.points.length
  747. });
  748. var mileage = 0;
  749. resp.data.data.points.forEach((p, i) => {
  750. //移动坐标点
  751. if (resp.data.data.points.length - 1 > i) {
  752. mileage = this.getCurrentMil(mileage, i, resp.data.data.points);
  753. }
  754. points.push({
  755. latitude: parseFloat(p.latitude),
  756. longitude: parseFloat(p.longitude),
  757. time: p.time,
  758. speed: p.speed,
  759. voltage: p.voltage,
  760. time: p.time,
  761. mileage: (mileage / 1000).toFixed(2),
  762. stop_time: p.stop_time
  763. });
  764. //起点
  765. if (i === 0) {
  766. trackStopList.push({
  767. name: '起点',
  768. latitude: parseFloat(p.latitude),
  769. longitude: parseFloat(p.longitude),
  770. time: p.time,
  771. end_time: common.formatDateTime(new Date(p.time).getTime() + p.stop_time * 1000),
  772. stop_time: p.stop_time,
  773. format_stop_time: common.formatSeconds(p.stop_time),
  774. address: ''
  775. });
  776. //mark弹出框坐标
  777. trackMarker.push({
  778. id: 0,
  779. latitude: p.latitude,
  780. longitude: p.longitude,
  781. name: '',
  782. iconPath: '/static/resource/images/start_point.png',
  783. width: 28,
  784. height: 35,
  785. zIndex: 2,
  786. callout: {
  787. content:
  788. '\u8D77\u70B9\n\u505C\u7559: ' +
  789. common.formatSeconds(p.stop_time) +
  790. '\n' +
  791. '开始: ' +
  792. p.time +
  793. '\n' +
  794. '结束: ' +
  795. common.formatDateTime(new Date(p.time).getTime() + p.stop_time * 1000) +
  796. '\n',
  797. padding: 10,
  798. borderRadius: 4,
  799. boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
  800. display: 'BYCLICK'
  801. }
  802. });
  803. const me = this;
  804. const pData = {
  805. lng: parseFloat(p.longitude),
  806. lat: parseFloat(p.latitude),
  807. pi: 'wx_deviceLocal'
  808. };
  809. http.postApi(config.API_MAP_REGEO, pData, function (resp) {
  810. if (resp.data.code === 200) {
  811. var jsonData = resp.data.data.data;
  812. if (jsonData.code === 0) {
  813. const address = jsonData.address;
  814. let ps = '';
  815. let tmp_addr = '地址: ' + address;
  816. while (tmp_addr.length > 15) {
  817. ps += tmp_addr.substring(0, 15) + '\n';
  818. tmp_addr = tmp_addr.substring(15);
  819. }
  820. ps += tmp_addr;
  821. trackMarker[0].callout.content += ps;
  822. trackStopList[0].address = address;
  823. me.setData({
  824. trackMarker: trackMarker,
  825. trackStopList: trackStopList
  826. });
  827. me.setMarkers();
  828. }
  829. }
  830. });
  831. // qqmapsdk.reverseGeocoder({
  832. // location: {
  833. // latitude: parseFloat(p.latitude),
  834. // longitude: parseFloat(p.longitude)
  835. // },
  836. // success: (res) => {
  837. // console.log(res)
  838. // const formatted_addresses = res.result.formatted_addresses
  839. // const address = res.result.address + formatted_addresses.recommend
  840. // let ps = '';
  841. // let tmp_addr = '地址: ' + address
  842. // while (tmp_addr.length > 15) {
  843. // ps += tmp_addr.substring(0, 15) + "\n";
  844. // tmp_addr = tmp_addr.substring(15);
  845. // }
  846. // ps += tmp_addr
  847. // trackMarker[0].callout.content += ps
  848. // trackStopList[0].address = address
  849. // this.setData({
  850. // trackMarker: trackMarker,
  851. // trackStopList: trackStopList,
  852. // })
  853. // this.setMarkers()
  854. // }
  855. // })
  856. } else if (p.stop_time > 300 && i !== resp.data.data.points.length - 1) {
  857. //地图设置mark停留点
  858. trackStopList.push({
  859. name: 'P' + n,
  860. latitude: parseFloat(p.latitude),
  861. longitude: parseFloat(p.longitude),
  862. time: p.time,
  863. end_time: common.formatDateTime(new Date(p.time).getTime() + p.stop_time * 1000),
  864. stop_time: p.stop_time,
  865. format_stop_time: common.formatSeconds(p.stop_time),
  866. address: ''
  867. });
  868. //mark弹出框
  869. trackMarker.push({
  870. id: i,
  871. latitude: parseFloat(p.latitude),
  872. longitude: parseFloat(p.longitude),
  873. name: '',
  874. iconPath: '/static/resource/images/p-stop.png',
  875. width: 28,
  876. height: 35,
  877. zIndex: 1,
  878. callout: {
  879. content:
  880. 'P' +
  881. n +
  882. '\n' +
  883. '停留: ' +
  884. common.formatSeconds(p.stop_time) +
  885. '\n' +
  886. '开始: ' +
  887. p.time +
  888. '\n' +
  889. '结束: ' +
  890. common.formatDateTime(new Date(p.time).getTime() + p.stop_time * 1000) +
  891. '\n',
  892. padding: 10,
  893. borderRadius: 4,
  894. boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
  895. display: 'BYCLICK'
  896. }
  897. });
  898. var i = n;
  899. qqmapsdk.reverseGeocoder({
  900. location: {
  901. latitude: parseFloat(p.latitude),
  902. longitude: parseFloat(p.longitude)
  903. },
  904. success: (res) => {
  905. console.log(res);
  906. const formatted_addresses = res.result.formatted_addresses;
  907. const address = res.result.address + formatted_addresses.recommend;
  908. let ps = '';
  909. let tmp_addr = '地址: ' + address;
  910. while (tmp_addr.length > 15) {
  911. ps += tmp_addr.substring(0, 15) + '\n';
  912. tmp_addr = tmp_addr.substring(15);
  913. }
  914. ps += tmp_addr;
  915. trackMarker[i].callout.content += ps;
  916. trackStopList[i].address = address;
  917. this.setData({
  918. trackMarker: trackMarker,
  919. trackStopList: trackStopList
  920. });
  921. this.setMarkers();
  922. }
  923. });
  924. n++;
  925. }
  926. });
  927. //设置终点
  928. trackStopList.push({
  929. name: '终点',
  930. latitude: parseFloat(points[points.length - 1].latitude),
  931. longitude: parseFloat(points[points.length - 1].longitude),
  932. time: points[points.length - 1].time,
  933. end_time: common.formatDateTime(new Date(points[points.length - 1].time).getTime() + points[points.length - 1].stop_time * 1000),
  934. stop_time: points[points.length - 1].stop_time,
  935. format_stop_time: common.formatSeconds(points[points.length - 1].stop_time),
  936. address: ''
  937. });
  938. trackMarker.push({
  939. id: points.length - 1,
  940. latitude: points[points.length - 1].latitude,
  941. longitude: points[points.length - 1].longitude,
  942. name: '',
  943. iconPath: '/static/resource/images/end_point.png',
  944. width: 28,
  945. height: 35,
  946. zIndex: 2,
  947. callout: {
  948. content:
  949. '\u7EC8\u70B9\n\u505C\u7559: ' +
  950. common.formatSeconds(points[points.length - 1].stop_time) +
  951. '\n' +
  952. '开始: ' +
  953. points[points.length - 1].time +
  954. '\n' +
  955. '结束: ' +
  956. common.formatDateTime(new Date(points[points.length - 1].time).getTime() + points[points.length - 1].stop_time * 1000) +
  957. '\n',
  958. padding: 10,
  959. borderRadius: 4,
  960. boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
  961. display: 'BYCLICK'
  962. }
  963. });
  964. qqmapsdk.reverseGeocoder({
  965. location: {
  966. latitude: parseFloat(points[points.length - 1].latitude),
  967. longitude: parseFloat(points[points.length - 1].longitude)
  968. },
  969. success: (res) => {
  970. console.log(res);
  971. const formatted_addresses = res.result.formatted_addresses;
  972. const address = res.result.address + formatted_addresses.recommend;
  973. let ps = '';
  974. let tmp_addr = '地址: ' + address;
  975. while (tmp_addr.length > 15) {
  976. ps += tmp_addr.substring(0, 15) + '\n';
  977. tmp_addr = tmp_addr.substring(15);
  978. }
  979. ps += tmp_addr;
  980. trackMarker[n].callout.content += ps;
  981. trackStopList[n].address = address;
  982. this.setData({
  983. trackMarker: trackMarker,
  984. trackStopList: trackStopList
  985. });
  986. this.setMarkers();
  987. }
  988. });
  989. var deviceMarker = this.deviceMarker;
  990. //deviceMarker[0].callout.display = 'BYCLICK'
  991. this.setData({
  992. trackPoints: points,
  993. trackMarker: trackMarker,
  994. deviceMarker: deviceMarker,
  995. trackStopList: trackStopList,
  996. nowPlayIndex: 0,
  997. playMarker: []
  998. });
  999. this.setMarkers();
  1000. this.setPolylines();
  1001. // this.mapCtx.scale = 8
  1002. var map = uni.createMapContext('myMap');
  1003. map.includePoints({
  1004. points: points,
  1005. padding: [10, 10, 10, 10]
  1006. });
  1007. this.setData({
  1008. scale: 13
  1009. });
  1010. } else {
  1011. common.simpleToast(resp.data.msg);
  1012. }
  1013. }
  1014. );
  1015. },
  1016. bindTrackDialogClose() {
  1017. this.setData({
  1018. trackDialogShow: false
  1019. });
  1020. },
  1021. bindTrackStartTimeSelect() {
  1022. this.setData({
  1023. selectTime: this.trackDialogFrom.startTime,
  1024. selectTimeType: 'track_start'
  1025. });
  1026. this.bindTimeSelectOpen();
  1027. },
  1028. bindTrackEndTimeSelect() {
  1029. this.setData({
  1030. selectTime: this.trackDialogFrom.endTime,
  1031. selectTimeType: 'track_end'
  1032. });
  1033. this.bindTimeSelectOpen();
  1034. },
  1035. bindTrackTimeSelectToday() {
  1036. this.setData({
  1037. trackDialogFrom: Object.assign(this.trackDialogFrom, {
  1038. startTime: new Date(new Date().toLocaleDateString()).getTime(),
  1039. formatStartTime: common.formatDateTime(new Date(new Date().toLocaleDateString()).getTime()),
  1040. endTime: new Date().getTime(),
  1041. formatEndTime: common.formatDateTime(new Date().getTime())
  1042. })
  1043. });
  1044. this.bindTrackDialogConfirm();
  1045. },
  1046. bindTrackTimeSelectYesterday() {
  1047. this.setData({
  1048. trackDialogFrom: Object.assign(this.trackDialogFrom, {
  1049. startTime: new Date(new Date().toLocaleDateString()).getTime() - 86400 * 1000,
  1050. formatStartTime: common.formatDateTime(new Date(new Date().toLocaleDateString()).getTime() - 86400 * 1000),
  1051. endTime: new Date(new Date().toLocaleDateString()).getTime() - 1,
  1052. formatEndTime: common.formatDateTime(new Date(new Date().toLocaleDateString()).getTime() - 1)
  1053. })
  1054. });
  1055. this.bindTrackDialogConfirm();
  1056. },
  1057. bindTrackTimeSelectLastday() {
  1058. this.setData({
  1059. trackDialogFrom: Object.assign(this.trackDialogFrom, {
  1060. startTime: new Date(new Date().toLocaleDateString()).getTime() - 2880 * 60 * 1000,
  1061. formatStartTime: common.formatDateTime(new Date(new Date().toLocaleDateString()).getTime() - 2880 * 60 * 1000),
  1062. endTime: new Date(new Date().toLocaleDateString()).getTime() - 86400 * 1000 - 1,
  1063. formatEndTime: common.formatDateTime(new Date(new Date().toLocaleDateString()).getTime() - 86400 * 1000 - 1)
  1064. })
  1065. });
  1066. this.bindTrackDialogConfirm();
  1067. },
  1068. bindTimeSelectConfirm(event) {
  1069. switch (this.selectTimeType) {
  1070. case 'track_start':
  1071. this.setData({
  1072. trackDialogFrom: Object.assign(this.trackDialogFrom, {
  1073. startTime: event.detail,
  1074. formatStartTime: common.formatDateTime(event.detail)
  1075. }),
  1076. selectTimeType: ''
  1077. });
  1078. break;
  1079. case 'track_end':
  1080. this.setData({
  1081. trackDialogFrom: Object.assign(this.trackDialogFrom, {
  1082. endTime: event.detail,
  1083. formatEndTime: common.formatDateTime(event.detail)
  1084. }),
  1085. selectTimeType: ''
  1086. });
  1087. break;
  1088. }
  1089. this.bindTimeSelectClose();
  1090. },
  1091. bindTimeSelectOpen() {
  1092. this.setData({
  1093. timeSelectShow: true
  1094. });
  1095. },
  1096. bindTimeSelectClose() {
  1097. this.setData({
  1098. timeSelectShow: false
  1099. });
  1100. },
  1101. bindStopPopupOpen() {
  1102. this.setData({
  1103. trackStopPopupShow: true
  1104. });
  1105. },
  1106. bindStopPopupClose() {
  1107. this.setData({
  1108. trackStopPopupShow: false
  1109. });
  1110. },
  1111. MoveToStop(event, _dataset) {
  1112. /* ---处理dataset begin--- */
  1113. this.handleDataset(event, _dataset);
  1114. /* ---处理dataset end--- */
  1115. var map = uni.createMapContext('myMap');
  1116. this.setData({
  1117. latitude: event.currentTarget.dataset.p.latitude,
  1118. longitude: event.currentTarget.dataset.p.longitude
  1119. });
  1120. /*map.moveToLocation({
  1121. latitude: event.currentTarget.dataset.p.latitude,
  1122. longitude: event.currentTarget.dataset.p.longitude
  1123. })*/
  1124. },
  1125. bindAlarmPopupOpen() {
  1126. this.setData({
  1127. alarmPopupShow: true
  1128. });
  1129. },
  1130. bindAlarmPopupClose() {
  1131. this.setData({
  1132. alarmPopupShow: false
  1133. });
  1134. this.setData({
  1135. alarmMarker: []
  1136. });
  1137. this.setMarkers();
  1138. },
  1139. MoveToAlarm(event, _dataset) {
  1140. /* ---处理dataset begin--- */
  1141. this.handleDataset(event, _dataset);
  1142. /* ---处理dataset end--- */
  1143. var map = uni.createMapContext('myMap');
  1144. var alarmMarker = [
  1145. {
  1146. id: 0,
  1147. latitude: event.currentTarget.dataset.p.latitude,
  1148. longitude: event.currentTarget.dataset.p.longitude,
  1149. name: '',
  1150. iconPath: '/static/resource/images/alarm.png',
  1151. width: 28,
  1152. height: 35,
  1153. zIndex: 10,
  1154. callout: {
  1155. content:
  1156. event.currentTarget.dataset.p.alarm_desc +
  1157. '\n' +
  1158. '时间: ' +
  1159. event.currentTarget.dataset.p.formatTime +
  1160. '\n' +
  1161. '速度: ' +
  1162. event.currentTarget.dataset.p.speed +
  1163. '公里/小时\n' +
  1164. event.currentTarget.dataset.p.ps +
  1165. '\n',
  1166. padding: 10,
  1167. borderRadius: 4,
  1168. boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
  1169. display: 'ALWAYS'
  1170. }
  1171. }
  1172. ];
  1173. this.setData({
  1174. alarmMarker: alarmMarker,
  1175. latitude: event.currentTarget.dataset.p.latitude,
  1176. longitude: event.currentTarget.dataset.p.longitude
  1177. });
  1178. this.setMarkers();
  1179. },
  1180. playLoop() {
  1181. if (this.nowPlayIndex >= this.trackPoints.length - 1) {
  1182. this.setData({
  1183. inPlay: false
  1184. });
  1185. clearInterval(this.playTimer);
  1186. return;
  1187. }
  1188. this.setData({
  1189. showInfo: false
  1190. });
  1191. var map = uni.createMapContext('myMap');
  1192. var leng = Math.sqrt(
  1193. Math.pow(Math.abs(this.trackPoints[this.nowPlayIndex + 1].longitude - this.trackPoints[this.nowPlayIndex].longitude) * 111, 2) +
  1194. Math.pow(
  1195. Math.abs(this.trackPoints[this.nowPlayIndex + 1].latitude - this.trackPoints[this.nowPlayIndex].latitude) *
  1196. 111 *
  1197. Math.cos(((2 * Math.PI) / 360) * this.trackPoints[this.nowPlayIndex].latitude),
  1198. 2
  1199. )
  1200. );
  1201. while (leng < 0.1 && this.nowPlayIndex < this.trackPoints.length - 1) {
  1202. leng += Math.sqrt(
  1203. Math.pow(Math.abs(this.trackPoints[this.nowPlayIndex + 1].longitude - this.trackPoints[this.nowPlayIndex].longitude) * 111, 2) +
  1204. Math.pow(
  1205. Math.abs(this.trackPoints[this.nowPlayIndex + 1].latitude - this.trackPoints[this.nowPlayIndex].latitude) *
  1206. 111 *
  1207. Math.cos(((2 * Math.PI) / 360) * this.trackPoints[this.nowPlayIndex].latitude),
  1208. 2
  1209. )
  1210. );
  1211. this.nowPlayIndex = this.nowPlayIndex + 1;
  1212. }
  1213. var rotate =
  1214. (Math.atan(
  1215. (this.trackPoints[this.nowPlayIndex + 1].longitude - this.trackPoints[this.nowPlayIndex].longitude) /
  1216. (this.trackPoints[this.nowPlayIndex + 1].latitude - this.trackPoints[this.nowPlayIndex].latitude) /
  1217. Math.cos(((2 * Math.PI) / 360) * this.trackPoints[this.nowPlayIndex].latitude)
  1218. ) *
  1219. 180) /
  1220. Math.PI;
  1221. if (rotate === NaN) {
  1222. if (this.trackPoints[this.nowPlayIndex + 1].longitude - this.trackPoints[this.nowPlayIndex].longitude > 0) {
  1223. rotate = 90;
  1224. } else {
  1225. rotate = 270;
  1226. }
  1227. } else if (this.trackPoints[this.nowPlayIndex + 1].latitude - this.trackPoints[this.nowPlayIndex].latitude < 0) {
  1228. rotate = 180 + rotate;
  1229. } else if (this.trackPoints[this.nowPlayIndex + 1].longitude - this.trackPoints[this.nowPlayIndex].longitude < 0) {
  1230. rotate = 360 + rotate;
  1231. }
  1232. var playMarker = [
  1233. {
  1234. id: -1,
  1235. latitude: this.trackPoints[this.nowPlayIndex].latitude,
  1236. longitude: this.trackPoints[this.nowPlayIndex].longitude,
  1237. name: '',
  1238. iconPath: '/static/resource/images/1.gif',
  1239. width: 35,
  1240. height: 35,
  1241. zIndex: 20,
  1242. callout: {
  1243. content:
  1244. '电压: ' +
  1245. this.trackPoints[this.nowPlayIndex].voltage +
  1246. '\n' +
  1247. '速度: ' +
  1248. this.trackPoints[this.nowPlayIndex].speed +
  1249. 'km/小时\n' +
  1250. '时间: ' +
  1251. this.trackPoints[this.nowPlayIndex].time +
  1252. '\n' +
  1253. '里程: ' +
  1254. this.trackPoints[this.nowPlayIndex].mileage +
  1255. '公里\n',
  1256. padding: 10,
  1257. borderRadius: 4,
  1258. boxShadow: '4px 8px 16px 0 rgba(0,0,0,0.3)',
  1259. display: 'ALWAYS'
  1260. }
  1261. }
  1262. ];
  1263. this.playMarker = playMarker;
  1264. this.setMarkers();
  1265. this.setData({
  1266. latitude: this.trackPoints[this.nowPlayIndex].latitude,
  1267. longitude: this.trackPoints[this.nowPlayIndex].longitude,
  1268. nowPlayIndex: this.nowPlayIndex + 1
  1269. });
  1270. },
  1271. bindPlay() {
  1272. if (this.inPlay) {
  1273. this.setData({
  1274. inPlay: false
  1275. });
  1276. const me = this;
  1277. clearInterval(this.playTimer);
  1278. if (me.playMarker.length > 0) {
  1279. const pData = {
  1280. lng: me.playMarker[0].longitude,
  1281. lat: me.playMarker[0].latitude,
  1282. pi: 'wx_deviceLocal'
  1283. };
  1284. const me = this;
  1285. http.postApi(config.API_MAP_REGEO, pData, function (resp) {
  1286. if (resp.data.code === 200) {
  1287. var jsonData = resp.data.data.data;
  1288. if (jsonData.code === 0) {
  1289. const address = jsonData.address;
  1290. var ps = '';
  1291. let tmp_addr = '地址: ' + address;
  1292. while (tmp_addr.length > 15) {
  1293. ps += tmp_addr.substring(0, 15) + '\n';
  1294. tmp_addr = tmp_addr.substring(15);
  1295. }
  1296. ps += tmp_addr;
  1297. var playMark = me.playMarker;
  1298. playMark[0].callout.content += ps;
  1299. me.setData({
  1300. playMarker: playMark
  1301. });
  1302. me.setMarkers();
  1303. }
  1304. }
  1305. });
  1306. // qqmapsdk.reverseGeocoder({
  1307. // location: {
  1308. // latitude: me.data.playMarker[0].latitude,
  1309. // longitude: me.data.playMarker[0].longitude
  1310. // },
  1311. // success: function (res) {
  1312. // const formatted_addresses = res.result.formatted_addresses
  1313. // const address = res.result.address
  1314. // let ps = '';
  1315. // let tmp_addr = '地址: ' + address
  1316. // while (tmp_addr.length > 15) {
  1317. // ps += tmp_addr.substring(0, 15) + "\n";
  1318. // tmp_addr = tmp_addr.substring(15);
  1319. // }
  1320. // ps += tmp_addr
  1321. // var playMark = me.data.playMarker
  1322. // playMark[0].callout.content += ps
  1323. // me.setData({
  1324. // playMarker: playMark
  1325. // })
  1326. // me.setMarkers()
  1327. // }
  1328. // })
  1329. }
  1330. } else {
  1331. if (this.nowPlayIndex >= this.trackPoints.length - 1) {
  1332. this.setData({
  1333. nowPlayIndex: 0
  1334. });
  1335. }
  1336. this.setData({
  1337. inPlay: true
  1338. });
  1339. this.playTimer = setInterval(this.playLoop, this.speedTime);
  1340. }
  1341. },
  1342. // bindGPSLocation(){
  1343. // this.setData({
  1344. // isShowGPS:true
  1345. // })
  1346. // this.locationLoop(true)
  1347. // },
  1348. locationLoop(init = false) {
  1349. const me = this;
  1350. const deviceInfo = storage.getSelectedDeviceInfo();
  1351. if (deviceInfo) {
  1352. //common.loading()
  1353. http.postApi(
  1354. config.API_GPS_INFO,
  1355. {
  1356. macid: deviceInfo.mac_id
  1357. },
  1358. (resp) => {
  1359. //wx.hideLoading()
  1360. if (resp.data.code === 200) {
  1361. let status;
  1362. let stat = '';
  1363. if (parseInt(resp.data.data.info.online) === 1) {
  1364. if (parseInt(resp.data.data.info.speed) === 0) {
  1365. status = '静止(' + common.formatSeconds(resp.data.data.info.heart_time - resp.data.data.info.gps_time, false) + ')';
  1366. stat = 'static';
  1367. } else {
  1368. status = '行驶(' + resp.data.data.info.speed + 'Km/h)';
  1369. stat = 'running';
  1370. }
  1371. } else {
  1372. status =
  1373. '离线(' +
  1374. common.formatSeconds(
  1375. new Date().getTime() / 1000 -
  1376. (resp.data.data.info.heart_time === undefined ? resp.data.data.info.gps_time : resp.data.data.info.heart_time),
  1377. false
  1378. ) +
  1379. ')';
  1380. stat = 'offline';
  1381. }
  1382. if (init) {
  1383. this.setData({
  1384. longitude: resp.data.data.info.longitude,
  1385. latitude: resp.data.data.info.latitude
  1386. });
  1387. }
  1388. var device_info = resp.data.data.info;
  1389. this.setData({
  1390. locationType: device_info.signalType
  1391. });
  1392. this.setData({
  1393. macid: deviceInfo.mac_id,
  1394. deviceInfo: resp.data.data.info,
  1395. gps: resp.data.data.info.gpscount,
  1396. gsm: parseInt(resp.data.data.info.online) === 0 ? 0 : resp.data.data.info.gsmlevel <= 15 ? 3 : resp.data.data.info.gsmlevel > 18 ? 5 : 4,
  1397. status: status,
  1398. deviceMarker: [
  1399. {
  1400. id: 1,
  1401. latitude: resp.data.data.info.latitude,
  1402. longitude: resp.data.data.info.longitude,
  1403. name: '',
  1404. iconPath: this.iconList[resp.data.data.info.icon] ? this.iconList[resp.data.data.info.icon][stat] : '/static/resource/images/weizhi2.png',
  1405. width: 35,
  1406. height: 35,
  1407. zIndex: 10
  1408. }
  1409. ],
  1410. circles: [
  1411. {
  1412. latitude: resp.data.data.info.latitude,
  1413. longitude: resp.data.data.info.longitude,
  1414. color: '#6495ED1F',
  1415. fillColor: '#6495ED1F',
  1416. radius: 1000,
  1417. strokeWidth: 1
  1418. }
  1419. ]
  1420. });
  1421. this.setMarkers();
  1422. if (
  1423. this.trace &&
  1424. (this.tracePoints.length == 0 ||
  1425. this.tracePoints[this.tracePoints.length - 1].latitude != resp.data.data.info.latitude ||
  1426. this.tracePoints[this.tracePoints.length - 1].longitude != resp.data.data.info.longitude)
  1427. ) {
  1428. this.tracePoints.push({
  1429. latitude: resp.data.data.info.latitude,
  1430. longitude: resp.data.data.info.longitude
  1431. });
  1432. this.setPolylines();
  1433. this.setData({
  1434. latitude: resp.data.data.info.latitude,
  1435. longitude: resp.data.data.info.longitude
  1436. });
  1437. }
  1438. console.log(resp.data.data.info);
  1439. console.log(this.batteryWidth);
  1440. const pData = {
  1441. lng: resp.data.data.info.longitude,
  1442. lat: resp.data.data.info.latitude,
  1443. pi: 'wx_deviceLocal'
  1444. };
  1445. const me = this;
  1446. http.postApi(config.API_MAP_REGEO, pData, function (resp) {
  1447. if (resp.data.code === 200) {
  1448. var jsonData = resp.data.data.data;
  1449. if (jsonData.code === 0) {
  1450. me.setData({
  1451. address: jsonData.address,
  1452. locationAdress: jsonData.address
  1453. });
  1454. }
  1455. }
  1456. });
  1457. // qqmapsdk.reverseGeocoder({
  1458. // location: {
  1459. // latitude: resp.data.data.info.latitude,
  1460. // longitude: resp.data.data.info.longitude
  1461. // },
  1462. // success: function (res) {
  1463. // console.log(res)
  1464. // const formatted_addresses = res.result.formatted_addresses
  1465. // const address = res.result.address //+ formatted_addresses.recommend
  1466. // me.setData({
  1467. // address: address,
  1468. // locationAdress: address
  1469. // })
  1470. // }
  1471. // })
  1472. } else {
  1473. common.simpleToast(resp.data.msg);
  1474. clearInterval(this.locationTimer);
  1475. setTimeout(function () {
  1476. uni.navigateBack({
  1477. delta: 1
  1478. });
  1479. }, 1500);
  1480. }
  1481. }
  1482. );
  1483. }
  1484. },
  1485. isEmptyObject(obj) {
  1486. for (var key in obj) {
  1487. return false;
  1488. }
  1489. return true;
  1490. },
  1491. loadLastGpsInfo() {
  1492. var init = true;
  1493. const me = this;
  1494. const deviceInfo = storage.getSelectedDeviceInfo();
  1495. if (deviceInfo) {
  1496. http.postApi(
  1497. config.API_GPS_INFO,
  1498. {
  1499. macid: deviceInfo.mac_id
  1500. },
  1501. (resp) => {
  1502. if (resp.data.code === 200) {
  1503. console.log('11111');
  1504. if (this.isEmptyObject(resp.data.data.info.last_location)) {
  1505. common.simpleToast('当前设备没有GPS坐标');
  1506. return;
  1507. }
  1508. // var last_location = resp.data.data.info.last_location
  1509. // last_location.lng = 121.19023414159073
  1510. // last_location.lat = 31.390001627411883
  1511. // resp.data.data.info.last_location = last_location
  1512. let status;
  1513. let stat = '';
  1514. if (parseInt(resp.data.data.info.online) === 1) {
  1515. if (parseInt(resp.data.data.info.speed) === 0) {
  1516. status = '静止(' + common.formatSeconds(resp.data.data.info.heart_time - resp.data.data.info.gps_time, false) + ')';
  1517. stat = 'static';
  1518. } else {
  1519. status = '行驶(' + resp.data.data.info.speed + 'Km/h)';
  1520. stat = 'running';
  1521. }
  1522. } else {
  1523. status =
  1524. '离线(' +
  1525. common.formatSeconds(
  1526. new Date().getTime() / 1000 -
  1527. (resp.data.data.info.heart_time === undefined ? resp.data.data.info.gps_time : resp.data.data.info.heart_time),
  1528. false
  1529. ) +
  1530. ')';
  1531. stat = 'offline';
  1532. }
  1533. if (init) {
  1534. this.setData({
  1535. longitude: resp.data.data.info.last_location.lng,
  1536. latitude: resp.data.data.info.last_location.lat
  1537. });
  1538. }
  1539. var device_info = resp.data.data.info;
  1540. device_info.signalType = '0';
  1541. this.setData({
  1542. locationGpsType: device_info.signalType
  1543. });
  1544. var device_marker = {
  1545. id: 2,
  1546. latitude: resp.data.data.info.last_location.lat,
  1547. longitude: resp.data.data.info.last_location.lng,
  1548. name: '',
  1549. iconPath: this.iconList[resp.data.data.info.icon] ? this.iconList[resp.data.data.info.icon][stat] : '/static/resource/images/weizhi2.png',
  1550. width: 35,
  1551. height: 35,
  1552. zIndex: 10
  1553. };
  1554. // this.setData({
  1555. // marker: this.data.marker.concat(device_marker)
  1556. // })
  1557. this.setData({
  1558. gpsMarker: [device_marker]
  1559. });
  1560. this.setData({
  1561. marker: this.gpsMarker.concat(this.trackMarker, this.alarmMarker, this.playMarker, this.deviceMarker)
  1562. });
  1563. // this.setData({
  1564. // marker: this.data.deviceMarker.concat(this.data.trackMarker, this.data.alarmMarker, this.data.playMarker)
  1565. // })
  1566. console.log('marker');
  1567. console.log(this.marker);
  1568. //this.data.deviceMarker.concat(this.data.trackMarker, this.data.alarmMarker, this.data.playMarker)
  1569. this.setData({
  1570. macid: deviceInfo.mac_id,
  1571. deviceInfo: device_info,
  1572. gps: resp.data.data.info.gpscount,
  1573. gsm: parseInt(resp.data.data.info.online) === 0 ? 0 : resp.data.data.info.gsmlevel <= 15 ? 3 : resp.data.data.info.gsmlevel > 18 ? 5 : 4,
  1574. status: status,
  1575. deviceMarker: [device_marker],
  1576. circles: [
  1577. {
  1578. latitude: resp.data.data.info.last_location.lat,
  1579. longitude: resp.data.data.info.last_location.lng,
  1580. color: '#6495ED1F',
  1581. fillColor: '#6495ED1F',
  1582. radius: 1000,
  1583. strokeWidth: 1
  1584. }
  1585. ]
  1586. });
  1587. //this.setMarkers()
  1588. // this.setData({
  1589. // marker: this.data.deviceMarker.concat(this.data.deviceMarker)
  1590. // })
  1591. console.log(resp.data.data.info);
  1592. this.setData({
  1593. batteryWidth: parseInt((this.deviceInfo.quantity / 100) * 37)
  1594. });
  1595. console.log(this.batteryWidth);
  1596. const me = this;
  1597. const pData = {
  1598. lng: resp.data.data.info.last_location.lng,
  1599. lat: resp.data.data.info.last_location.lat,
  1600. pi: 'wx_deviceLocal'
  1601. };
  1602. http.postApi(config.API_MAP_REGEO, pData, function (resp) {
  1603. if (resp.data.code === 200) {
  1604. var jsonData = resp.data.data.data;
  1605. if (jsonData.code === 0) {
  1606. const address = jsonData.address;
  1607. me.setData({
  1608. address: address,
  1609. locationGpsAdress: address
  1610. });
  1611. }
  1612. }
  1613. });
  1614. // qqmapsdk.reverseGeocoder({
  1615. // location: {
  1616. // latitude: resp.data.data.info.last_location.latitude,
  1617. // longitude: resp.data.data.info.last_location.longitude
  1618. // },
  1619. // success: function (res) {
  1620. // console.log(res)
  1621. // const formatted_addresses = res.result.formatted_addresses
  1622. // const address = res.result.address //+ formatted_addresses.recommend
  1623. // me.setData({
  1624. // address: address,
  1625. // locationGpsAdress: address
  1626. // })
  1627. // }
  1628. // })
  1629. } else {
  1630. common.simpleToast(resp.data.msg);
  1631. clearInterval(this.locationTimer);
  1632. setTimeout(function () {
  1633. uni.navigateBack({
  1634. delta: 1
  1635. });
  1636. }, 1500);
  1637. }
  1638. }
  1639. );
  1640. }
  1641. },
  1642. bindMarkertap(e) {
  1643. if (e.markerId == 1 || e.markerId == 2) {
  1644. if (e.markerId == 1) {
  1645. var deviceInfo = this.deviceInfo;
  1646. deviceInfo.signalType = this.locationType;
  1647. this.setData({
  1648. deviceInfo: deviceInfo,
  1649. address: this.locationAdress
  1650. });
  1651. }
  1652. if (e.markerId == 2) {
  1653. var deviceInfo = this.deviceInfo;
  1654. deviceInfo.signalType = this.locationGpsType;
  1655. this.setData({
  1656. deviceInfo: deviceInfo,
  1657. address: this.locationGpsAdress
  1658. });
  1659. }
  1660. this.setData({
  1661. showInfo: !this.showInfo
  1662. });
  1663. }
  1664. },
  1665. bindTapMap(e) {
  1666. this.setData({
  1667. showInfo: false
  1668. });
  1669. if (this.selectFence != null) {
  1670. var fence = this.selectFence;
  1671. fence.latitude = e.detail.latitude;
  1672. fence.longitude = e.detail.longitude;
  1673. this.setData({
  1674. selectFence: fence,
  1675. circles: [
  1676. {
  1677. latitude: fence.latitude,
  1678. longitude: fence.longitude,
  1679. radius: parseInt(fence.radius),
  1680. color: '#6495ED1F',
  1681. fillColor: '#6495ED1F',
  1682. strokeWidth: 1
  1683. }
  1684. ]
  1685. });
  1686. }
  1687. },
  1688. bindSendCommand: function (e) {
  1689. this.sendCommand(e.currentTarget.dataset.cmd);
  1690. },
  1691. sendCommand: function (cmd) {
  1692. uni.showModal({
  1693. content: '确定发送指令吗?',
  1694. showCancel: true,
  1695. cancelText: '取消',
  1696. confirmText: '确定',
  1697. success: (res) => {
  1698. console.log(res);
  1699. if (res.confirm) {
  1700. common.loading();
  1701. http.postApi(
  1702. config.API_BATTERY_SEND_COMMAND,
  1703. {
  1704. macid: this.macid,
  1705. cmd: cmd
  1706. },
  1707. function (resp) {
  1708. if (resp.data.code === 200) {
  1709. uni.hideLoading();
  1710. common.simpleToast('操作成功');
  1711. } else {
  1712. common.simpleToast(resp.data.msg);
  1713. }
  1714. }
  1715. );
  1716. }
  1717. },
  1718. fail: function (res) {},
  1719. complete: function (res) {}
  1720. });
  1721. },
  1722. bindTrace() {
  1723. if (this.trace) {
  1724. this.setData({
  1725. trace: false,
  1726. tracePoints: []
  1727. });
  1728. this.setPolylines();
  1729. clearInterval(this.traceTimer);
  1730. } else {
  1731. this.setData({
  1732. trace: true
  1733. });
  1734. this.traceTimer = setInterval(() => {
  1735. this.setData({
  1736. traceTime: this.traceTime + 1
  1737. });
  1738. }, 1000);
  1739. }
  1740. },
  1741. bindNavigate() {
  1742. //使用微信内置地图查看标记点位置,并进行导航
  1743. /*
  1744. console.log(this.data.longitude);
  1745. console.log(this.data.latitude);
  1746. console.log(this.data.longitude_my);
  1747. console.log(this.data.latitude_my);
  1748. */
  1749. const latitude = this.latitude;
  1750. const longitude = this.longitude;
  1751. uni.openLocation({
  1752. latitude,
  1753. //要去的纬度-地址
  1754. longitude,
  1755. //要去的经度-地址
  1756. scale: 11
  1757. });
  1758. },
  1759. bindCloseTrack() {
  1760. this.setData({
  1761. trackPoints: [],
  1762. trackMarker: [],
  1763. trackStopList: [],
  1764. nowPlayIndex: 0,
  1765. playMarker: []
  1766. });
  1767. this.setMarkers();
  1768. this.setPolylines();
  1769. },
  1770. bindFencePopupOpen() {
  1771. this.setData({
  1772. fencePopupShow: true
  1773. });
  1774. },
  1775. bindFencePopupClose() {
  1776. this.setData({
  1777. fencePopupShow: false
  1778. });
  1779. },
  1780. MoveToFence(event, _dataset) {
  1781. /* ---处理dataset begin--- */
  1782. this.handleDataset(event, _dataset);
  1783. /* ---处理dataset end--- */
  1784. var map = uni.createMapContext('myMap');
  1785. const fence = Object.assign({}, event.currentTarget.dataset.p);
  1786. this.setData({
  1787. selectFence: fence,
  1788. circles: [
  1789. {
  1790. latitude: fence.latitude,
  1791. longitude: fence.longitude,
  1792. radius: parseInt(fence.radius),
  1793. color: '#6495ED1F',
  1794. fillColor: '#6495ED1F',
  1795. strokeWidth: 1
  1796. }
  1797. ],
  1798. fencePopupShow: false,
  1799. latitude: fence.latitude,
  1800. longitude: fence.longitude
  1801. });
  1802. /*map.moveToLocation({
  1803. latitude: event.currentTarget.dataset.p.latitude,
  1804. longitude: event.currentTarget.dataset.p.longitude
  1805. })*/
  1806. },
  1807. addFence() {
  1808. var map = uni.createMapContext('myMap');
  1809. map.getCenterLocation({
  1810. success: (res) => {
  1811. const fence = {
  1812. name: '',
  1813. type: '0',
  1814. latitude: res.latitude,
  1815. longitude: res.longitude,
  1816. radius: 100
  1817. };
  1818. this.setData({
  1819. selectFence: fence,
  1820. circles: [
  1821. {
  1822. latitude: fence.latitude,
  1823. longitude: fence.longitude,
  1824. radius: parseInt(fence.radius),
  1825. color: '#6495ED1F',
  1826. fillColor: '#6495ED1F',
  1827. strokeWidth: 1
  1828. }
  1829. ],
  1830. fencePopupShow: false
  1831. });
  1832. }
  1833. });
  1834. },
  1835. loadFenceList() {
  1836. common.loading();
  1837. const deviceInfo = storage.getSelectedDeviceInfo();
  1838. http.postApi(
  1839. config.API_FENCE_LIST,
  1840. {
  1841. macid: deviceInfo.mac_id
  1842. },
  1843. (resp) => {
  1844. uni.hideLoading();
  1845. if (resp.data.code === 200) {
  1846. var fenceList = resp.data.data.list;
  1847. this.setData({
  1848. fenceList: fenceList
  1849. });
  1850. } else {
  1851. common.simpleToast(resp.data.msg);
  1852. }
  1853. }
  1854. );
  1855. },
  1856. bindFenceClose() {
  1857. this.setData({
  1858. selectFence: null,
  1859. circles: [],
  1860. fencePopupShow: true
  1861. });
  1862. },
  1863. onFenceNameChange(e) {
  1864. var fence = this.selectFence;
  1865. fence.name = e.detail.value;
  1866. this.setData({
  1867. selectFence: fence
  1868. });
  1869. },
  1870. onFenceTypeChange(e) {
  1871. var fence = this.selectFence;
  1872. fence.type = e.detail;
  1873. this.setData({
  1874. selectFence: fence
  1875. });
  1876. },
  1877. onFenceRadiusDrag(e) {
  1878. var fence = this.selectFence;
  1879. fence.radius = e.detail.value;
  1880. this.setData({
  1881. selectFence: fence
  1882. /*circles: [{
  1883. latitude: fence.latitude,
  1884. longitude: fence.longitude,
  1885. radius: parseInt(fence.radius),
  1886. color: '#6495EDBB',
  1887. fillColor: '#6495ED1F',
  1888. strokeWidth: 1
  1889. }],*/
  1890. });
  1891. },
  1892. onFenceRadiusChange(e) {
  1893. var fence = this.selectFence;
  1894. fence.radius = e.detail.value;
  1895. // this.setData({circles:[]})
  1896. var startSlide = new Date().getTime();
  1897. if (startSlide - this.endSlide > 100) {
  1898. this.setData({
  1899. endSlide: startSlide
  1900. });
  1901. this.setData({
  1902. selectFence: fence,
  1903. circles: [
  1904. {
  1905. latitude: fence.latitude,
  1906. longitude: fence.longitude,
  1907. radius: parseInt(fence.radius),
  1908. color: '#6495ED1F',
  1909. fillColor: '#6495ED1F',
  1910. strokeWidth: 1
  1911. }
  1912. ]
  1913. });
  1914. }
  1915. },
  1916. onFenceRadiusMinus() {
  1917. var fence = this.selectFence;
  1918. if (fence.radius > 1) {
  1919. fence.radius = parseInt(fence.radius) - 100;
  1920. this.setData({
  1921. selectFence: fence,
  1922. circles: [
  1923. {
  1924. latitude: fence.latitude,
  1925. longitude: fence.longitude,
  1926. radius: parseInt(fence.radius),
  1927. color: '#6495ED1F',
  1928. fillColor: '#6495ED1F',
  1929. strokeWidth: 1
  1930. }
  1931. ]
  1932. });
  1933. }
  1934. },
  1935. onFenceRadiusPlus() {
  1936. var fence = this.selectFence;
  1937. if (fence.radius < 10000) {
  1938. fence.radius = parseInt(fence.radius) + 100;
  1939. this.setData({
  1940. selectFence: fence,
  1941. circles: [
  1942. {
  1943. latitude: fence.latitude,
  1944. longitude: fence.longitude,
  1945. radius: parseInt(fence.radius),
  1946. color: '#6495ED1F',
  1947. fillColor: '#6495ED1F',
  1948. strokeWidth: 1
  1949. }
  1950. ]
  1951. });
  1952. }
  1953. },
  1954. bindFenceSave() {
  1955. var fence = this.selectFence;
  1956. if (!fence.name) {
  1957. common.simpleToast('请输入围栏名称');
  1958. return;
  1959. }
  1960. if (fence != null) {
  1961. common.loading();
  1962. const deviceInfo = storage.getSelectedDeviceInfo();
  1963. if (fence.id) {
  1964. http.postApi(
  1965. config.API_FENCE_EDIT,
  1966. Object.assign(
  1967. {
  1968. macid: deviceInfo.mac_id
  1969. },
  1970. fence
  1971. ),
  1972. (resp) => {
  1973. uni.hideLoading();
  1974. if (resp.data.code === 200) {
  1975. this.loadFenceList();
  1976. } else {
  1977. common.simpleToast(resp.data.msg);
  1978. }
  1979. this.setData({
  1980. selectFence: null,
  1981. circles: [],
  1982. fencePopupShow: true
  1983. });
  1984. }
  1985. );
  1986. } else {
  1987. http.postApi(
  1988. config.API_FENCE_ADD,
  1989. Object.assign(
  1990. {
  1991. macid: deviceInfo.mac_id
  1992. },
  1993. fence
  1994. ),
  1995. (resp) => {
  1996. uni.hideLoading();
  1997. if (resp.data.code === 200) {
  1998. this.loadFenceList();
  1999. } else {
  2000. common.simpleToast(resp.data.msg);
  2001. }
  2002. this.setData({
  2003. selectFence: null,
  2004. circles: [],
  2005. fencePopupShow: true
  2006. });
  2007. }
  2008. );
  2009. }
  2010. }
  2011. },
  2012. delFence() {
  2013. var fence = this.selectFence;
  2014. if (fence != null && fence.id) {
  2015. common.loading();
  2016. const deviceInfo = storage.getSelectedDeviceInfo();
  2017. http.postApi(
  2018. config.API_FENCE_DEL,
  2019. {
  2020. macid: deviceInfo.mac_id,
  2021. id: fence.id
  2022. },
  2023. (resp) => {
  2024. uni.hideLoading();
  2025. if (resp.data.code === 200) {
  2026. this.loadFenceList();
  2027. } else {
  2028. common.simpleToast(resp.data.msg);
  2029. }
  2030. this.setData({
  2031. selectFence: null,
  2032. circles: [],
  2033. fencePopupShow: true
  2034. });
  2035. }
  2036. );
  2037. }
  2038. },
  2039. moveToLocation: function () {
  2040. //console.log('move to')
  2041. this.mapCtx.moveToLocation();
  2042. //this.setData({ showShopInfo: false, scale: 14 })
  2043. },
  2044. mapChange: function (e) {
  2045. this.setData({
  2046. mapParams: e.detail.mapParams
  2047. });
  2048. }
  2049. }
  2050. };
  2051. </script>
  2052. <style>
  2053. @import './deviceLocal.css';
  2054. </style>