Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
2 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925
  1. <template>
  2. <view class="statusBar" :style="{height:statusBarHeight+'px'}" v-show="isShowBar"></view>
  3. <view class="wrapper">
  4. <!-- Banner -->
  5. <view class="banner">
  6. <swiper class="swiper" circular :indicator-dots="swiper.indicatorDots" :autoplay="swiper.autoplay"
  7. :interval="swiper.interval" :duration="swiper.duration" indicator-active-color="rgba(0, 179, 139, 1)"
  8. :easing-function="swiper.easing">
  9. <block v-if="state.swiperList.length >0" v-for="item in state.swiperList" :key="item.id">
  10. <swiper-item class="swiper-item" @click="gotoLink(item)">
  11. <image :src="item.imgUrl?strReplace(item.imgUrl):fileURL + 'image/index/banner-1.png'"
  12. mode="widthFix"></image>
  13. </swiper-item>
  14. </block>
  15. <block v-else>
  16. <swiper-item class="swiper-item">
  17. <image :src="fileURL + 'image/index/banner-1.png'" mode="widthFix"></image>
  18. </swiper-item>
  19. </block>
  20. </swiper>
  21. <view class="notice">
  22. <image class="icon" :src="fileURL + 'image/index/icon-notice.png'" lazy-load="false">
  23. </image>
  24. <!-- <text class="notice-text">{{state.notice}}</text> -->
  25. <uni-notice-bar style="width: 100%;" scrollable single :text="state.notice">
  26. </uni-notice-bar>
  27. </view>
  28. </view>
  29. <!-- 按钮导航 -->
  30. <view class="nav">
  31. <view class="item-box" @click="$util.navTo('/pages/recharge/select-car',true)">
  32. <view class="item item-1">
  33. <image :src="fileURL + 'image/index/item-1.png'" />
  34. </view>
  35. <view class="text">储值卡充值</view>
  36. </view>
  37. <view class="item-box" @click="$util.navTo('/subpackage/service/search/select-car',true)">
  38. <view class="item item-2">
  39. <image :src="fileURL + 'image/index/item-2.png'" />
  40. </view>
  41. <view class="text">账单查询</view>
  42. </view>
  43. <view class="item-box" @click="$util.navTo('/subpackage/invoice/Invoice-mannager',true)">
  44. <view class="item item-3">
  45. <image :src="fileURL + 'image/index/item-3.png'" />
  46. </view>
  47. <view class="text">通行发票</view>
  48. </view>
  49. <view class="item-box" @click="$util.navTo('/subpackage/issueActivation/install-activation-order',true)">
  50. <view class="item item-4">
  51. <image :src="fileURL + 'image/index/item-4.png'" />
  52. </view>
  53. <view class="text">设备激活</view>
  54. </view>
  55. <view class="item-box" @click="$util.navTo('/subpackage/after-sale/card-loss-reporting/select-car',true)">
  56. <view class="item item-5">
  57. <image :src="fileURL + 'image/index/item-5.png'" />
  58. </view>
  59. <view class="text">设备遗失</view>
  60. </view>
  61. <!-- <view class="item-box" @click="$util.navTo('/subpackage/after-sale/rescind-carId/rescind-carId-select',true)"> -->
  62. <view class="item-box"
  63. @click="$util.navTo('/subpackage/after-sale/rescind-carId/rescind-carId-select',true)">
  64. <view class="item item-6">
  65. <image :src="fileURL + 'image/index/item-6.png'" />
  66. </view>
  67. <view class="text">解除车牌占用</view>
  68. </view>
  69. <view class="item-box"
  70. @click="$util.navTo(`/subpackage/personal-center/setting/personal-information/corrections`,true)">
  71. <view class="item item-7">
  72. <image :src="fileURL + 'image/index/item-7.png'" />
  73. </view>
  74. <view class="text">基础信息变更</view>
  75. </view>
  76. <view class="item-box" @click="$util.navTo(`/pages/service/service`,true)">
  77. <view class="item item-8">
  78. <image :src="fileURL + 'image/index/item-more.png'" />
  79. </view>
  80. <view class="text">更多</view>
  81. </view>
  82. </view>
  83. <!-- 消息滚动显示 -->
  84. <view class="backlog-notice">
  85. <notice-bar :noticeList="state.noticeList" @noticeClick="$util.msg('该功能正在开发中,敬请期待!')"></notice-bar>
  86. </view>
  87. <!--快速办理通道 -->
  88. <view class="express-lane">
  89. <view class="title">快速办理通道</view>
  90. <view class="lane">
  91. <view class="lane-item lane-1" :style="{ '--background': bgOrange }" @click="showMask(1)">
  92. <image :src="fileURL + 'image/index/icon-car.png'"></image>
  93. <view class="text">
  94. <text class="head">客车通道</text>
  95. <text class="decribe">业务内容简介</text>
  96. </view>
  97. </view>
  98. <view class="lane-item lane-2" :style="{ '--background': bgBlue }" @click="showMask(2)">
  99. <image :src="fileURL + 'image/index/icon-truck.png'"></image>
  100. <view class="text">
  101. <text class="head">货车通道</text>
  102. <text class="decribe">业务内容简介</text>
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. <!-- 办理流程 -->
  108. <view class="flow-path">
  109. <scroll-view scroll-x="true" class="scroll-view">
  110. <view class="top-menu">
  111. <view :class="item == state.tabActive ? 'tab active' : 'tab'" v-for="item in state.flowPathTabList"
  112. :key="item" @click="flowPathTabHandle(item)">
  113. <view class="border"></view>{{ item }}
  114. </view>
  115. </view>
  116. </scroll-view>
  117. <view v-if="state.tabActive === '办理流程'">
  118. <view class="flow-list">
  119. <flow-path-list :options="state.flowList"></flow-path-list>
  120. </view>
  121. </view>
  122. <view v-else-if="state.tabActive === '办理条件'">
  123. <view class="flow-list as-gravity-center"> 办理条件 </view>
  124. </view>
  125. <view v-else-if="state.tabActive === '常见问题'">
  126. <view class="flow-list as-gravity-center"> 常见问题 </view>
  127. </view>
  128. </view>
  129. </view>
  130. <!-- 高速快讯 -->
  131. <view class="news">
  132. <view class="title">高速快讯</view>
  133. <view class="news-box">
  134. <view class="news-item" @click="$util.msg('该功能正在开发中,敬请期待!')">
  135. <view class="left-text">
  136. <view class="tit">贵州高速最新施工通告,请注意贵州高速最新通告,请注意...</view>
  137. <view class="span">施工通告</view>
  138. </view>
  139. <view class="image-box">
  140. <image :src="fileURL + 'image/index/news-1.png'"></image>
  141. </view>
  142. </view>
  143. <view class="news-item" @click="$util.msg('该功能正在开发中,敬请期待!')">
  144. <view class="left-text">
  145. <view class="tit">贵州新建服务区,请注意贵州高速最新通告,请留意...</view>
  146. <view class="span">新建</view>
  147. </view>
  148. <view class="image-box">
  149. <image :src="fileURL + 'image/index/news-2.png'"></image>
  150. </view>
  151. </view>
  152. <view class="more">查看更多</view>
  153. </view>
  154. </view>
  155. <!-- 专区服务 -->
  156. <view class="service">
  157. <view class="title">专区服务</view>
  158. <view class="service-box">
  159. <view class="service-item border" @click="$util.msg('该功能正在开发中,敬请期待!')">
  160. <image :src="fileURL + 'image/index/truck-point.png'"></image>
  161. <view class="text">
  162. <view class="tit">货车积分返利</view>
  163. <view class="sub">海量商品任你选择</view>
  164. </view>
  165. </view>
  166. <view class="service-item" @click="$util.msg('该功能正在开发中,敬请期待!')">
  167. <image :src="fileURL + 'image/index/parking-bill.png'"></image>
  168. <view class="text">
  169. <view class="tit">停车场账单查询</view>
  170. <view class="sub">消费明细一目了然{{ title }}</view>
  171. </view>
  172. </view>
  173. </view>
  174. </view>
  175. <!-- ETC选择弹窗 -->
  176. <view class="mask" v-if="isShowMask">
  177. <view class="mask-content">
  178. <view class="mask-close">
  179. <image :src="fileURL + 'image/index/icon-close.png'" class="icon-closed" @click="closeMask"></image>
  180. </view>
  181. <view class="mask-title" :style="{ '--color': color }">选择ETC用户类型</view>
  182. <view class="mask-tab">
  183. <view class="tab-item active" @click="toCreatOrder('1')">
  184. <image :src="fileURL + 'image/index/icon-personal.png'"></image>
  185. <text class="tab-tit on">个人办理</text>
  186. </view>
  187. <view class="tab-item" @click="toCreatOrder('2')">
  188. <image :src="fileURL + 'image/index/icon-unit.png'"></image>
  189. <text class="tab-tit on">单位办理</text>
  190. </view>
  191. </view>
  192. </view>
  193. </view>
  194. </template>
  195. <script setup lang="ts">
  196. import {
  197. onMounted,
  198. ref
  199. } from "vue";
  200. import {
  201. onPageScroll,
  202. onLoad
  203. } from "@dcloudio/uni-app";
  204. import flowPathList from "./components/flow-path-list.vue";
  205. import {
  206. request
  207. } from "@/utils/network/request.js";
  208. import {
  209. stringToJson
  210. } from "@/utils/network/encryption.js";
  211. import {
  212. useUserStore
  213. } from "@/stores/user";
  214. import {
  215. getItem,
  216. setItem,
  217. StorageKeys
  218. } from "@/utils/storage";
  219. import {
  220. queryKey,
  221. querySwiper,
  222. envs,
  223. infoQuery,
  224. } from "@/utils/network/api.js";
  225. import {
  226. reactive
  227. } from "vue";
  228. import {
  229. fileURL
  230. } from "@/datas/fileURL.js";
  231. import {
  232. navTo,
  233. confirm
  234. } from "@/utils/utils";
  235. const bgOrange = `url(${fileURL}image/index/bg-orange.png) center center no-repeat`;
  236. const bgBlue = `url(${fileURL}image/index/bg-blue.png) center center no-repeat`;
  237. const list = reactive(["您有一条待办事项,还未办理完成"])
  238. const swiper = reactive({
  239. indicatorDots: true,
  240. autoplay: true,
  241. interval: 2000,
  242. duration: 1000,
  243. easing: "easeInOutCubic"
  244. })
  245. const state = reactive({
  246. type: 0, //0客车 1货车
  247. userType: 1, //1个人 2单位
  248. notice: "",
  249. swiperList: [],
  250. noticeList: [
  251. //公告栏列表
  252. {
  253. title: "您有一条待办事项,还未办理完成",
  254. id: 1,
  255. },
  256. {
  257. title: "XXX刚刚申请了公交车发行",
  258. id: 2,
  259. },
  260. {
  261. title: "您还有一条订单已经发货了",
  262. id: 3,
  263. },
  264. {
  265. title: "订单等您确认收货",
  266. id: 4,
  267. },
  268. {
  269. title: "最新的新闻资讯请点击哈哈哈哈哈哈哈假的假的假的假的基督教",
  270. id: 5,
  271. },
  272. ],
  273. flowPathTabList: ["办理流程", "办理条件", "常见问题"],
  274. tabActive: "办理流程",
  275. flowList: [
  276. //办理流程数据
  277. {
  278. title: "第一步:信息校验:",
  279. desc: "提交车牌号、车牌颜色、收货地址相关信息",
  280. },
  281. {
  282. title: "第二步:证件上传:",
  283. desc: "上传身份证、行驶证等相关信息",
  284. },
  285. {
  286. title: "第三步:签约代扣:",
  287. desc: "选择签约账户并关联",
  288. },
  289. {
  290. title: "第四步:产品选择:",
  291. desc: "选择购买的发行产品",
  292. },
  293. {
  294. title: "第五步:订单完成:",
  295. desc: "支付完成订单",
  296. },
  297. ],
  298. });
  299. const isShowMask = ref(false);
  300. const isShowBar = ref(false)
  301. const userStore = useUserStore();
  302. const type = 0;
  303. const title = ref("我是测试");
  304. const statusBarHeight = ref(0)
  305. //监听页面滚动
  306. onPageScroll((e) => {
  307. if (e.scrollTop > statusBarHeight.value) {
  308. isShowBar.value = true;
  309. } else {
  310. isShowBar.value = false;
  311. }
  312. });
  313. onLoad(() => {
  314. getInfo()
  315. quanKeyAction().then((val: any) => {
  316. setItem('key', val.dictTypeAndItem)
  317. })
  318. })
  319. onMounted(() => {
  320. uni.getSystemInfo({
  321. success: (e: any) => {
  322. // console.log(e.statusBarHeight);
  323. statusBarHeight.value = e.statusBarHeight;
  324. }
  325. })
  326. getSwiper()
  327. // console.log(credentialType);
  328. //参数说明
  329. // let code = "30" //请求编码
  330. // let options = {
  331. // type: 2, //type: 2,JSON格式提交数据(默认表单形式提交)
  332. // data: {
  333. // opId: getItem("openId"),
  334. // source: "WECHAT",
  335. // tabIndex: "0",
  336. // }, //请求参数
  337. // method: "POST", //提交方式(默认POST)
  338. // showLoading: true, //是否显示加载中(默认显示)
  339. // };
  340. //调用方式
  341. // request(searchOrder, options)
  342. // .then((res) => {
  343. // console.log(stringToJson(res.bizContent));
  344. // // stringToJson(res.bizContent)
  345. // })
  346. // .catch((err) => {
  347. // console.log(err);
  348. // });
  349. });
  350. //获取轮播
  351. const getSwiper = () => {
  352. let options = {
  353. type: 2, //type: 2,JSON格式提交数据(默认表单形式提交)
  354. data: {
  355. // opId: getItem("openId"),
  356. // source: "WECHAT",
  357. // tabIndex: "0",
  358. }, //请求参数
  359. method: "POST", //提交方式(默认POST)
  360. showLoading: true, //是否显示加载中(默认显示)
  361. };
  362. //调用方式
  363. request(querySwiper, options).then((res) => {
  364. console.log(stringToJson(res.bizContent));
  365. const data = stringToJson(res.bizContent)
  366. state.swiperList = data.swipers ?? []
  367. })
  368. .catch((err) => {
  369. console.log(err);
  370. });
  371. };
  372. //轮播跳转
  373. const gotoLink = (item: any) => {
  374. console.log("555555555555555555", item);
  375. };
  376. //办理流程tab选择
  377. const flowPathTabHandle = (tab) => {
  378. state.tabActive = tab;
  379. };
  380. //安装激活
  381. const goActivation = () => {
  382. uni.navigateTo({
  383. url: "/pages/order/order",
  384. });
  385. };
  386. const goToRecharge = () => {
  387. console.log("执行点击事件");
  388. console.log('321')
  389. uni.navigateTo({
  390. url: "/pages/recharge/select-car",
  391. });
  392. };
  393. //全量枚举值查询
  394. const quanKeyAction = (val: any) => {
  395. var data = {
  396. };
  397. const options = {
  398. type: 2,
  399. data: data,
  400. method: "POST",
  401. showLoading: true,
  402. };
  403. return new Promise(async (resolve, reject) => {
  404. const res = await request(queryKey, options);
  405. const data = stringToJson(res.bizContent);
  406. resolve(data);
  407. }).catch((error) => {
  408. reject(error);
  409. });
  410. }
  411. const toCreatOrder = (val: number) => {
  412. console.log(typeof(val));
  413. state.userType = val;
  414. // if (val === 1) {
  415. // // navTo(`/applyCard/essential-information?type=${state.type}&&userType=${state.userType}`)
  416. // uni.navigateTo({
  417. // url: `/subpackage/applyCard/essential-information?type=${state.type}&&userType=${state.userType}`
  418. // })
  419. // } else {
  420. // // navTo(`/applyCard/essential-information?type=${state.type}&&userType=${state.userType}`)
  421. // uni.navigateTo({
  422. // url: `/subpackage/applyCard/essential-information?type=${state.type}&&userType=${state.userType}`
  423. // })
  424. // }
  425. navTo(`/subpackage/applyCard/choice-product?type=${state.type}&&userType=${state.userType}`)
  426. closeMask();
  427. };
  428. const showMask = (val: any) => {
  429. state.type = val; //1 客车 2货车
  430. isShowMask.value = true;
  431. };
  432. const closeMask = () => {
  433. isShowMask.value = false;
  434. };
  435. // 获取文本信息----用户协议
  436. const getInfo = () => {
  437. //参数说明
  438. let options = {
  439. type: 2, //type: 2,JSON格式提交数据(默认表单形式提交)
  440. data: {
  441. businessType: 'BROADCAST' //广播栏信息
  442. }, //请求参数
  443. method: "POST", //提交方式(默认POST)
  444. showLoading: true, //是否显示加载中(默认显示)
  445. };
  446. //调用方式
  447. request(infoQuery, options)
  448. .then((res) => {
  449. let data = stringToJson(res.bizContent)
  450. console.log(data);
  451. state.notice = data.text
  452. })
  453. .catch((err) => {
  454. console.log(err);
  455. });
  456. }
  457. //替换图片地址
  458. const strReplace = (str: string) => {
  459. return str.replace('192.168.100.63:8087', envs[process.env.NODE_ENV].baseUrl)
  460. }
  461. </script>
  462. <style>
  463. page {
  464. background: #eef7f7;
  465. }
  466. </style>
  467. <style lang="scss" scoped>
  468. .statusBar {
  469. width: 100%;
  470. position: sticky;
  471. background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
  472. top: 0;
  473. left: 0;
  474. z-index: 999;
  475. }
  476. .banner {
  477. position: relative;
  478. }
  479. .banner swiper {
  480. height: 470rpx;
  481. width: 750rpx;
  482. }
  483. .banner .notice {
  484. position: absolute;
  485. background: rgba(0, 0, 0, 0.28);
  486. border-radius: 30rpx;
  487. width: 500rpx;
  488. height: 60rpx;
  489. bottom: 46rpx;
  490. left: 125rpx;
  491. display: flex;
  492. justify-content: center;
  493. align-items: center;
  494. padding: 0 20rpx;
  495. box-sizing: border-box;
  496. ::v-deep .uni-noticebar {
  497. background: none !important;
  498. margin-bottom: 0;
  499. text {
  500. font-size: 24rpx !important;
  501. color: #ffffff !important;
  502. }
  503. }
  504. }
  505. .banner .notice .icon {
  506. width: 40rpx;
  507. height: 40rpx;
  508. margin: 10rpx;
  509. }
  510. .banner .notice .notice-text {
  511. font-size: 24rpx;
  512. color: #ffffff;
  513. flex: 1;
  514. }
  515. .swiper-item image {
  516. width: 100%;
  517. height: auto;
  518. }
  519. .nav {
  520. display: flex;
  521. flex-wrap: wrap;
  522. padding: 0 35rpx;
  523. font-size: 28rpx;
  524. }
  525. .nav .item-box {
  526. display: flex;
  527. flex-direction: column;
  528. justify-content: center;
  529. align-items: center;
  530. }
  531. .nav .item {
  532. width: 80rpx;
  533. height: 80rpx;
  534. border-radius: 30rpx;
  535. display: flex;
  536. justify-content: center;
  537. align-items: center;
  538. margin: 50rpx 45rpx 20rpx 45rpx;
  539. }
  540. .nav .text {
  541. font-size: 24rpx;
  542. color: #172843;
  543. }
  544. .item-1 {
  545. background: linear-gradient(133deg, #5fff9b 0%, #00b38b 100%);
  546. }
  547. .item-2 {
  548. background: linear-gradient(-50deg, #018ffd 0%, #27fcff 100%);
  549. }
  550. .item-3 {
  551. background: linear-gradient(-47deg, #f88721 0%, #fecd61 100%);
  552. }
  553. .item-4 {
  554. background: linear-gradient(-47deg, #018ffd 0%, #27fcff 100%);
  555. }
  556. .item-5 {
  557. background: linear-gradient(-44deg, #018ffd 0%, #27fcff 100%);
  558. }
  559. .item-6 {
  560. background: linear-gradient(-50deg, #f88721 0%, #fecd61 100%);
  561. }
  562. .item-7 {
  563. background: linear-gradient(129deg, #5fff9b 0%, #00b38b 100%);
  564. }
  565. .item-8 {
  566. background: linear-gradient(124deg, #b8f0f2 0%, #62aeb1 100%);
  567. }
  568. .item image {
  569. width: 56rpx;
  570. height: 56rpx;
  571. }
  572. .express-lane {
  573. font-size: 36rpx;
  574. font-weight: 400;
  575. color: #000000;
  576. padding-top: 30rpx;
  577. // line-height: 58rpx;
  578. }
  579. .express-lane .title {
  580. padding-left: 30rpx;
  581. margin: 0rpx 0 20rpx;
  582. font-size: 32rpx;
  583. font-weight: bold;
  584. }
  585. .lane {
  586. display: flex;
  587. justify-content: space-evenly;
  588. }
  589. .lane-item {
  590. width: 330rpx;
  591. height: 150rpx;
  592. border-radius: 20rpx;
  593. display: flex;
  594. justify-content: center;
  595. align-items: center;
  596. }
  597. .lane-item image {
  598. width: 120rpx;
  599. height: 100rpx;
  600. margin: 0 18rpx;
  601. }
  602. .lane-item .text {
  603. display: flex;
  604. flex-direction: column;
  605. justify-content: center;
  606. // align-items: center;
  607. color: #ffffff;
  608. flex: 1;
  609. }
  610. .lane-item .head {
  611. font-size: 30rpx;
  612. font-weight: bold;
  613. }
  614. .lane-item .decribe {
  615. font-size: 24rpx;
  616. }
  617. .lane-1 {
  618. background: var(--background);
  619. }
  620. .lane-2 {
  621. background: var(--background);
  622. }
  623. .news {
  624. padding: 30rpx 30rpx 0 30rpx;
  625. }
  626. .news .title {
  627. font-size: 32rpx;
  628. font-weight: bold;
  629. }
  630. .news .left-text {
  631. flex: 1;
  632. margin-right: 100rpx;
  633. }
  634. .news-box {
  635. background: #ffffff;
  636. border-radius: 20rpx;
  637. padding: 0 32rpx;
  638. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  639. margin: 20rpx 0 50rpx;
  640. }
  641. .news .tit {
  642. font-size: 26rpx;
  643. color: #172843;
  644. }
  645. .news .news-item {
  646. display: flex;
  647. border-bottom: 1px solid #dcdcdc;
  648. padding: 32rpx 0 15rpx;
  649. }
  650. .news .image-box image {
  651. width: 100rpx;
  652. height: 100rpx;
  653. }
  654. .news .span {
  655. font-size: 22rpx;
  656. display: inline-block;
  657. text-align: center;
  658. background: #bae0f1;
  659. border-radius: 6rpx;
  660. color: #0a8f8a;
  661. padding: 4rpx 8rpx;
  662. }
  663. .news .more {
  664. font-size: 24rpx;
  665. text-align: center;
  666. color: #0a8f8a;
  667. padding: 22rpx 0;
  668. }
  669. .service {
  670. padding: 0 30rpx 50rpx 30rpx;
  671. }
  672. .service .title {
  673. font-size: 32rpx;
  674. font-weight: bold;
  675. }
  676. .service-box {
  677. background: #ffffff;
  678. border-radius: 20rpx;
  679. padding: 0 32rpx;
  680. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  681. display: flex;
  682. flex-direction: column;
  683. margin-top: 20rpx;
  684. }
  685. .service-item {
  686. display: flex;
  687. align-items: center;
  688. justify-content: center;
  689. padding: 22rpx 0;
  690. }
  691. .service-item .text {
  692. flex: 1;
  693. }
  694. .service image {
  695. width: 170rpx;
  696. height: 116rpx;
  697. margin-right: 26rpx;
  698. }
  699. .service .tit {
  700. font-size: 28rpx;
  701. font-weight: bold;
  702. color: #0d0f26;
  703. }
  704. .service .sub {
  705. font-size: 24rpx;
  706. color: #666666;
  707. padding-top: 10rpx;
  708. }
  709. .service .border {
  710. border-bottom: 1px solid #dcdcdc;
  711. }
  712. .mask {
  713. background: $uni-bg-color-mask;
  714. position: fixed;
  715. left: 0;
  716. top: 0;
  717. right: 0;
  718. bottom: 0;
  719. }
  720. .mask-content {
  721. background: $uni-bg-color;
  722. width: 570rpx;
  723. height: 480rpx;
  724. position: absolute;
  725. left: 50%;
  726. top: 50%;
  727. transform: translate(-50%, -50%);
  728. display: flex;
  729. flex-direction: column;
  730. border-radius: 20rpx;
  731. }
  732. .mask-close {
  733. text-align: right;
  734. }
  735. .mask-title {
  736. text-align: center;
  737. font-size: 32rpx;
  738. color: $uni-text-color-black;
  739. margin-bottom: 50rpx;
  740. }
  741. .mask-tab {
  742. display: flex;
  743. justify-content: space-evenly;
  744. }
  745. .icon-closed {
  746. width: 48rpx;
  747. height: 48rpx;
  748. margin: 24rpx 24rpx 0 0;
  749. }
  750. .tab-item {
  751. display: flex;
  752. flex-direction: column;
  753. justify-content: center;
  754. align-items: center;
  755. }
  756. .tab-tit {
  757. font-size: 32rpx;
  758. margin-top: 20rpx;
  759. color: #666;
  760. }
  761. .tab-item image {
  762. width: 160rpx;
  763. height: 160rpx;
  764. }
  765. .backlog-notice {
  766. margin: 50rpx 30rpx 0rpx;
  767. }
  768. .flow-path {
  769. padding: 20rpx 0rpx 20rpx;
  770. .scroll-view {
  771. white-space: nowrap;
  772. // position: sticky;
  773. top: 0;
  774. }
  775. .top-menu {
  776. display: flex;
  777. }
  778. .top-menu .tab {
  779. font-size: 28rpx;
  780. padding: 38rpx 30rpx;
  781. color: #666666;
  782. position: relative;
  783. }
  784. .top-menu .active .border {
  785. position: absolute;
  786. width: 70%;
  787. height: 16rpx;
  788. background: #00b38b;
  789. opacity: 0.3;
  790. bottom: 40rpx;
  791. z-index: -99;
  792. left: 15%;
  793. border-radius: 6rpx;
  794. }
  795. .top-menu .active {
  796. font-weight: bold;
  797. font-size: 32rpx;
  798. color: #0d0f26;
  799. }
  800. .top-menu .active::before {
  801. width: 100%;
  802. height: 16rpx;
  803. background: #00b38b;
  804. opacity: 0.3;
  805. }
  806. .flow-list {
  807. margin: 0rpx 30rpx;
  808. min-height: 700rpx;
  809. background: #ffffff;
  810. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  811. border-radius: 20rpx;
  812. padding: 55rpx 30rpx 30rpx;
  813. }
  814. }
  815. </style>