visitPage.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. <template>
  2. <!-- 拜访详情 -->
  3. <div class="visitPage">
  4. <div class="headers">
  5. <van-nav-bar class="navBar" :title="$route.meta.title" left-arrow @click-left="onClickLeft" />
  6. </div>
  7. <div class="container">
  8. <div class="card">
  9. <div class="title">
  10. {{ urlParameter.chainName }}(<span style="color: #0057ba">{{
  11. urlParameter.chainCode
  12. }}</span
  13. >)
  14. </div>
  15. <div class="info1">身份类型:{{ urlParameter.typeName2 }}</div>
  16. <div class="info1">上次拜访备注:{{ notes }}</div>
  17. <div class="info1">拜访时长:{{ showTime }}</div>
  18. <div class="info1">
  19. <span> 上次拜访时间:{{ parseTime(urlParameter.hisTime) }} </span>
  20. </div>
  21. <div class="info1">
  22. <span @click="openVisitHistory" class="f-blue" style="font-weight: bold">
  23. <van-icon :name="require('@/assets/icon/history.png')" />
  24. 历史拜访记录
  25. </span>
  26. </div>
  27. <van-button
  28. type="info"
  29. style="
  30. float: right;
  31. background: #ed5565;
  32. border-color: #ed5565;
  33. color: #fff;
  34. margin: 10px 0;
  35. border-radius: 5px;
  36. top: -40px;
  37. "
  38. size="small"
  39. plain
  40. class="centerBtn"
  41. @click="onstopVisit"
  42. >取消拜访</van-button
  43. >
  44. </div>
  45. <div
  46. v-if="addShow1"
  47. style="color: #999; font-size: 12px; padding: 10px; background-color: #f5f5f5">
  48. <van-icon name="info-o" />&nbsp;今天拜访拍照内容,将同步传给部主管查阅。
  49. </div>
  50. <div class="card">
  51. <div
  52. class="info"
  53. v-for="(item, index) in list"
  54. :key="index"
  55. @click="visitTask(item, index)">
  56. <span class="must" v-show="item.isMust == '0' || item.isMust == '2'">*</span>
  57. <span class="must" v-show="item.isMust != '0' && item.isMust != '2'">&nbsp;</span>
  58. <p style="width: 74%; margin: 0; line-height: 24px; display: inline-block">
  59. {{ item.taskName }}
  60. </p>
  61. <span v-show="item.processKey != null" class="processIco">
  62. <van-icon :name="require('@/assets/icon/sp.png')" size="16" />
  63. </span>
  64. <span v-show="!item.success" class="arrow" style="background-color: #fff; color: #444"
  65. ><van-icon name="arrow"
  66. /></span>
  67. <span v-show="item.success" class="arrow" tyle="background-color: #0057ba"
  68. ><van-icon name="success"
  69. /></span>
  70. </div>
  71. </div>
  72. </div>
  73. <div class="tc" style="padding: 0 16px">
  74. <van-button class="submitBtn" block type="info" color="#0057ba" @click="endVisitsFn">
  75. 提交拜访
  76. </van-button>
  77. </div>
  78. <br />
  79. <van-dialog v-model="shows">
  80. <div class="tipTitleBox" style="padding: 10px">
  81. <p class="p">近三次拜访备注</p>
  82. <div
  83. v-for="item in visitsRemarks"
  84. style="border-bottom: 1px solid #e8e8e8; font-size: 14px; padding: 10px 0">
  85. <p>拜访时间:{{ item.stopTime }}</p>
  86. <p>备注:{{ item.visitRemark }}</p>
  87. </div>
  88. </div>
  89. </van-dialog>
  90. <div id="allmap"></div>
  91. </div>
  92. </template>
  93. <script>
  94. import {
  95. getChainsGroupTask,
  96. endVisits,
  97. stopVisit,
  98. editDwellTime,
  99. getVisitTasks,
  100. } from '@/api/agentList';
  101. import store from '@/store';
  102. export default {
  103. name: 'visitPage',
  104. data() {
  105. return {
  106. notes: '',
  107. visitModel: '1',
  108. shows: false,
  109. flag: true,
  110. questionsshow: false,
  111. uploadImgshow: false,
  112. imgs: [],
  113. uploadImages: [],
  114. uploadid1: 'uploadid1',
  115. uploadid2: 'uploadid2',
  116. iscuxiao: false,
  117. text: '',
  118. radio: '',
  119. uploadImgEditText: '编辑',
  120. isEdit: false,
  121. chainId: '',
  122. rdId: '',
  123. lat: '',
  124. lon: '',
  125. list: [],
  126. storeGroupId: '',
  127. addShow1: false,
  128. visitId: '',
  129. addressLine: '',
  130. storeCategory: '',
  131. storeName: '',
  132. contactName: '',
  133. urlParameter: '',
  134. uType: '-1',
  135. showOrderButton: null,
  136. visitsRemarks: [],
  137. location: {
  138. lat: '34.6174',
  139. lon: '112.44039',
  140. },
  141. address: '',
  142. showTime: '00:00:00',
  143. city: '',
  144. locationAccuracy: '',
  145. id: '89',
  146. startTime: null,
  147. timeN: null,
  148. };
  149. },
  150. created() {},
  151. mounted() {},
  152. activated() {
  153. // 是否请求任务列表接口
  154. let getRequestFlage = localStorage.getItem('getRequestFlage');
  155. if (getRequestFlage != 'true') return;
  156. this.urlParameter = this.$route.query;
  157. this.chainId = this.$route.query.chainId + '';
  158. this.visitId = this.$route.query.visitId || localStorage.getItem('visitId');
  159. this.chainCode = this.$route.query.chainCode;
  160. this.rdId = this.$route.query.rdId || '';
  161. this.addressLine = this.$route.query.addressLine;
  162. this.storeCategory = this.$route.query.storeCategory;
  163. this.chainName = this.$route.query.chainName;
  164. this.contactName = this.$route.query.contactName;
  165. this.lat = this.$route.query.lat + '';
  166. this.lon = this.$route.query.lon + '';
  167. this.visitModel = this.$route.query.visitModel + '';
  168. this.uType = localStorage.getItem('uType');
  169. if (localStorage.getItem('visitId') != null) {
  170. this.visitId = localStorage.getItem('visitId');
  171. setTimeout(() => {
  172. this.addVisits();
  173. });
  174. } else {
  175. setTimeout(() => {
  176. this.addVisits();
  177. });
  178. }
  179. },
  180. methods: {
  181. animation() {
  182. //前时间减去上次开启时间减去暂停累计时间
  183. var times = new Date().getTime() - new Date(this.startTime).getTime();
  184. var house = Math.floor(times / 3600000); //毫秒转化为分钟
  185. var minutes = Math.floor(times / 60000 - house * 60); //毫秒转化为分钟
  186. var minutes1 = Math.floor(times / 60000); //毫秒转化为分钟
  187. var seconds = Math.floor((times - minutes1 * 60000) / 1000); //已知分钟将time减去分钟 除去1000得出 秒
  188. var ms = Math.floor((times - minutes1 * 60000 - seconds * 1000) / 10); //
  189. this.showTime =
  190. (house < 10 ? '0' + house : house) +
  191. ':' +
  192. (minutes < 10 ? '0' + minutes : minutes) +
  193. ':' +
  194. (seconds < 10 ? '0' + seconds : seconds);
  195. // +":"
  196. // +(ms<10 ? "0"+ms : ms);
  197. },
  198. // 结束拜访
  199. onstopVisit() {
  200. this.$dialog
  201. .confirm({
  202. confirmButtonText: '确定',
  203. cancelButtonText: '取消',
  204. title: '系统提示',
  205. message: '取消拜访会清空填写的拜访内容和照片,是否确认?',
  206. })
  207. .then(() => {
  208. stopVisit({ visitsId: this.visitId }).then((res) => {
  209. if (res.code == 200) {
  210. localStorage.removeItem('visitId');
  211. this.$dialog
  212. .alert({
  213. title: '系统提示',
  214. message: '拜访中任务结束成功!',
  215. })
  216. .then(() => {
  217. store.dispatch('setDeviceOutsidePage', true);
  218. this.onClickLeft();
  219. });
  220. } else {
  221. this.$dialog.alert({
  222. title: '系统提示',
  223. message: res.msg,
  224. });
  225. }
  226. });
  227. });
  228. },
  229. getLocation() {
  230. this.toastLoading(0, '加载中...', true);
  231. // 授权
  232. getTicketFun()
  233. .then(() => {
  234. getPosition(true)
  235. .then((res) => {
  236. this.toastLoading().clear();
  237. let { TXisBD } = res;
  238. this.lat = TXisBD.lat;
  239. this.lon = TXisBD.lon;
  240. this.addVisits();
  241. })
  242. .catch((error) => {
  243. this.toastLoading().clear();
  244. this.$dialog.alert({
  245. message: error,
  246. });
  247. });
  248. })
  249. .catch(() => {
  250. this.toastLoading().clear();
  251. this.finished = true;
  252. });
  253. },
  254. editDwellTimes() {
  255. let dwellTime = this.weekend(localStorage.getItem('startTime'), new Date()) + '';
  256. editDwellTime({ dwellTime: dwellTime, visitsId: this.visitId }).then((res) => {
  257. if (res.code == 200) {
  258. localStorage.removeItem('visitId');
  259. }
  260. });
  261. },
  262. weekend(time1) {
  263. var arrtime1 = new Date(time1).getTime();
  264. var arrtime2 = new Date().getTime();
  265. return Math.round((arrtime2 - arrtime1) / 1000);
  266. },
  267. addVisits() {
  268. var postType = localStorage.getItem('postType');
  269. if (postType == 'GZ') {
  270. this.addShow1 = false;
  271. } else {
  272. this.addShow1 = true;
  273. }
  274. var visitEntry = '';
  275. if (this.urlParameter.tabVal == '0') {
  276. visitEntry = '2';
  277. } else {
  278. visitEntry = '1';
  279. }
  280. if (this.$route.query.shopCode != undefined) {
  281. this.chainCode = this.$route.query.shopCode;
  282. }
  283. var that = this;
  284. var map = new TMap.Map('allmap', {
  285. zoom: 14,
  286. center: new TMap.LatLng(39.986785, 116.301012),
  287. });
  288. var geocoder = new TMap.service.Geocoder();
  289. var markers = new TMap.MultiMarker({
  290. map: map,
  291. geometries: [],
  292. });
  293. markers.setGeometries([]);
  294. var input = [that.urlParameter.marklat, that.urlParameter.marklon];
  295. var location = new TMap.LatLng(Number(input[0]), Number(input[1]));
  296. geocoder.getAddress({ location: location }).then(
  297. function (result) {
  298. var addresses = result.result.formatted_addresses;
  299. let address_component = result.result.address_component;
  300. var params = {
  301. chainId: that.chainId,
  302. chainCode: that.chainCode,
  303. visitEntry: visitEntry,
  304. lat: that.urlParameter.latNew,
  305. lon: that.urlParameter.lonNew,
  306. visitModel: that.visitModel,
  307. routeDetailsId: that.rdId,
  308. visitSource: '1',
  309. locationCity: '',
  310. locationRemark: '',
  311. locationAccuracy: that.urlParameter.PointSum,
  312. province: address_component.province,
  313. city: address_component.city,
  314. district: address_component.district,
  315. };
  316. if (addresses) {
  317. params.locationRemark = addresses.recommend;
  318. that.address = addresses.recommend;
  319. }
  320. that.locationAccuracy = that.urlParameter.PointSum;
  321. that.city = '';
  322. localStorage.setItem('address', '');
  323. if (that.visitId != null) {
  324. params.id = that.visitId;
  325. }
  326. let loading2 = that.$toast.loading({
  327. duration: 0,
  328. message: '加载中...',
  329. forbidClick: true,
  330. });
  331. getVisitTasks(params).then((res) => {
  332. loading2.clear();
  333. if (res.code == 200) {
  334. localStorage.setItem('visitId', res.data.visitId);
  335. that.notes = res.data.notes;
  336. that.visitId = res.data.visitId;
  337. that.list = res.data.sfaTaskList;
  338. that.storeGroupId = res.data.storeGroupId;
  339. that.showOrderButton = res.data.showOrderButton;
  340. that.startTime = res.data.startTime;
  341. that.timeN = setInterval(that.animation, 16);
  342. that.visitsRemarks = res.data.visitsRemarks;
  343. } else {
  344. that.visitId = res.data;
  345. that.$toast(res.msg);
  346. }
  347. });
  348. },
  349. function (err) {
  350. var params = {
  351. chainId: that.chainId,
  352. chainCode: that.chainCode,
  353. visitEntry: visitEntry,
  354. lat: that.urlParameter.latNew,
  355. lon: that.urlParameter.lonNew,
  356. visitModel: that.visitModel,
  357. routeDetailsId: that.rdId,
  358. visitSource: '1',
  359. locationCity: '',
  360. locationRemark: '',
  361. locationAccuracy: that.urlParameter.PointSum,
  362. };
  363. that.locationAccuracy = that.urlParameter.PointSum;
  364. that.city = '';
  365. that.address = '';
  366. localStorage.setItem('address', '');
  367. if (that.visitId != null) {
  368. params.id = that.visitId;
  369. }
  370. let loading2 = that.$toast.loading({
  371. duration: 0,
  372. message: '加载中...',
  373. forbidClick: true,
  374. });
  375. getVisitTasks(params).then((res) => {
  376. loading2.clear();
  377. if (res.code == 200) {
  378. localStorage.setItem('visitId', res.data.visitId);
  379. that.notes = res.data.notes;
  380. that.visitId = res.data.visitId;
  381. that.list = res.data.sfaTaskList;
  382. that.storeGroupId = res.data.storeGroupId;
  383. that.showOrderButton = res.data.showOrderButton;
  384. that.startTime = res.data.startTime;
  385. that.timeN = setInterval(that.animation, 16);
  386. that.visitsRemarks = res.data.visitsRemarks;
  387. } else {
  388. that.visitId = res.data;
  389. that.$toast(res.msg);
  390. }
  391. });
  392. },
  393. );
  394. },
  395. visitTask(val, index) {
  396. localStorage.setItem('getRequestFlage', 'false');
  397. this.$router.push({
  398. path: '/visitTask',
  399. query: {
  400. chainId: this.chainId,
  401. chainCode: this.urlParameter.chainCode,
  402. visitId: this.visitId,
  403. ids: index,
  404. taskId: val.taskId,
  405. storeGroupId: this.storeGroupId,
  406. taskType: val.taskType,
  407. photoType: val.photoType,
  408. lat: this.lat,
  409. lon: this.lon,
  410. visitSource: '1',
  411. visitModel: this.visitModel,
  412. locationCity: this.city,
  413. locationRemark: this.address,
  414. locationAccuracy: this.locationAccuracy,
  415. photoIdentifyType: val.photoIdentifyType,
  416. inspectionType: val.inspectionType,
  417. deviceCode: val.deviceCode,
  418. putInCode: val.putInCode,
  419. equipmentCode: val.equipmentCode,
  420. },
  421. });
  422. },
  423. onClickLeft() {
  424. localStorage.setItem('getRequestFlage', 'true');
  425. if (this.$route.query.urltype == 1) {
  426. window.location.replace(window.location.origin + '/mobile/home');
  427. } else {
  428. // 返回上一页不会刷新页面
  429. this.$router.go(-1);
  430. }
  431. },
  432. onshouow() {
  433. this.uploadshow = false;
  434. this.questionsshow = false;
  435. },
  436. uploadImgEdit() {
  437. if (this.uploadImgEditText == '编辑') {
  438. this.uploadImgEditText = '完成';
  439. } else {
  440. this.uploadImgEditText = '编辑';
  441. this.uploadImgshow = false;
  442. }
  443. },
  444. deleteImg(index) {
  445. this.imgs.splice(index, 1);
  446. },
  447. questionClick(item) {
  448. console.log(item);
  449. if (item.isUpload) {
  450. this.uploadshow = true;
  451. } else if (item.isQuestion) {
  452. this.questionsshow = true;
  453. }
  454. },
  455. endVisitsFn() {
  456. if (this.list.length == 0) {
  457. this.$toast('暂无任务提交');
  458. return;
  459. }
  460. for (var vl = 0; vl < this.list.length; vl++) {
  461. if (this.list[vl].isMust == '0') {
  462. if (!this.list[vl].success) {
  463. this.$toast(this.list[vl].taskName + '任务未完成');
  464. return;
  465. }
  466. }
  467. }
  468. let loading1 = this.$toast.loading({
  469. duration: 0,
  470. message: '加载中...',
  471. forbidClick: true,
  472. });
  473. let dwellTime = this.weekend(localStorage.getItem('startTime'), new Date());
  474. let chainCode = this.chainCode;
  475. if (this.$route.query.shopCode != undefined) {
  476. chainCode = this.$route.query.shopCode;
  477. }
  478. if (this.flag) {
  479. this.flag = false;
  480. this.timer = null;
  481. this.timer = setTimeout(() => {
  482. this.flag = true;
  483. }, 5000);
  484. endVisits({
  485. visitSource: '1',
  486. storeGroupId: this.storeGroupId,
  487. id: this.visitId,
  488. chainCode: chainCode,
  489. dwellTime: dwellTime,
  490. visitModel: this.$route.query.visitModel,
  491. }).then((res) => {
  492. this.flag = true;
  493. loading1.clear();
  494. if (res.code == 200) {
  495. this.editDwellTimes();
  496. store.dispatch('setDeviceOutsidePage', true);
  497. if (this.$route.query.linkType == 6) {
  498. window.location.replace(window.location.origin + '/mobile/topStore?info=y');
  499. } else {
  500. if (this.$route.query.urltype == 1) {
  501. window.location.replace(window.location.origin + '/mobile/home');
  502. } else {
  503. this.onClickLeft();
  504. // window.location.replace(
  505. // window.location.origin + '/mobile/outsidelist/index?info=y'
  506. // );
  507. }
  508. }
  509. } else {
  510. this.$toast({
  511. message: res.msg,
  512. duration: 5000,
  513. });
  514. }
  515. });
  516. }
  517. },
  518. newimgarr1(val) {
  519. this.imgs = val;
  520. },
  521. uploadImgShowFn() {
  522. this.uploadImgshow = true;
  523. if (this.uploadImages.length <= 0) {
  524. this.uploadImgEditText = '';
  525. }
  526. },
  527. previewsImg(index) {
  528. ImagePreview({
  529. images: this.uploadImages,
  530. startPosition: index,
  531. onClose() {
  532. // do something
  533. },
  534. });
  535. },
  536. // 打开历史拜访
  537. openVisitHistory() {
  538. this.$router.push({
  539. name: 'visitHistory',
  540. query: {
  541. ...this.urlParameter,
  542. },
  543. });
  544. },
  545. },
  546. destroyed() {
  547. this.timeN = null;
  548. clearInterval(this.timeN);
  549. },
  550. };
  551. </script>
  552. <style lang="scss" scoped>
  553. .visitPage {
  554. width: 100%;
  555. height: 100%;
  556. overflow: hidden;
  557. display: flex;
  558. flex-direction: column;
  559. .container {
  560. overflow-y: auto;
  561. flex: 1;
  562. margin-bottom: 10px;
  563. background-color: white;
  564. }
  565. }
  566. .navBarOverlay {
  567. background: #fff;
  568. }
  569. .card {
  570. background: #fff;
  571. box-sizing: border-box;
  572. padding: 10px 16px;
  573. .title {
  574. line-height: 32px;
  575. font-size: 16px;
  576. font-weight: bold;
  577. color: #333;
  578. }
  579. .subtitle {
  580. line-height: 24px;
  581. font-size: 14px;
  582. color: #7b7b7b;
  583. .status {
  584. float: right;
  585. }
  586. }
  587. .info {
  588. font-size: 14px;
  589. color: #484848;
  590. padding: 14px;
  591. border-bottom: 1px solid #f1f1f1;
  592. position: relative;
  593. .arrow {
  594. float: right;
  595. display: inline-block;
  596. height: 20px;
  597. width: 20px;
  598. line-height: 20px;
  599. text-align: center;
  600. border-radius: 50%;
  601. background: #0057ba;
  602. color: #fff;
  603. font-weight: bold;
  604. font-size: 14px;
  605. position: absolute;
  606. margin-top: -10px;
  607. right: 0;
  608. top: 50%;
  609. }
  610. }
  611. .info1 {
  612. font-size: 14px;
  613. color: #666;
  614. line-height: 18px;
  615. padding: 4px 0;
  616. position: relative;
  617. .arrow {
  618. float: right;
  619. display: inline-block;
  620. height: 20px;
  621. width: 20px;
  622. line-height: 20px;
  623. text-align: center;
  624. border-radius: 50%;
  625. background: #0057ba;
  626. color: #fff;
  627. font-weight: bold;
  628. font-size: 14px;
  629. margin-top: 9px;
  630. position: absolute;
  631. right: 0;
  632. top: 50%;
  633. margin-top: -10px;
  634. }
  635. }
  636. }
  637. .must {
  638. font-size: 18px;
  639. color: #f56c6c;
  640. margin-right: 2px;
  641. }
  642. .zw {
  643. display: inline-block;
  644. width: 7px;
  645. height: 100%;
  646. }
  647. .lineGrey {
  648. height: 10px;
  649. width: 100%;
  650. background: #f1f1f1;
  651. }
  652. .submitBtn {
  653. margin: 16px 0;
  654. font-size: 18px;
  655. }
  656. .wrapper {
  657. display: flex;
  658. align-items: center;
  659. justify-content: center;
  660. height: 100%;
  661. .block {
  662. width: 100%;
  663. height: 100%;
  664. background-color: #fff;
  665. overflow: auto;
  666. }
  667. }
  668. .questionName {
  669. font-size: 16px;
  670. color: #484848;
  671. /*line-height: 40px;*/
  672. background: #f4f4f4;
  673. padding: 10px 15px;
  674. box-sizing: border-box;
  675. position: relative;
  676. display: flex;
  677. justify-content: center;
  678. .text {
  679. flex: 9;
  680. }
  681. }
  682. .answerDiv {
  683. background: #fff;
  684. padding: 0 15px 10px;
  685. .answerItem {
  686. padding: 10px 0;
  687. border-bottom: 1px solid #dedede;
  688. .name {
  689. line-height: 36px;
  690. font-size: 14px;
  691. color: #8b8b8b;
  692. }
  693. }
  694. }
  695. .border {
  696. border: 1px solid #dedede;
  697. }
  698. .ht30 {
  699. height: 30px;
  700. }
  701. .bodrder-b {
  702. border-bottom: 1px solid #dedede;
  703. }
  704. .img-box {
  705. width: 50%;
  706. /*height: 100%;*/
  707. position: relative;
  708. padding: 10px;
  709. display: inline-block;
  710. i {
  711. position: absolute;
  712. right: 2px;
  713. top: 2px;
  714. }
  715. img {
  716. width: 100%;
  717. height: 100%;
  718. }
  719. }
  720. .imgNull {
  721. text-align: center;
  722. padding-top: 100px;
  723. i {
  724. color: #dedede;
  725. }
  726. div {
  727. padding-top: 30px;
  728. font-size: 18px;
  729. font-weight: bold;
  730. }
  731. }
  732. .card .f-blue {
  733. color: #0057ba;
  734. }
  735. </style>
  736. <style>
  737. .navBarOverlay .van-nav-bar__left .van-icon {
  738. color: #8b8b8b;
  739. }
  740. .navBarOverlay .van-nav-bar__right .van-nav-bar__text {
  741. color: #333;
  742. }
  743. .ht30 .van-radio__label {
  744. color: #8b8b8b;
  745. }
  746. .van-dialog__confirm,
  747. .van-dialog__confirm:active {
  748. color: #0057ba;
  749. }
  750. #allmap {
  751. width: 20px;
  752. height: 20px;
  753. left: -1000px;
  754. position: relative;
  755. }
  756. </style>