zidonghua.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  1. <template>
  2. <view>
  3. <!-- 头图 -->
  4. <view class="top_img">
  5. <!-- 通风管理 -->
  6. <view v-if="zdhxt == 'tfgl'">
  7. <image src="./img/tfgl.jpg" mode=""></image>
  8. </view>
  9. <!-- 压风制氮 -->
  10. <view v-if="zdhxt == 'yfzd'">
  11. <image src="./img/yfzd.jpg" mode=""></image>
  12. </view>
  13. <!-- 排水系统 -->
  14. <view v-if="zdhxt == 'psxt'">
  15. <image src="./img/psxt.jpg" mode=""></image>
  16. </view>
  17. <!-- 主运输 -->
  18. <view v-if="zdhxt == 'zys'">
  19. <image src="./img/zys.jpg" mode=""></image>
  20. </view>
  21. <!-- 巷道图 -->
  22. <view v-if="zdhxt == 'xdt'">
  23. <image src="./img/xdt.jpg" mode=""></image>
  24. </view>
  25. <!-- 矿压监测 -->
  26. <view v-if="zdhxt == 'kyjc'">
  27. <image src="./img/kyjc.jpg" mode=""></image>
  28. </view>
  29. <!-- 提升机 -->
  30. <view v-if="zdhxt == 'tsj'">
  31. <image src="./img/tsj.jpg" mode=""></image>
  32. </view>
  33. <!-- 架空人车 -->
  34. <view v-if="zdhxt == 'jkrc'">
  35. <image src="./img/jkrc.jpg" mode=""></image>
  36. </view>
  37. <!-- 锅炉烟气 -->
  38. <view v-if="zdhxt == 'glyq'">
  39. <image src="./img/glyq.jpg" mode=""></image>
  40. </view>
  41. </view>
  42. <!-- 列表 -->
  43. <view class="list">
  44. <!-- 通风管理 -->
  45. <view v-if="zdhxt == 'tfgl'">
  46. <view class="item" v-for="(item,index) in data_tfgl" :key="index">
  47. <view class="title" @click="item_active(index)">
  48. <view class="left">
  49. <view class="icon"></view>
  50. <view class="name">
  51. {{item.name}}
  52. </view>
  53. </view>
  54. <view class="right" v-if="index != active">
  55. <uni-icons type="arrowright"></uni-icons>
  56. </view>
  57. <view class="right" v-if="index == active">
  58. <uni-icons type="arrowdown"></uni-icons>
  59. </view>
  60. </view>
  61. <view class="inner_list" v-if="active == index">
  62. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  63. @click="inner_item_active(item_2)">
  64. <view class="inner_icon"></view>
  65. <view class="inner_name">{{item_2.name}}</view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. <!-- 压风制氮 -->
  71. <view v-if="zdhxt == 'yfzd'">
  72. <view class="item" v-for="(item,index) in data_yfzd" :key="index">
  73. <view class="title" @click="item_active(index)">
  74. <view class="left">
  75. <view class="icon"></view>
  76. <view class="name">
  77. {{item.name}}
  78. </view>
  79. </view>
  80. <view class="right" v-if="index != active">
  81. <uni-icons type="arrowright"></uni-icons>
  82. </view>
  83. <view class="right" v-if="index == active">
  84. <uni-icons type="arrowdown"></uni-icons>
  85. </view>
  86. </view>
  87. <view class="inner_list" v-if="active == index">
  88. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  89. @click="inner_item_active(item_2)">
  90. <view class="inner_icon"></view>
  91. <view class="inner_name">{{item_2.name}}</view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. <!-- 排水系统 -->
  97. <view v-if="zdhxt == 'psxt'">
  98. <view class="item" v-for="(item,index) in data_psxt" :key="index">
  99. <view class="title" @click="item_active(index)">
  100. <view class="left">
  101. <view class="icon"></view>
  102. <view class="name">
  103. {{item.name}}
  104. </view>
  105. </view>
  106. <view class="right" v-if="index != active">
  107. <uni-icons type="arrowright"></uni-icons>
  108. </view>
  109. <view class="right" v-if="index == active">
  110. <uni-icons type="arrowdown"></uni-icons>
  111. </view>
  112. </view>
  113. <view class="inner_list" v-if="active == index">
  114. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  115. @click="inner_item_active(item_2)">
  116. <view class="inner_icon"></view>
  117. <view class="inner_name">{{item_2.name}}</view>
  118. </view>
  119. </view>
  120. </view>
  121. </view>
  122. <!-- 主运输 -->
  123. <view v-if="zdhxt == 'zys'">
  124. <view class="item" v-for="(item,index) in data_zys" :key="index">
  125. <view class="title" @click="item_active(index)">
  126. <view class="left">
  127. <view class="icon"></view>
  128. <view class="name">
  129. {{item.name}}
  130. </view>
  131. </view>
  132. <view class="right" v-if="index != active">
  133. <uni-icons type="arrowright"></uni-icons>
  134. </view>
  135. <view class="right" v-if="index == active">
  136. <uni-icons type="arrowdown"></uni-icons>
  137. </view>
  138. </view>
  139. <view class="inner_list" v-if="active == index">
  140. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  141. @click="inner_item_active(item_2)">
  142. <view class="inner_icon"></view>
  143. <view class="inner_name">{{item_2.name}}</view>
  144. </view>
  145. </view>
  146. </view>
  147. </view>
  148. <!-- 巷道图 -->
  149. <view v-if="zdhxt == 'xdt'">
  150. <view class="item" v-for="(item,index) in data_xdt" :key="index">
  151. <view class="title" @click="item_active(index)">
  152. <view class="left">
  153. <view class="icon"></view>
  154. <view class="name">
  155. {{item.name}}
  156. </view>
  157. </view>
  158. <view class="right" v-if="index != active">
  159. <uni-icons type="arrowright"></uni-icons>
  160. </view>
  161. <view class="right" v-if="index == active">
  162. <uni-icons type="arrowdown"></uni-icons>
  163. </view>
  164. </view>
  165. <view class="inner_list" v-if="active == index">
  166. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  167. @click="inner_item_active(item_2)">
  168. <view class="inner_icon"></view>
  169. <view class="inner_name">{{item_2.name}}</view>
  170. </view>
  171. </view>
  172. </view>
  173. </view>
  174. <!-- 矿压监测 -->
  175. <view v-if="zdhxt == 'kyjc'">
  176. <view class="item" v-for="(item,index) in data_kyjc" :key="index">
  177. <view class="title" @click="item_active(index)">
  178. <view class="left">
  179. <view class="icon"></view>
  180. <view class="name">
  181. {{item.name}}
  182. </view>
  183. </view>
  184. <view class="right" v-if="index != active">
  185. <uni-icons type="arrowright"></uni-icons>
  186. </view>
  187. <view class="right" v-if="index == active">
  188. <uni-icons type="arrowdown"></uni-icons>
  189. </view>
  190. </view>
  191. <view class="inner_list" v-if="active == index">
  192. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  193. @click="inner_item_active(item_2)">
  194. <view class="inner_icon"></view>
  195. <view class="inner_name">{{item_2.name}}</view>
  196. </view>
  197. </view>
  198. </view>
  199. </view>
  200. <!-- 提升机 -->
  201. <view v-if="zdhxt == 'tsj'">
  202. <view class="item" v-for="(item,index) in data_tsj" :key="index">
  203. <view class="title" @click="item_active(index)">
  204. <view class="left">
  205. <view class="icon"></view>
  206. <view class="name">
  207. {{item.name}}
  208. </view>
  209. </view>
  210. <view class="right" v-if="index != active">
  211. <uni-icons type="arrowright"></uni-icons>
  212. </view>
  213. <view class="right" v-if="index == active">
  214. <uni-icons type="arrowdown"></uni-icons>
  215. </view>
  216. </view>
  217. <view class="inner_list" v-if="active == index">
  218. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  219. @click="inner_item_active(item_2)">
  220. <view class="inner_icon"></view>
  221. <view class="inner_name">{{item_2.name}}</view>
  222. </view>
  223. </view>
  224. </view>
  225. </view>
  226. <!-- 架空人车 -->
  227. <view v-if="zdhxt == 'jkrc'">
  228. <view class="item" v-for="(item,index) in data_jkrc" :key="index">
  229. <view class="title" @click="item_active(index)">
  230. <view class="left">
  231. <view class="icon"></view>
  232. <view class="name">
  233. {{item.name}}
  234. </view>
  235. </view>
  236. <view class="right" v-if="index != active">
  237. <uni-icons type="arrowright"></uni-icons>
  238. </view>
  239. <view class="right" v-if="index == active">
  240. <uni-icons type="arrowdown"></uni-icons>
  241. </view>
  242. </view>
  243. <view class="inner_list" v-if="active == index">
  244. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  245. @click="inner_item_active(item_2)">
  246. <view class="inner_icon"></view>
  247. <view class="inner_name">{{item_2.name}}</view>
  248. </view>
  249. </view>
  250. </view>
  251. </view>
  252. <!-- 锅炉烟气 -->
  253. <view v-if="zdhxt == 'glyq'">
  254. <view class="item" v-for="(item,index) in data_glyq" :key="index">
  255. <view class="title" @click="item_active(index)">
  256. <view class="left">
  257. <view class="icon"></view>
  258. <view class="name">
  259. {{item.name}}
  260. </view>
  261. </view>
  262. <view class="right" v-if="index != active">
  263. <uni-icons type="arrowright"></uni-icons>
  264. </view>
  265. <view class="right" v-if="index == active">
  266. <uni-icons type="arrowdown"></uni-icons>
  267. </view>
  268. </view>
  269. <view class="inner_list" v-if="active == index">
  270. <view class="inner_item" v-for="(item_2,index_2) in item.list" :key="index_2"
  271. @click="inner_item_active(item_2)">
  272. <view class="inner_icon"></view>
  273. <view class="inner_name">{{item_2.name}}</view>
  274. </view>
  275. </view>
  276. </view>
  277. </view>
  278. </view>
  279. </view>
  280. </template>
  281. <script>
  282. export default {
  283. data() {
  284. return {
  285. zdhxt: "",
  286. active: 9999,
  287. // 通风管理
  288. data_tfgl: [{
  289. name: "枣泉煤矿",
  290. list: [{
  291. name: "东井通风",
  292. url: "http://webdevelop.nxjiewei.com/assets/html/zaoquan/djtf/#/"
  293. },
  294. {
  295. name: "西井通风",
  296. url: "http://webdevelop.nxjiewei.com/assets/html/zaoquan/xjtf/#/"
  297. }
  298. ]
  299. },
  300. {
  301. name: "梅花井煤矿",
  302. list: [{
  303. name: "斜井通风",
  304. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/xjtf/#/"
  305. },
  306. {
  307. name: "立井通风",
  308. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/ljtf/#/"
  309. }
  310. ]
  311. },
  312. {
  313. name: "清水营煤矿",
  314. list: [{
  315. name: "通风系统",
  316. url: "http://webdevelop.nxjiewei.com/assets/html/qingshuiying/zidonghua_app/#/pages/index/ztfxt/ztfxt"
  317. }]
  318. },
  319. {
  320. name: "金家渠煤矿",
  321. list: [{
  322. name: "中部主通风机监测系统",
  323. url: "../unified_automation_system/ventilation/ventilation?system_type=ventilation_zb&mine_code=jinjiaqu"
  324. },
  325. {
  326. name: "北部主通风机监测系统",
  327. url: "../unified_automation_system/ventilation/ventilation?system_type=ventilation_bb&mine_code=jinjiaqu"
  328. }
  329. ]
  330. },
  331. {
  332. name: "石槽村煤矿",
  333. list: [{
  334. name: "1号回风斜井通风",
  335. url: "../unified_automation_system/ventilation/ventilation?system_type=fan_1&mine_code=shicaocun"
  336. },
  337. {
  338. name: "2号回风斜井通风",
  339. url: "../unified_automation_system/ventilation/ventilation?system_type=fan_2&mine_code=shicaocun"
  340. }
  341. ]
  342. }
  343. ],
  344. // 压风制氮
  345. data_yfzd: [{
  346. name: "梅花井煤矿",
  347. list: [{
  348. name: "压风系统",
  349. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/yf/#/"
  350. },
  351. {
  352. name: "制氮系统",
  353. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/zd/#/"
  354. }
  355. ]
  356. },
  357. {
  358. name: "金家渠煤矿",
  359. list: [{
  360. name: "空气压缩机集控系统",
  361. url: "../unified_automation_system/compressed_air/compressed_air?system_type=compressed_air&mine_code=jinjiaqu"
  362. }]
  363. },
  364. {
  365. name: "石槽村煤矿",
  366. list: [{
  367. name: "空气压缩机集控系统",
  368. url: "../unified_automation_system/compressed_air/compressed_air?system_type=compressed_air&mine_code=shicaocun"
  369. }, {
  370. name: "制氮系统",
  371. url: "../unified_automation_system/nitrogen_production_system/nitrogen_production_system?system_type=nitrogen&mine_code=shicaocun"
  372. }]
  373. }
  374. ],
  375. // 排水系统
  376. data_psxt: [{
  377. name: "枣泉煤矿",
  378. list: [{
  379. name: "720泵房",
  380. url: "http://webdevelop.nxjiewei.com/assets/html/zaoquan/720bf/#/"
  381. },
  382. {
  383. name: "880泵房",
  384. url: "http://webdevelop.nxjiewei.com/assets/html/zaoquan/880bf/#/"
  385. },
  386. {
  387. name: "929泵房",
  388. url: "http://webdevelop.nxjiewei.com/assets/html/zaoquan/929bf/#/"
  389. },
  390. {
  391. name: "950泵房",
  392. url: "http://webdevelop.nxjiewei.com/assets/html/zaoquan/950bf/#/"
  393. },
  394. {
  395. name: "980泵房",
  396. url: "http://webdevelop.nxjiewei.com/assets/html/zaoquan/980bf/#/"
  397. },
  398. ]
  399. },
  400. {
  401. name: "梅花井煤矿",
  402. list: [{
  403. name: "850泵房",
  404. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/850bf/#/"
  405. },
  406. {
  407. name: "697泵房",
  408. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/697bf/#/"
  409. },
  410. ]
  411. },
  412. {
  413. name: "清水营煤矿",
  414. list: [{
  415. name: "主排水泵房786",
  416. url: "http://webdevelop.nxjiewei.com/assets/html/qingshuiying/zidonghua_app/#/pages/index/786bf/786bf"
  417. },
  418. {
  419. name: "主排水泵房11",
  420. url: "http://webdevelop.nxjiewei.com/assets/html/qingshuiying/zidonghua_app/#/pages/index/11bf/11bf"
  421. }
  422. ]
  423. },
  424. {
  425. name: "金家渠煤矿",
  426. list: [{
  427. name: "中央水泵排水系统",
  428. url: "../unified_automation_system/drainage/drainage?system_type=pump_zy&mine_code=jinjiaqu"
  429. },
  430. {
  431. name: "690水泵排水系统",
  432. url: "../unified_automation_system/drainage/drainage?system_type=pump_690&mine_code=jinjiaqu"
  433. }
  434. ]
  435. },
  436. {
  437. name: "石槽村煤矿",
  438. list: [{
  439. name: "中央水泵排水系统",
  440. url: "../unified_automation_system/drainage/drainage?system_type=pump_1&mine_code=shicaocun"
  441. },
  442. {
  443. name: "715水泵排水系统",
  444. url: "../unified_automation_system/drainage/drainage?system_type=pump_2&mine_code=shicaocun"
  445. },
  446. {
  447. name: "630水泵排水系统",
  448. url: "../unified_automation_system/drainage/drainage?system_type=pump_3&mine_code=shicaocun"
  449. }
  450. ]
  451. }
  452. ],
  453. // 主运输
  454. data_zys: [{
  455. name: "梅花井煤矿",
  456. list: [{
  457. name: "地面煤流",
  458. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/dmml/#/"
  459. }]
  460. },
  461. {
  462. name: "金家渠煤矿",
  463. list: [{
  464. name: "胶带运输机系统",
  465. url: "../unified_automation_system/belt_conveyor/belt_conveyor?system_type=belt_13&mine_code=jinjiaqu"
  466. },
  467. {
  468. name: "主斜井胶带运输机系统",
  469. url: "../unified_automation_system/belt_conveyor/belt_conveyor?system_type=belt_2&mine_code=jinjiaqu"
  470. }]
  471. },
  472. {
  473. name: "石槽村煤矿",
  474. list: [{
  475. name: "22采区皮带",
  476. url: "../unified_automation_system/belt_conveyor/belt_conveyor?system_type=belt_1&mine_code=shicaocun"
  477. },{
  478. name: "西翼巷皮带",
  479. url: "../unified_automation_system/belt_conveyor/belt_conveyor?system_type=belt_2&mine_code=shicaocun"
  480. },{
  481. name: "集中巷皮带",
  482. url: "../unified_automation_system/belt_conveyor/belt_conveyor?system_type=belt_3&mine_code=shicaocun"
  483. }]
  484. }
  485. ],
  486. // 巷道图
  487. data_xdt: [{
  488. name: "梅花井煤矿",
  489. list: [{
  490. name: "巷道图",
  491. url: "http://webdevelop.nxjiewei.com/assets/html/meihuajing/zongtu/#/"
  492. }]
  493. }],
  494. // 矿压监测
  495. data_kyjc: [{
  496. name: "金家渠煤矿",
  497. list: [{
  498. name: "矿压监测",
  499. // url: "http://webdevelop.nxjiewei.com/assets/html/zhks-quankuang/zidonghua/#/pages/jinjiaqu/kuang_ya_jian_ce/kuang_ya_jian_ce"
  500. url: "../jinjiaqu/kuang_ya_jian_ce/kuang_ya_jian_ce"
  501. }]
  502. }],
  503. // 提升机
  504. data_tsj: [{
  505. name: "金家渠煤矿",
  506. list: [{
  507. name: "中部副立井提升机系统",
  508. url: "../unified_automation_system/hoist/hoist?system_type=hoist&mine_code=jinjiaqu"
  509. },
  510. {
  511. name: "北部副立井提升机系统",
  512. url: "../unified_automation_system/north_hoist/north_hoist?system_type=hoist_2&mine_code=jinjiaqu"
  513. },
  514. {
  515. name: "13采区提升机监测系统",
  516. url: "../unified_automation_system/hoist_13/hoist_13?system_type=hoist_1&mine_code=jinjiaqu"
  517. }]
  518. }],
  519. // 架空人车
  520. data_jkrc: [{
  521. name: "金家渠煤矿",
  522. list: [{
  523. name: "13采区架空人车系统",
  524. url: "../unified_automation_system/man_car/man_car?system_type=mancar&mine_code=jinjiaqu"
  525. }]
  526. }],
  527. // 锅炉烟气
  528. data_glyq: [{
  529. name: "金家渠煤矿",
  530. list: [{
  531. name: "锅炉烟气系统",
  532. url: "../unified_automation_system/boiler_room/boiler_room?system_type=boiler&mine_code=jinjiaqu"
  533. }]
  534. }]
  535. }
  536. },
  537. onLoad(option) {
  538. this.zdhxt = option.zdhxt
  539. if (this.zdhxt == 'tfgl') {
  540. uni.setNavigationBarTitle({
  541. title: "通风管理"
  542. })
  543. }
  544. if (this.zdhxt == 'psxt') {
  545. uni.setNavigationBarTitle({
  546. title: "排水系统"
  547. })
  548. }
  549. if (this.zdhxt == 'yfzd') {
  550. uni.setNavigationBarTitle({
  551. title: "压风制氮"
  552. })
  553. }
  554. if (this.zdhxt == 'zys') {
  555. uni.setNavigationBarTitle({
  556. title: "主运输"
  557. })
  558. }
  559. if (this.zdhxt == 'xdt') {
  560. uni.setNavigationBarTitle({
  561. title: "巷道图"
  562. })
  563. }
  564. if (this.zdhxt == 'kyjc') {
  565. uni.setNavigationBarTitle({
  566. title: "矿压监测"
  567. })
  568. }
  569. if (this.zdhxt == 'tsj') {
  570. uni.setNavigationBarTitle({
  571. title: "提升机系统"
  572. })
  573. }
  574. if (this.zdhxt == 'jkrc') {
  575. uni.setNavigationBarTitle({
  576. title: "架空人车系统"
  577. })
  578. }
  579. if (this.zdhxt == 'glyq') {
  580. uni.setNavigationBarTitle({
  581. title: "锅炉烟气系统"
  582. })
  583. }
  584. },
  585. methods: {
  586. item_active(index) {
  587. console.log(index)
  588. if (index != this.active) {
  589. this.active = index
  590. } else {
  591. this.active = 9999
  592. }
  593. },
  594. inner_item_active(item_2) {
  595. if (item_2.url.indexOf('unified_automation_system') != -1) {
  596. uni.navigateTo({
  597. url: item_2.url + "&name=" + item_2.name
  598. })
  599. }else if(item_2.url.indexOf('jinjiaqu/kuang_ya_jian_ce/kuang_ya_jian_ce') != -1){
  600. uni.navigateTo({
  601. url: '../jinjiaqu/kuang_ya_jian_ce/kuang_ya_jian_ce'
  602. })
  603. } else {
  604. uni.navigateTo({
  605. url: "./detail/detail?url=" + item_2.url + "&name=" + item_2.name
  606. })
  607. }
  608. }
  609. }
  610. }
  611. </script>
  612. <style lang="scss">
  613. page {
  614. background-color: #F7F7F7;
  615. }
  616. .top_img {
  617. image {
  618. width: 750rpx;
  619. height: 360rpx;
  620. }
  621. }
  622. .list {
  623. padding-top: 20rpx;
  624. .item {
  625. background-color: #FFFFFF;
  626. margin-bottom: 20rpx;
  627. box-sizing: border-box;
  628. padding: 0 35rpx;
  629. .title {
  630. display: flex;
  631. justify-content: space-between;
  632. align-items: center;
  633. height: 90rpx;
  634. border-bottom: 1rpx solid #f7f7f7;
  635. .left {
  636. display: flex;
  637. align-items: center;
  638. .icon {
  639. width: 31rpx;
  640. height: 27rpx;
  641. background-image: url(img/icon.png);
  642. background-size: cover;
  643. background-repeat: no-repeat;
  644. }
  645. .name {
  646. margin-left: 26rpx;
  647. font-size: 32rpx;
  648. }
  649. }
  650. .right {}
  651. }
  652. .inner_list {
  653. .inner_item {
  654. display: flex;
  655. align-items: center;
  656. height: 80rpx;
  657. border-bottom: 1rpx solid #f7f7f7;
  658. padding-left: 96rpx;
  659. .inner_icon {
  660. width: 10rpx;
  661. height: 10rpx;
  662. background-color: #0992E5;
  663. border-radius: 50%;
  664. }
  665. .inner_name {
  666. margin-left: 29rpx;
  667. font-size: 28rpx;
  668. color: #8a8a8a;
  669. }
  670. }
  671. }
  672. }
  673. }
  674. </style>