listHome.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. <template>
  2. <view class="incidentList">
  3. <view class="head">
  4. <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
  5. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  6. </view>
  7. <view class="filter" @click="filterClick">
  8. <text class="newicon newicon-shaixuan"></text>
  9. </view>
  10. </view>
  11. <view class="body" v-if="dataInfo.list.length">
  12. <view class="body_item" v-for="data in dataInfo.list" :key="data.id" @click.stop="toIncidentDetail(data)">
  13. <view class="body_item_head ellipsis-multiline">
  14. {{data.description}}
  15. </view>
  16. <view class="body_item_content">
  17. <view class="body_item_content_p" v-if="data.place || data.houseNumber">
  18. <text class="name ellipsis">详细地址:{{data.place ? data.place.building.buildingName : ''}}{{data.place ? data.place.floorName : ''}}<text v-if="data.place && data.place.floorName">层</text> {{data.houseNumber}}</text>
  19. <view class="status" :style="stateStyle(data.state)">{{data.state ? data.state.name : ''}}</view>
  20. </view>
  21. <view class="body_item_content_p" v-if="data.rsPrice">
  22. <text class="name ellipsis">维修总价:{{data.rsPrice}}</text>
  23. </view>
  24. <view class="body_item_content_p">
  25. <view class="name ellipsis" @click.stop="makePhoneCall(data.contactsInformation)">维修人员电话:{{data.contactsInformation || '暂无'}}<uni-icons v-if="data.contactsInformation" type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
  26. </view>
  27. <view class="body_item_content_p" v-if="data.currentLog && data.currentLog.logType.value=='overtime'">
  28. <text class="name ellipsis">维修说明:{{data.overtimeRemark}}</text>
  29. </view>
  30. </view>
  31. <view class="body_item_foot">
  32. <view class="foot_info">
  33. <view class="name">维修人员:{{data.assigneeName || '暂无'}}</view>
  34. <text class="date">{{formatDate(data.startDate, 'yyyy-MM-dd HH:mm')}}</text>
  35. </view>
  36. <view class="btns">
  37. <button v-if="!data.wxdegree && (data.state.name=='待评价'|| data.state.name=='已关闭')" @click.stop="handler('changeUser', data)" type="default" class="primaryButton btn">评价</button>
  38. </view>
  39. </view>
  40. <div class="sign-style" v-if="deptRepair && publicRepair">
  41. <view class="img-box" v-if="data.repairIncidentType && data.repairIncidentType.name=='科室报修'">
  42. <view class="img-url1"></view>
  43. <view class="img-name">科</view>
  44. </view>
  45. <view class="img-box" v-if="data.repairIncidentType && data.repairIncidentType.name=='公共报修'">
  46. <view class="img-url2"></view>
  47. <view class="img-name">公</view>
  48. </view>
  49. </div>
  50. </view>
  51. </view>
  52. <view class="zanwu" v-else>
  53. <text class="newicon newicon-zanwu"></text>
  54. </view>
  55. <repairsFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></repairsFilter>
  56. <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
  57. <uni-popup ref="popup" background-color="#fff" type="center" :before-close="true">
  58. <view class="popup-content">
  59. <view class="form_item column">
  60. <view class="title"><text class="required newicon newicon-bitian"></text>星级:</view>
  61. <uni-rate class="value" v-model="rate" />
  62. </view>
  63. <view class="form_item column">
  64. <view class="title"><text class="required newicon newicon-bitian"></text>内容:</view>
  65. <uni-easyinput class="value" type="textarea" v-model="wxdegreeremark" placeholder="请输入评价内容"/>
  66. </view>
  67. </view>
  68. <view class="foot_common_btns">
  69. <button @click="closePop" type="default" class="cancelButton btn">取消</button>
  70. <button @click="submit" type="default" class="primaryButton btn">提交</button>
  71. </view>
  72. </uni-popup>
  73. </view>
  74. </template>
  75. <script setup>
  76. import repairsFilter from '@/components/repairsFilter.vue';
  77. import IncidentAttachment from '@/components/IncidentAttachment.vue';
  78. import { startOfDay, endOfDay, format, add } from 'date-fns'
  79. import { ref, reactive, computed } from 'vue'
  80. import { onLoad, onShow, onHide, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  81. import { api_getDictionary, api_incident, api_incident_count, api_systemConfiguration, api_incidentTask, api_taskresolve } from "@/http/api.js"
  82. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  83. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  84. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  85. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  86. import { defaultColor } from '@/static/js/theme.js'
  87. import { useSetTitle } from '@/share/useSetTitle.js'
  88. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  89. import { useLoginUserStore } from '@/stores/loginUser'
  90. import { useIncidentNumStore } from '@/stores/incidentNum'
  91. import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
  92. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  93. import { useSetTabbar } from '@/share/useSetTabbar.js'
  94. useSetTitle();
  95. const repositorySearchStore = repositoryListSearchStore();
  96. const loginUserStore = useLoginUserStore();
  97. const incidentNumStore = useIncidentNumStore();
  98. const incidentListSearchStore = useIncidentListSearchStore();
  99. const { formatDate } = filterFormatDate();
  100. const { priorityStyle } = computedPriorityStyle();
  101. const { stateStyle } = computedStateStyle();
  102. const { currentLogOverTime } = computedCurrentLogOverTime();
  103. const { makePhoneCall } = useMakePhoneCall();
  104. const { setTabbar } = useSetTabbar();
  105. // 主题颜色
  106. const primaryColor = ref(defaultColor)
  107. const popup = ref(null);//弹框
  108. const assignFlag = ref(false);//指派权限
  109. const qiangdan = ref(false);//接单权限
  110. const deptRepair = ref({});//科内报修
  111. const publicRepair = ref({});//公共报修
  112. const degreeDictionary = ref(null); //星级字典
  113. const rowData = ref(null); //选择的数据
  114. const isSubmit = ref(false);
  115. const rate = ref(3);//星级
  116. const wxdegreeremark = ref(null);//评价内容
  117. // 判断是否显示接单按钮
  118. const computedReceive = computed(() => (data) => {
  119. let inUser = data.currentLog && data.currentLog.workerId == loginUserStore.loginUser.user.id;
  120. let inGroup = false;
  121. loginUserStore.loginUser.user.group.forEach(item => {
  122. if(data.currentLog){
  123. if (item.id == data.currentLog.groupId) {
  124. inGroup = true;
  125. }
  126. }
  127. })
  128. return data.state.value === 'pending' && (inUser || inGroup) && qiangdan.value;
  129. })
  130. // 转换协同人
  131. const computedSynergetic = computed(() => (synergetic) => {
  132. return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
  133. })
  134. const repairIncident = ref(null);
  135. // 数据
  136. const dataInfo = reactive({
  137. tabs: [{id: 0, name: '我的报修', value: 'all', num: ''},],
  138. tabActiveId: 0,//当前选择的tab
  139. list: [],//工单列表
  140. idx: 0,//页码
  141. hasMore: true,//是否有更多数据
  142. isFilter: false,//筛选框开关
  143. isAttachment: false,//图片和录音开关
  144. incidentId: undefined,
  145. stateValue:0,
  146. evtFilter: {
  147. hospital: {},
  148. selected: 'todoingAll',
  149. area: {id: 0, area: '全部'},
  150. category: {id: 0, category: '全部'},
  151. acceptDate: [],
  152. },//筛选框数据
  153. })
  154. // 工单详情
  155. function toIncidentDetail(data){
  156. uni.navigateTo({
  157. url: `/pages/repair/repairsDetail?incidentId=${data.id}`
  158. })
  159. }
  160. // 获取tab选项
  161. function getTabs(){
  162. uni.showLoading({
  163. title: "加载中",
  164. mask: true,
  165. });
  166. let postData = {
  167. "key": 'repair_incident_type',
  168. "type": "list",
  169. };
  170. if(deptRepair.value.valueconfig==1){
  171. api_getDictionary(postData).then(res => {
  172. res = res || [];
  173. repairIncident.value = res.find(i=>i.value=='dept')
  174. getList(0);
  175. })
  176. dataInfo.tabs = [
  177. {id: 0, name: '我的报修', value: 'all', num: ''},
  178. {id: 1, name: '科内报修', value: '2', num: ''}
  179. ]
  180. }else{
  181. getList(0);
  182. dataInfo.tabs = [
  183. {id: 0, name: '我的报修', value: 'all', num: ''},
  184. ]
  185. }
  186. }
  187. // 点击tab
  188. function clickTab(tabId){
  189. dataInfo.tabActiveId = tabId;
  190. getList(0);
  191. }
  192. // 点击筛选
  193. function filterClick(){
  194. dataInfo.isFilter = true;
  195. }
  196. // 确认筛选
  197. function conformFilter(evtFilter){
  198. dataInfo.stateValue = evtFilter.category;
  199. dataInfo.isFilter = false;
  200. getList(0);
  201. }
  202. // 关闭筛选
  203. function cancelFilter(){
  204. dataInfo.isFilter = false;
  205. }
  206. // 点击图片和录音
  207. function attachmentClick(incidentData){
  208. dataInfo.incidentData = incidentData;
  209. dataInfo.isAttachment = true;
  210. }
  211. // 知道了图片和录音
  212. function knowAttachment(){
  213. dataInfo.isAttachment = false;
  214. }
  215. // 评价
  216. function handler(type, data){
  217. rowData.value = data
  218. popup.value.open()
  219. let postData = {
  220. key: "incident_degree",
  221. type: "list"
  222. };
  223. api_getDictionary(postData).then(res => {
  224. res = res || [];
  225. degreeDictionary.value = res
  226. })
  227. }
  228. function closePop(){
  229. rate.value = 3
  230. wxdegreeremark.value = null
  231. popup.value.close()
  232. }
  233. function submit(){
  234. if(!rate.value){
  235. uni.showToast({
  236. icon: 'none',
  237. title: '请选择星级'
  238. });
  239. return;
  240. }
  241. if(!wxdegreeremark.value){
  242. uni.showToast({
  243. icon: 'none',
  244. title: '请输入评价内容'
  245. });
  246. return;
  247. }
  248. let rateData = null
  249. if(rate.value==0){
  250. rateData=degreeDictionary.value[0].id
  251. }else if(rate.value==1){
  252. rateData=degreeDictionary.value[4].id
  253. }else if(rate.value==2){
  254. rateData=degreeDictionary.value[3].id
  255. }else if(rate.value==3){
  256. rateData=degreeDictionary.value[2].id
  257. }else if(rate.value==4){
  258. rateData=degreeDictionary.value[1].id
  259. }else if(rate.value==5){
  260. rateData=degreeDictionary.value[0].id
  261. }
  262. let postData = {
  263. ...rowData.value,
  264. wxdegree: rateData==0?degreeDictionary.value[0]:{id: rateData},
  265. wxdegreeremark: wxdegreeremark.value
  266. }
  267. api_taskresolve({incident:postData}).then(res => {
  268. uni.hideLoading();
  269. if(res.state == 200){
  270. getList(0);
  271. uni.showToast({
  272. icon: 'none',
  273. title: '评价成功',
  274. });
  275. }else{
  276. uni.showToast({
  277. icon: 'none',
  278. title: res.msg || '请求数据失败!'
  279. });
  280. }
  281. })
  282. closePop()
  283. }
  284. // 获取列表信息
  285. function getList(idx){
  286. uni.showLoading({
  287. title: "加载中",
  288. mask: true,
  289. });
  290. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  291. if(dataInfo.idx === 0){
  292. dataInfo.list = [];
  293. }
  294. let postData = {
  295. "idx": dataInfo.idx,
  296. "sum": 20,
  297. incident: {
  298. requester: dataInfo.tabActiveId == 0 ? { id: loginUserStore.loginUser.user.id } : undefined,
  299. department: dataInfo.tabActiveId == 1 ? { id: loginUserStore.loginUser.user.dept.id } : undefined,
  300. statesValues: (dataInfo.stateValue === 'close0' || dataInfo.stateValue === 'close1') ? 'close' : (dataInfo.stateValue || undefined),
  301. hasWxdegree: dataInfo.stateValue === 'close0' ? 0 : (dataInfo.stateValue === 'close1' ? 1 : undefined),
  302. repairIncidentType:{
  303. id:''
  304. }
  305. }
  306. }
  307. if(dataInfo.tabActiveId == 1){
  308. postData.incident.repairIncidentType.id = repairIncident.value.id
  309. }
  310. if(JSON.stringify(postData.incident.statesValues) === '{}'){
  311. delete postData.incident.statesValues
  312. }
  313. api_incident(postData).then(res => {
  314. uni.hideLoading();
  315. uni.stopPullDownRefresh();
  316. if(res.status == 200){
  317. let list = res.list || [];
  318. if(list.length){
  319. dataInfo.hasMore = true;
  320. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  321. }else{
  322. dataInfo.hasMore = false;
  323. }
  324. }else{
  325. uni.showToast({
  326. icon: 'none',
  327. title: res.msg || '请求数据失败!'
  328. });
  329. }
  330. })
  331. // getCount(postData.incident);
  332. }
  333. // 获取列表数量
  334. function getCount(incident = {}){
  335. let postData = {
  336. wxCount: 'true',
  337. incidentList: [],
  338. }
  339. dataInfo.tabs.forEach(v => {
  340. postData.incidentList.push({...incident, ...{statusId: v.id || undefined}});
  341. })
  342. api_incident_count(postData).then(res => {
  343. if(res.state == 200){
  344. let myData = res.data || [];
  345. dataInfo.tabs.forEach((v, i) => {
  346. v.num = myData[i];
  347. })
  348. }else{
  349. uni.showToast({
  350. icon: 'none',
  351. title: res.msg || '请求数据失败!'
  352. });
  353. }
  354. })
  355. }
  356. // 初始化
  357. function onLoadFn(){
  358. getTabs();
  359. }
  360. // 获取配置项
  361. function getConfig(){
  362. api_systemConfiguration({
  363. idx: 0,
  364. sum: 9999,
  365. }).then(res=>{
  366. let data = res.list
  367. deptRepair.value = data.find(i=>i.keyconfig=='deptRepair')
  368. publicRepair.value = data.find(i=>i.keyconfig=='publicRepair')
  369. onLoadFn();
  370. })
  371. }
  372. onLoad((option) => {
  373. getConfig();
  374. for(let i = 0; i<7; i++){
  375. setTabbar(i)
  376. }
  377. })
  378. onShow((option) =>{
  379. let data = uni.getStorageSync('homeRepairList')
  380. if(data){
  381. data = JSON.parse(data)
  382. dataInfo.tabActiveId = Number(data.type)
  383. dataInfo.stateValue = data.value
  384. dataInfo.evtFilter.category = data.value
  385. repositorySearchStore.setRepositoryListSearchData(dataInfo.evtFilter)
  386. }else{
  387. dataInfo.stateValue = 0
  388. repositorySearchStore.clearRepositoryListSearchData()
  389. }
  390. onLoadFn();
  391. })
  392. onHide(_=>{
  393. uni.setStorageSync('homeRepairList','')
  394. repositorySearchStore.clearRepositoryListSearchData()
  395. })
  396. onTabItemTap(e => {
  397. // onLoadFn();
  398. })
  399. onPullDownRefresh(() => {
  400. // getList(0)
  401. })
  402. onReachBottom(() => {
  403. dataInfo.idx += 1;
  404. if (dataInfo.hasMore) {
  405. getList(); // 当触底时加载更多数据
  406. }
  407. })
  408. </script>
  409. <style scoped>
  410. >>> .uni-popup__wrapper{
  411. width: 80%;
  412. padding: 40rpx;
  413. }
  414. </style>
  415. <style lang="scss" scoped>
  416. page{
  417. height: calc(100vh - var(--window-bottom));
  418. }
  419. .incidentList{
  420. display: flex;
  421. flex-direction: column;
  422. justify-content: space-between;
  423. .head{
  424. height: 88rpx;
  425. display: flex;
  426. position: fixed;
  427. z-index: 99;
  428. width: 100%;
  429. background-color: #fff;
  430. font-size: 30rpx;
  431. .tab{
  432. flex: 1;
  433. display: flex;
  434. justify-content: center;
  435. align-items: center;
  436. border-bottom: 4rpx solid transparent;
  437. &.active{
  438. color: $uni-primary;
  439. border-color: $uni-primary;
  440. }
  441. }
  442. .filter{
  443. width: 84rpx;
  444. display: flex;
  445. justify-content: center;
  446. align-items: center;
  447. .newicon-shaixuan{
  448. font-size: 36rpx;
  449. color: #2C2C2C;
  450. }
  451. }
  452. }
  453. .body{
  454. margin-bottom: var(--window-bottom);
  455. margin-top: 88rpx;
  456. border-top: 6rpx solid #EBEBEB;
  457. .body_item{
  458. border-bottom: 8rpx solid #EBEBEB;
  459. position: relative;
  460. .sign-style{
  461. position: absolute;
  462. right: 0;
  463. top: -25rpx;
  464. .img-box{
  465. position: relative;
  466. .img-url1{
  467. width: 70rpx;
  468. height: 70rpx;
  469. background-image: url('../../static/img/jiaobiao1.png');
  470. }
  471. .img-url2{
  472. width: 70rpx;
  473. height: 70rpx;
  474. background-image: url('../../static/img/jiaobiao2.png');
  475. }
  476. .img-name{
  477. position: absolute;
  478. right: 8rpx;
  479. top: 0;
  480. color: #fff;
  481. font-size: 24rpx;
  482. }
  483. }
  484. }
  485. .body_item_head{
  486. word-break: break-all;
  487. text-align: justify;
  488. text-align: left;
  489. margin: 24rpx;
  490. font-size: 30rpx;
  491. }
  492. .body_item_content{
  493. border-top: 1rpx solid #D8D8D8;
  494. padding: 24rpx 24rpx 24rpx 48rpx;
  495. .body_item_content_p{
  496. color: #6A6A6A;
  497. font-size: 26rpx;
  498. display: flex;
  499. justify-content: space-between;
  500. align-items: center;
  501. margin-bottom: 24rpx;
  502. &:last-of-type{
  503. margin-bottom: 0;
  504. }
  505. .name{
  506. flex: 1;
  507. }
  508. .status{
  509. padding: 4rpx 10rpx;
  510. border-radius: 20rpx;
  511. background-color: #DBE8FE;
  512. font-size: 22rpx;
  513. color: #006CF9;
  514. }
  515. .icon_all{
  516. .mic-filled,
  517. .image-filled
  518. {
  519. margin-left: 16rpx;
  520. }
  521. }
  522. }
  523. }
  524. .body_item_foot{
  525. border-top: 1rpx solid #D8D8D8;
  526. font-size: 26rpx;
  527. padding: 24rpx;
  528. .foot_info{
  529. display: flex;
  530. justify-content: space-between;
  531. align-items: center;
  532. .phone-filled{
  533. margin-left: 5rpx;
  534. }
  535. }
  536. }
  537. }
  538. }
  539. .zanwu{
  540. box-sizing: border-box;
  541. margin-bottom: var(--window-bottom);
  542. margin-top: 88rpx;
  543. border-top: 6rpx solid #EBEBEB;
  544. height: calc(100vh - var(--window-bottom) - 88rpx);
  545. display: flex;
  546. justify-content: center;
  547. background-color: #F7F7F7;
  548. .newicon-zanwu{
  549. font-size: 256rpx;
  550. color: #D6D6D6;
  551. margin-top: 140rpx;
  552. }
  553. }
  554. .popup-content{
  555. .form_item{
  556. display: flex;
  557. align-items: center;
  558. padding-top: 24rpx;
  559. min-height: 86rpx;
  560. position: relative;
  561. .chunk{
  562. width: 100%;
  563. height: 70rpx;
  564. line-height: 70rpx;
  565. text-align: center;
  566. background: #F7F8FA;
  567. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  568. border-radius: 10rpx;
  569. }
  570. &.column{
  571. height: auto;
  572. flex-direction: column;
  573. align-items: flex-start;
  574. .import-rep{
  575. padding: 5rpx 10rpx;
  576. border-radius: 50rpx;
  577. background: #d1fcd5;
  578. color: #49b856;
  579. font-size: 24rpx;
  580. }
  581. .title{
  582. margin-right: 0;
  583. }
  584. .title-width{
  585. width: 100%;
  586. }
  587. .title-fl-sb{
  588. display: flex;
  589. justify-content: space-between;
  590. width: 100%;
  591. }
  592. .value{
  593. margin-top: 10rpx;
  594. // padding-left: 20rpx;
  595. box-sizing: border-box;
  596. }
  597. .tips{
  598. padding: 24rpx;
  599. text-align: center;
  600. font-size: 22rpx;
  601. color: #909399;
  602. width: 100%;
  603. box-sizing: border-box;
  604. }
  605. }
  606. .title{
  607. font-size: 26rpx;
  608. display: flex;
  609. align-items: center;
  610. margin-right: 12rpx;
  611. flex-shrink: 0;
  612. &.select{
  613. width: calc(5em + 20rpx);
  614. }
  615. }
  616. .value{
  617. width: 100%;
  618. &.category{
  619. width: 100%;
  620. display: flex;
  621. justify-content: space-between;
  622. align-items: center;
  623. .categoryName{
  624. font-size: 26rpx;
  625. color: #555;
  626. flex: 1;
  627. }
  628. .newicon-weibiaoti2010104{
  629. color: $uni-primary;
  630. margin-left: 24rpx;
  631. }
  632. }
  633. .imgTips{
  634. color: #909399;
  635. font-size: 22rpx;
  636. margin-top: 10rpx;
  637. }
  638. }
  639. .item-input{
  640. border: 1px solid #DBDBDB;
  641. height: 70rpx;
  642. line-height: 70rpx;
  643. padding: 0 10rpx;
  644. border-radius: 4rpx;
  645. width: 100%;
  646. font-size: 14px;
  647. }
  648. .icon{
  649. position: absolute;
  650. right: 20rpx;
  651. color: #49b856;
  652. }
  653. }
  654. }
  655. }
  656. </style>