securityHidden.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880
  1. <!-- 数据看板-安全隐患 -->
  2. <template>
  3. <view class="hazardSources">
  4. <view class="small-title">
  5. <view class="small-title-l">安全检查校级巡查计划标题标题标题标题标题</view>
  6. <img class="small-title-r" src="@/pages/images/dataBoard/icon_06.png">
  7. </view>
  8. <view class="chart">
  9. <view class="chart-t">
  10. <view class="chart-t-li" :class="chartIndex==index?'color-A':'color-B'" @click="chartClick(index)"
  11. v-for="(item,index) in chartTitle">{{item}}</view>
  12. </view>
  13. <view class="chart-b" v-if="chartIndex==0">
  14. <qiun-data-charts type="column" :opts="opts" :echartsH5="true" :chartData="chartData" />
  15. </view>
  16. <view class="chart-b2" v-if="chartIndex==0">
  17. <view class="chart-b2-li">
  18. <view class="chart-b2-li-t">
  19. <text>1</text>
  20. <text>农学院</text>
  21. </view>
  22. <view class="chart-b2-li-b">132</view>
  23. </view>
  24. <view class="chart-b2-li">
  25. <view class="chart-b2-li-t">
  26. <text>1</text>
  27. <text>理学院</text>
  28. </view>
  29. <view class="chart-b2-li-b">132</view>
  30. </view>
  31. <view class="chart-b2-li">
  32. <view class="chart-b2-li-t">
  33. <text>1</text>
  34. <text>生命科学</text>
  35. </view>
  36. <view class="chart-b2-li-b">132</view>
  37. </view>
  38. </view>
  39. <view class="chart-b-tow" v-if="chartIndex==1 || chartIndex==2">
  40. <qiun-data-charts type="radar" :opts="optsTow" :echartsH5="true" :chartData="chartDataTow" />
  41. </view>
  42. </view>
  43. <scroll-view scroll-x @scrolltolower="scrollGet">
  44. <view class="tabTitle_tow">
  45. <view class="tabTitle_tow_li" @tap="tabClickTow(item,index)" :key="index"
  46. v-for="(item,index) in tabTextTow">
  47. <view :class="{on:curTabTow==index}" class="tabTitle_tow_text">{{item}}</view>
  48. <view :class="{on:curTabTow==index}" class="tabTitle_tow_across"></view>
  49. </view>
  50. </view>
  51. </scroll-view>
  52. <!--安全隐患排行 -->
  53. <view class="table" v-if="chartType==1">
  54. <view class="table-border">
  55. <view class="table-th">
  56. <view class="table-th-li">
  57. <view>排行</view>
  58. <view>学院单位</view>
  59. <view>总隐患</view>
  60. <view>已整改</view>
  61. <view>未整改</view>
  62. <view>暂无法整改</view>
  63. </view>
  64. </view>
  65. <view class="table-tb">
  66. <view class="table-tb-li" v-for="(item,index) in dataList" :key="index">
  67. <view>{{index}}</view>
  68. <view>{{item.data1}}</view>
  69. <view>{{item.data2}}</view>
  70. <view>{{item.data2}}</view>
  71. <view>{{item.data2}}</view>
  72. <view>{{item.data2}}</view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. <!-- 一级指标排行 -->
  78. <view class="table-tow" v-if="chartType==2">
  79. <view class="table-border">
  80. <view class="table-th">
  81. <view class="table-th-li">
  82. <view>序号</view>
  83. <view>一级指标</view>
  84. <view>隐患数</view>
  85. <view>占比</view>
  86. </view>
  87. </view>
  88. <view class="table-tb">
  89. <view class="table-tb-li" v-for="(item,index) in dataList" :key="index">
  90. <view>{{index}}</view>
  91. <view>{{item.data1}}</view>
  92. <view>{{item.data2}}</view>
  93. <view>{{item.data2}}</view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. <!--学院单位 -->
  99. <view class="table-three" v-if="chartType==3">
  100. <view class="table-border">
  101. <view class="table-th">
  102. <view class="table-th-li">
  103. <view>排行</view>
  104. <view>学院单位</view>
  105. <view>总隐患</view>
  106. <view>实验场所</view>
  107. <view>安全设施</view>
  108. <view>化学安全</view>
  109. <view>基础安全</view>
  110. <view>生物安全</view>
  111. <view>特种与冷热设备</view>
  112. </view>
  113. </view>
  114. <view class="table-tb">
  115. <view class="table-tb-li" v-for="(item,index) in dataList" :key="index">
  116. <view>
  117. <text
  118. :class="index==0?'sortOne':(index==1?'sortTow':(index==2?'sortThree':'sortFive'))">{{index+1}}</text>
  119. </view>
  120. <view>{{item.data1}}</view>
  121. <view>{{item.data2}}</view>
  122. <view>{{item.data2}}</view>
  123. <view>{{item.data2}}</view>
  124. <view>{{item.data2}}</view>
  125. <view>{{item.data2}}</view>
  126. <view>{{item.data2}}</view>
  127. <view>{{item.data2}}</view>
  128. </view>
  129. </view>
  130. </view>
  131. </view>
  132. </view>
  133. </template>
  134. <script>
  135. import {
  136. config
  137. } from '@/api/request/config.js'
  138. import {
  139. } from '@/pages_basics/api/index.js'
  140. export default {
  141. name: "hazardSources",
  142. components: {
  143. },
  144. data() {
  145. return {
  146. chartType: 3,
  147. chartTitle: ['安全隐患排行', '一级指标排行', '暂无法整改'],
  148. chartIndex: 0,
  149. opts: {
  150. color: ["#149F12", "#FF0000", "#FF9D25", ],
  151. padding: [15, 15, 4, 5],
  152. enableScroll: false,
  153. legend: {
  154. position: 'top',
  155. fontColor: '#fff',
  156. },
  157. xAxis: {
  158. disableGrid: true,
  159. disabled: true,
  160. axisLine: false,
  161. },
  162. yAxis: {
  163. disableGrid: true,
  164. data: [{
  165. disabled: true,
  166. }]
  167. },
  168. extra: {
  169. column: {
  170. type: "group",
  171. width: 14,
  172. linearType: "opacity",
  173. linearOpacity: 0.6,
  174. }
  175. }
  176. },
  177. optsTow: {
  178. color: ["#1890FF", "#91CB74", "#FAC858", "#EE6666", "#73C0DE", "#3CA272", "#FC8452", "#9A60B4",
  179. "#ea7ccc"
  180. ],
  181. padding: [5, 5, 5, 5],
  182. dataLabel: false,
  183. enableScroll: false,
  184. legend: {
  185. show: false,
  186. },
  187. extra: {
  188. radar: {
  189. gridType: "radar",
  190. gridColor: "#CCCCCC",
  191. gridCount: 3,
  192. opacity: 0.2,
  193. max: 200,
  194. labelShow: true,
  195. border: true
  196. }
  197. }
  198. },
  199. chartData: {},
  200. chartDataTow: {},
  201. // 查询参数
  202. queryParams: {
  203. page: 1,
  204. pageSize: 10,
  205. },
  206. dataList: [{
  207. data1: '植物保护',
  208. data2: '499',
  209. data3: '47',
  210. data4: '220',
  211. data5: '137',
  212. },
  213. {
  214. data1: '资源环境',
  215. data2: '199',
  216. data3: '7',
  217. data4: '120',
  218. data5: '37',
  219. },
  220. {
  221. data1: '生命科学',
  222. data2: '299',
  223. data3: '71',
  224. data4: '10',
  225. data5: '37',
  226. },
  227. {
  228. data1: '资源环境',
  229. data2: '199',
  230. data3: '7',
  231. data4: '120',
  232. data5: '37',
  233. },
  234. {
  235. data1: '生命科学',
  236. data2: '299',
  237. data3: '71',
  238. data4: '10',
  239. data5: '37',
  240. },
  241. ],
  242. total: 0,
  243. tabTextTow: ['一级指标', '学院单位'],
  244. curTabTow: 0,
  245. }
  246. },
  247. created() {
  248. },
  249. beforeMount() {
  250. },
  251. mounted() {
  252. this.getServerData();
  253. },
  254. methods: {
  255. scrollGet() {
  256. },
  257. chartClick(index) {
  258. this.chartIndex = index;
  259. this.getServerDataTow();
  260. },
  261. //顶部tab点击
  262. tabClickTow(item, index) {
  263. this.curTabTow = index;
  264. },
  265. getServerData() {
  266. //模拟从服务器获取数据时的延时
  267. setTimeout(() => {
  268. //模拟服务器返回数据,如果数据格式和标准格式不同,需自行按下面的格式拼接
  269. let res = {
  270. categories: ["化学与药品学院", "化学与药品学院", "化学与药品学院"],
  271. series: [{
  272. name: "已整改",
  273. textColor: '#fff',
  274. data: [35, 36, 31, ]
  275. },
  276. {
  277. name: "未整改",
  278. textColor: '#fff',
  279. data: [18, 27, 21, ]
  280. },
  281. {
  282. name: "暂无法整改",
  283. textColor: '#fff',
  284. data: [8, 7, 2, ]
  285. }
  286. ]
  287. };
  288. this.chartData = JSON.parse(JSON.stringify(res));
  289. }, 500);
  290. },
  291. getServerDataTow() {
  292. //模拟从服务器获取数据时的延时
  293. setTimeout(() => {
  294. //模拟服务器返回数据,如果数据格式和标准格式不同,需自行按下面的格式拼接
  295. let res = {
  296. categories: ["维度1", "维度2", "维度3", "维度4", "维度5"],
  297. series: [{
  298. name: "成交量1",
  299. data: [90, 110, 165, 195, 187]
  300. },
  301. {
  302. name: "成交量2",
  303. data: [190, 210, 105, 35, 27]
  304. }
  305. ]
  306. };
  307. this.chartDataTow = JSON.parse(JSON.stringify(res));
  308. }, 500);
  309. },
  310. },
  311. }
  312. </script>
  313. <style lang="stylus" scoped>
  314. .hazardSources {
  315. height: 100%;
  316. width: 100%;
  317. background: #363744;
  318. .small-title {
  319. width: 750rpx;
  320. height: 80rpx;
  321. background: #3E414F;
  322. display: flex;
  323. justify-content: space-between;
  324. align-items: center;
  325. padding: 0 20rpx 0 30rpx;
  326. box-sizing: border-box;
  327. margin-top: 2rpx;
  328. .small-title-l {
  329. flex: 1;
  330. font-weight: 400;
  331. font-size: 30rpx;
  332. color: #FFFFFF;
  333. line-height: 42rpx;
  334. overflow: hidden;
  335. text-overflow: ellipsis;
  336. white-space: nowrap;
  337. }
  338. .small-title-r {
  339. width: 14rpx;
  340. height: 8rpx;
  341. }
  342. }
  343. .chart {
  344. width: 690rpx;
  345. height: 520rpx;
  346. background: #3E414F;
  347. border-radius: 20rpx 20rpx 20rpx 20rpx;
  348. margin: 20rpx 30rpx 0;
  349. overflow: hidden;
  350. .chart-t {
  351. width: 570rpx;
  352. height: 50rpx;
  353. display: flex;
  354. justify-content: flex-start;
  355. border: 1rpx solid #52545F;
  356. border-radius: 10rpx;
  357. margin: 30rpx 0 0 72rpx;
  358. .chart-t-li {
  359. width: 190rpx;
  360. font-weight: 400;
  361. font-size: 28rpx;
  362. line-height: 50rpx;
  363. text-align: center;
  364. background: none;
  365. }
  366. .chart-t-li:nth-of-type(1) {
  367. border-right: 1rpx solid #52545F;
  368. }
  369. .chart-t-li:nth-of-type(2) {
  370. border-right: 1rpx solid #52545F;
  371. }
  372. .color-A {
  373. color: #FFFFFF;
  374. background: #52545F;
  375. }
  376. .color-B {
  377. color: #999999;
  378. background: none;
  379. }
  380. }
  381. .chart-b {
  382. width: 630rpx;
  383. height: 334rpx;
  384. margin-left: 30rpx;
  385. }
  386. .chart-b2 {
  387. width: 630rpx;
  388. margin: 0 30rpx;
  389. height: 106rx;
  390. display: flex;
  391. justify-content: flex-start;
  392. align-items: center;
  393. .chart-b2-li {
  394. flex: 1;
  395. .chart-b2-li-t {
  396. margin-top: 10rpx;
  397. text-align: center;
  398. >text:nth-of-type(1) {
  399. display: inline-block;
  400. width: 24rpx;
  401. height: 24rpx;
  402. background: #FF0000;
  403. border-radius: 6rpx 6rpx 6rpx 6rpx;
  404. margin-right: 10rpx;
  405. font-weight: 400;
  406. font-size: 22rpx;
  407. color: #FFFFFF;
  408. line-height: 24rpx;
  409. text-align: center;
  410. }
  411. >text:nth-of-type(2) {
  412. font-weight: 400;
  413. font-size: 24rpx;
  414. color: #FFFFFF;
  415. line-height: 34rpx;
  416. }
  417. }
  418. .chart-b2-li-b {
  419. margin-top: 10rpx;
  420. font-weight: 400;
  421. font-size: 24rpx;
  422. color: #FFFFFF;
  423. line-height: 34rpx;
  424. text-align: center;
  425. }
  426. }
  427. }
  428. .chart-b-tow {
  429. width: 630rpx;
  430. height: 440rpx;
  431. margin-left: 30rpx;
  432. }
  433. }
  434. .tabTitle_tow {
  435. width: 750rpx;
  436. height: 80rpx;
  437. white-space: nowrap;
  438. display: inline-flex;
  439. background: #3E414F;
  440. margin-top: 20rpx;
  441. padding-left: 35rpx;
  442. .tabTitle_tow_li {
  443. position: relative;
  444. width: 152rpx;
  445. height: 80rpx;
  446. text-align center;
  447. padding-top: 18rpx;
  448. box-sizing: border-box;
  449. .tabTitle_tow_text {
  450. display: inline-block;
  451. font-size: 32rpx;
  452. font-family: PingFang SC;
  453. font-weight: 500;
  454. color: #FFFFFF;
  455. line-height: 46rpx;
  456. position: relative;
  457. &.on {
  458. color: #0183FA;
  459. }
  460. }
  461. .tabTitle_tow_across {
  462. width: 50rpx;
  463. height: 4rpx;
  464. background: #0183FA;
  465. border-radius: 2rpx;
  466. margin-left: 33%;
  467. margin-top: 16rpx;
  468. display none;
  469. &.on {
  470. display block;
  471. }
  472. }
  473. }
  474. }
  475. .table {
  476. width: 720rpx;
  477. margin: 20rpx 0 0 30rpx;
  478. .table-border {
  479. width: auto;
  480. overflow: auto;
  481. .table-th {
  482. width: 860rpx;
  483. padding: 0 30rpx;
  484. box-sizing: border-box;
  485. background: rgba(162, 162, 162, 0.2);
  486. border-radius: 20rpx 20rpx 0rpx 0rpx;
  487. .table-th-li {
  488. height: 80rpx;
  489. display: flex;
  490. justify-content: flex-start;
  491. >view {
  492. font-weight: 400;
  493. font-size: 30rpx;
  494. color: #FFFFFF;
  495. line-height: 80rpx;
  496. text-align: center;
  497. margin-right: 38rpx;
  498. width: 120rpx;
  499. overflow: hidden;
  500. text-overflow: ellipsis;
  501. white-space: nowrap;
  502. }
  503. >view:nth-of-type(1) {
  504. width: 116rpx;
  505. text-align: left;
  506. margin-right: 0;
  507. }
  508. >view:nth-of-type(2) {
  509. width: 168rpx;
  510. }
  511. >view:last-child {
  512. margin-right: 0;
  513. width: 228rpx;
  514. }
  515. }
  516. }
  517. .table-tb {
  518. width: 860rpx;
  519. background: #3E414F;
  520. padding: 0 30rpx;
  521. box-sizing: border-box;
  522. .table-tb-li {
  523. height: 80rpx;
  524. border-bottom: 1rpx dashed rgba(216, 216, 216, 0.2);
  525. display: flex;
  526. justify-content: flex-start;
  527. >view {
  528. font-weight: 400;
  529. font-size: 28rpx;
  530. color: #FFFFFF;
  531. line-height: 80rpx;
  532. text-align: center;
  533. margin-right: 38rpx;
  534. width: 120rpx;
  535. overflow: hidden;
  536. text-overflow: ellipsis;
  537. white-space: nowrap;
  538. }
  539. >view:nth-of-type(1) {
  540. width: 116rpx;
  541. text-align: left;
  542. margin-right: 0;
  543. }
  544. >view:nth-of-type(2) {
  545. width: 168rpx;
  546. }
  547. >view:last-child {
  548. margin-right: 0;
  549. width: 228rpx;
  550. }
  551. }
  552. }
  553. }
  554. }
  555. .sortOne {
  556. display: inline-block;
  557. width: 40rpx;
  558. height: 40rpx;
  559. padding: 4rpx;
  560. box-sizing: border-box;
  561. background: rgba(255, 0, 0, 0.2);
  562. font-weight: 400;
  563. font-size: 28rpx;
  564. color: #FF0000;
  565. line-height: 40rpx;
  566. text-align: center;
  567. border-radius: 20rpx;
  568. }
  569. .sortTow {
  570. display: inline-block;
  571. width: 40rpx;
  572. height: 40rpx;
  573. padding: 4rpx;
  574. box-sizing: border-box;
  575. background: rgba(255, 153, 0, 0.2);
  576. font-weight: 400;
  577. font-size: 28rpx;
  578. color: #FF9900;
  579. line-height: 40rpx;
  580. text-align: center;
  581. border-radius: 20rpx;
  582. }
  583. .sortThree {
  584. display: inline-block;
  585. width: 40rpx;
  586. height: 40rpx;
  587. padding: 4rpx;
  588. box-sizing: border-box;
  589. background: rgba(255, 242, 0, 0.2);
  590. font-weight: 400;
  591. font-size: 28rpx;
  592. color: #FFF200;
  593. line-height: 40rpx;
  594. text-align: center;
  595. border-radius: 20rpx;
  596. }
  597. .sortFive {
  598. display: inline-block;
  599. width: 40rpx;
  600. height: 40rpx;
  601. padding: 4rpx;
  602. box-sizing: border-box;
  603. background: rgba(1, 131, 250, 0.2);
  604. font-weight: 400;
  605. font-size: 28rpx;
  606. color: #0183FA;
  607. line-height: 40rpx;
  608. text-align: center;
  609. border-radius: 20rpx;
  610. }
  611. .table-tow {
  612. width: 690rpx;
  613. margin: 20rpx 0 0 30rpx;
  614. .table-border {
  615. width: auto;
  616. overflow: auto;
  617. .table-th {
  618. width: 690rpx;
  619. padding: 0 30rpx;
  620. box-sizing: border-box;
  621. background: rgba(162, 162, 162, 0.2);
  622. border-radius: 20rpx 20rpx 0rpx 0rpx;
  623. .table-th-li {
  624. height: 80rpx;
  625. display: flex;
  626. justify-content: flex-start;
  627. >view {
  628. font-weight: 400;
  629. font-size: 30rpx;
  630. color: #FFFFFF;
  631. line-height: 80rpx;
  632. text-align: center;
  633. margin-right: 38rpx;
  634. width: 120rpx;
  635. overflow: hidden;
  636. text-overflow: ellipsis;
  637. white-space: nowrap;
  638. }
  639. >view:nth-of-type(1) {
  640. width: 64rpx;
  641. text-align: left;
  642. margin-right: 0;
  643. }
  644. >view:nth-of-type(2) {
  645. width: 270rpx;
  646. }
  647. >view:last-child {
  648. margin-right: 0;
  649. }
  650. }
  651. }
  652. .table-tb {
  653. width: 690rpx;
  654. background: #3E414F;
  655. padding: 0 30rpx;
  656. box-sizing: border-box;
  657. .table-tb-li {
  658. height: 80rpx;
  659. border-bottom: 1rpx dashed rgba(216, 216, 216, 0.2);
  660. display: flex;
  661. justify-content: flex-start;
  662. >view {
  663. font-weight: 400;
  664. font-size: 28rpx;
  665. color: #FFFFFF;
  666. line-height: 80rpx;
  667. text-align: center;
  668. margin-right: 38rpx;
  669. width: 120rpx;
  670. overflow: hidden;
  671. text-overflow: ellipsis;
  672. white-space: nowrap;
  673. }
  674. >view:nth-of-type(1) {
  675. width: 64rpx;
  676. text-align: left;
  677. margin-right: 0;
  678. }
  679. >view:nth-of-type(2) {
  680. width: 270rpx;
  681. }
  682. >view:last-child {
  683. margin-right: 0;
  684. }
  685. }
  686. }
  687. }
  688. }
  689. .table-three {
  690. width: 720rpx;
  691. margin: 20rpx 0 0 30rpx;
  692. .table-border {
  693. width: auto;
  694. overflow: auto;
  695. .table-th {
  696. width: 1510rpx;
  697. padding: 0 30rpx;
  698. box-sizing: border-box;
  699. background: rgba(162, 162, 162, 0.2);
  700. border-radius: 20rpx 20rpx 0rpx 0rpx;
  701. .table-th-li {
  702. height: 80rpx;
  703. display: flex;
  704. justify-content: flex-start;
  705. >view {
  706. font-weight: 400;
  707. font-size: 30rpx;
  708. color: #FFFFFF;
  709. line-height: 80rpx;
  710. text-align: center;
  711. margin-right: 38rpx;
  712. width: 120rpx;
  713. overflow: hidden;
  714. text-overflow: ellipsis;
  715. white-space: nowrap;
  716. }
  717. >view:nth-of-type(1) {
  718. width: 116rpx;
  719. text-align: left;
  720. margin-right: 0;
  721. }
  722. >view:nth-of-type(2) {
  723. width: 168rpx;
  724. }
  725. >view:last-child {
  726. margin-right: 0;
  727. width: 228rpx;
  728. }
  729. }
  730. }
  731. .table-tb {
  732. width: 1510rpx;
  733. background: #3E414F;
  734. padding: 0 30rpx;
  735. box-sizing: border-box;
  736. .table-tb-li {
  737. height: 80rpx;
  738. border-bottom: 1rpx dashed rgba(216, 216, 216, 0.2);
  739. display: flex;
  740. justify-content: flex-start;
  741. >view {
  742. font-weight: 400;
  743. font-size: 28rpx;
  744. color: #FFFFFF;
  745. line-height: 80rpx;
  746. text-align: center;
  747. margin-right: 38rpx;
  748. width: 120rpx;
  749. overflow: hidden;
  750. text-overflow: ellipsis;
  751. white-space: nowrap;
  752. }
  753. >view:nth-of-type(1) {
  754. width: 116rpx;
  755. text-align: left;
  756. margin-right: 0;
  757. }
  758. >view:nth-of-type(2) {
  759. width: 168rpx;
  760. }
  761. >view:last-child {
  762. margin-right: 0;
  763. width: 228rpx;
  764. }
  765. }
  766. }
  767. }
  768. }
  769. }
  770. </style>