incidentList.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  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="toIncidentDetail(data)">
  13. <view class="body_item_head ellipsis-multiline">
  14. <text :style="priorityStyle(data.priority)">{{data.priority ? data.priority.name + ' ' : ''}}</text>{{data.description}}
  15. </view>
  16. <view class="body_item_content">
  17. <view class="body_item_content_p">
  18. <text class="name ellipsis" v-if="data.repairIncidentType.value === 'dept'">报修科室:{{data.department?data.department.dept:''}}</text>
  19. <text class="name ellipsis" v-if="data.repairIncidentType.value === 'public'">报修类型:{{data.repairIncidentType.name}}</text>
  20. <view class="status" :style="stateStyle(data.state)">{{data.state ? data.state.name : ''}}</view>
  21. </view>
  22. <view class="body_item_content_p" v-if="data.place || data.houseNumber">
  23. <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>
  24. </view>
  25. <view class="body_item_content_p" v-if="data.overtimeRemark">
  26. <text class="name ellipsis">延期处理:{{data.overtimeRemark}}</text>
  27. </view>
  28. <view class="body_item_content_p">
  29. <text class="name" v-if="data.assigneeName">
  30. 处理人:{{data.assigneeName}}<template v-if="computedSynergetic(data.synergetic)">,{{computedSynergetic(data.synergetic)}}</template>
  31. </text>
  32. <text class="name" v-else-if="data.candidateGroupsName">
  33. 处理组:{{data.candidateGroupsName}}<template v-if="computedSynergetic(data.synergetic)">,{{computedSynergetic(data.synergetic)}}</template>
  34. </text>
  35. <text class="name" v-else>
  36. <template v-if="computedSynergetic(data.synergetic)">,{{computedSynergetic(data.synergetic)}}</template>
  37. </text>
  38. <view class="icon_all">
  39. <text class="mic-filled" v-if="data.callID" @click.stop="attachmentClick(data)"><uni-icons type="mic-filled" :size="22" color="#949494"></uni-icons></text>
  40. <text class="mic-filled" v-if="data.reqRecord" @click.stop="attachmentRequireClick(data)"><uni-icons type="mic-filled" :size="22" color="#949494"></uni-icons></text>
  41. <text class="image-filled" v-if="data.reqAttachment" @click.stop="attachmentClick(data)"><uni-icons type="image-filled" :size="22" color="#949494"></uni-icons></text>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="body_item_foot">
  46. <view class="foot_info">
  47. <view class="name" @click.stop="makePhoneCall(data.contactsInformation)">联系电话:{{data.contactsInformation}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
  48. <text class="date">{{formatDate(data.acceptDate, 'MM-dd HH:mm')}}</text>
  49. </view>
  50. <view class="btns">
  51. <button @click.stop="handler('changeUser', data, data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'pending' || data.state.value === 'handler' || (data.state.value === 'reassign' && assignFlag)">换人处理</button>
  52. <button @click.stop="handler('handler', data, data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'handler' && data.handlingPersonnelUser && data.handlingPersonnelUser.id == loginUserStore.loginUser.user.id">处理</button>
  53. <button @click.stop="receive(data)" type="default" class="primaryButton btn" v-if="computedReceive(data)">接单</button>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <view class="zanwu" v-else>
  59. <text class="newicon newicon-zanwu"></text>
  60. </view>
  61. <IncidentListFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></IncidentListFilter>
  62. <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
  63. <RequireAttachment v-if="dataInfo.isRequireAttachment" @knowEmit="knowRequireAttachment" :incidentData="dataInfo.incidentData"></RequireAttachment>
  64. </view>
  65. </template>
  66. <script setup>
  67. import IncidentListFilter from '@/components/IncidentListFilter.vue';
  68. import IncidentAttachment from '@/components/IncidentAttachment.vue';
  69. import RequireAttachment from '@/components/RequireAttachment.vue';
  70. import { startOfDay, endOfDay, format, add } from 'date-fns'
  71. import { ref, reactive, computed } from 'vue'
  72. import { onLoad, onUnload, onHide, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  73. import { api_getDictionary, api_incident, api_incident_count, api_incidentTask } from "@/http/api.js"
  74. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  75. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  76. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  77. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  78. import { defaultColor } from '@/static/js/theme.js'
  79. import { useSetTitle } from '@/share/useSetTitle.js'
  80. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  81. import { useSetTabbar } from '@/share/useSetTabbar.js'
  82. import { useLoginUserStore } from '@/stores/loginUser'
  83. import { useIncidentNumStore } from '@/stores/incidentNum'
  84. import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
  85. import { useHandlerStore } from '@/stores/handler'
  86. useSetTitle();
  87. const loginUserStore = useLoginUserStore();
  88. const incidentNumStore = useIncidentNumStore();
  89. const incidentListSearchStore = useIncidentListSearchStore();
  90. const { formatDate } = filterFormatDate();
  91. const { priorityStyle } = computedPriorityStyle();
  92. const { stateStyle } = computedStateStyle();
  93. const { currentLogOverTime } = computedCurrentLogOverTime();
  94. const { makePhoneCall } = useMakePhoneCall();
  95. const { setTabbar } = useSetTabbar();
  96. const handlerStore = useHandlerStore();
  97. // 主题颜色
  98. const primaryColor = ref(defaultColor)
  99. const assignFlag = ref(false);//指派权限
  100. const qiangdan = ref(false);//接单权限
  101. const showDept = ref(false);//跨科权限
  102. // 判断是否显示接单按钮
  103. const computedReceive = computed(() => (data) => {
  104. let inUser = data.handlingPersonnelUser && data.handlingPersonnelUser.id == loginUserStore.loginUser.user.id;
  105. let inUser2 = data.currentLog.workerId == loginUserStore.loginUser.user.id;
  106. let inGroup = false;
  107. if(loginUserStore.loginUser.user&&loginUserStore.loginUser.user.group){
  108. loginUserStore.loginUser.user.group.forEach(item => {
  109. if(data.currentLog){
  110. if (item.id == data.currentLog.groupId) {
  111. inGroup = true;
  112. }
  113. }
  114. })
  115. }
  116. return data.state.value === 'pending' && (inUser2 || inGroup) && qiangdan.value;
  117. })
  118. // 转换协同人
  119. const computedSynergetic = computed(() => (synergetic) => {
  120. return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
  121. })
  122. // 数据
  123. const dataInfo = reactive({
  124. tabs: [{id: 0, name: '全部', value: 'all', num: ''}],
  125. tabActiveId: 0,//当前选择的tab
  126. list: [],//工单列表
  127. idx: 0,//页码
  128. hasMore: true,//是否有更多数据
  129. isFilter: false,//筛选框开关
  130. isAttachment: false,//图片和通话录音开关
  131. isRequireAttachment: false,//报修录音开关
  132. incidentId: undefined,
  133. evtFilter: {
  134. hospital: {},
  135. selected: 'todoingAll',
  136. area: {id: 0, area: '全部'},
  137. category: {id: 0, category: '全部'},
  138. acceptDate: [],
  139. dept: {text: '全部', value: 0},
  140. },//筛选框数据
  141. })
  142. // 工单详情
  143. function toIncidentDetail(data){
  144. uni.navigateTo({
  145. url: `/pages/incidentDetail/incidentDetail?incidentId=${data.id}`
  146. })
  147. }
  148. // 获取tab选项
  149. function getTabs(){
  150. uni.showLoading({
  151. title: "加载中",
  152. mask: true,
  153. });
  154. api_getDictionary({
  155. "type": "list",
  156. "key": "incident_status"
  157. }).then(res => {
  158. uni.hideLoading();
  159. let incidentStatusList = res || [];
  160. let pending = incidentStatusList.find(v => v.value === 'pending');
  161. let handler = incidentStatusList.find(v => v.value === 'handler');
  162. dataInfo.tabs = [{id: 0, name: '全部', value: 'all', num: ''}];
  163. pending && dataInfo.tabs.push({...pending, ...{num: ''}});
  164. handler && dataInfo.tabs.push({...handler, ...{num: ''}});
  165. getList(0);
  166. })
  167. }
  168. // 点击tab
  169. function clickTab(tabId){
  170. dataInfo.tabActiveId = tabId;
  171. getList(0);
  172. }
  173. // 点击筛选
  174. function filterClick(){
  175. dataInfo.isFilter = true;
  176. }
  177. // 确认筛选
  178. function conformFilter(evtFilter){
  179. dataInfo.evtFilter = evtFilter;
  180. dataInfo.isFilter = false;
  181. getList(0);
  182. }
  183. // 关闭筛选
  184. function cancelFilter(){
  185. dataInfo.isFilter = false;
  186. }
  187. // 点击图片和录音
  188. function attachmentClick(incidentData){
  189. dataInfo.incidentData = incidentData;
  190. dataInfo.isAttachment = true;
  191. }
  192. // 知道了图片和录音
  193. function knowAttachment(){
  194. dataInfo.isAttachment = false;
  195. }
  196. // 点击报修录音
  197. function attachmentRequireClick(incidentData){
  198. dataInfo.incidentData = incidentData;
  199. dataInfo.isRequireAttachment = true;
  200. }
  201. // 知道了报修录音
  202. function knowRequireAttachment(){
  203. dataInfo.isRequireAttachment = false;
  204. }
  205. // 处理按钮
  206. function handler(type, data, incidentId){
  207. handlerStore.clearHandlerData();
  208. uni.navigateTo({
  209. url: `/pages/${type}/${type}?incidentId=${incidentId}`
  210. })
  211. }
  212. // 接单调用方案
  213. function receiveFn(incidentData){
  214. let placeId = null
  215. if(incidentData.place){
  216. placeId = JSON.parse(JSON.stringify(incidentData.place.id))
  217. }
  218. uni.showLoading({
  219. title: "加载中",
  220. mask: true,
  221. });
  222. let postData = {
  223. incident: incidentData,
  224. }
  225. if(placeId){
  226. postData.incident.place = {}
  227. postData.incident.place.id = placeId
  228. }
  229. api_incidentTask('receive', postData).then(res => {
  230. uni.hideLoading();
  231. if(res.state == 200){
  232. getList(0);
  233. uni.showToast({
  234. icon: 'none',
  235. title: '接单成功',
  236. });
  237. }else{
  238. uni.showToast({
  239. icon: 'none',
  240. title: res.msg || '请求数据失败!'
  241. });
  242. }
  243. })
  244. }
  245. // 接单按钮
  246. function receive(incidentData){
  247. uni.showModal({
  248. title: '提示',
  249. content: `您确认要接单吗?`,
  250. confirmColor: defaultColor,
  251. confirmText: '确认',
  252. success: function(res) {
  253. if (res.confirm) {
  254. receiveFn(incidentData);
  255. }
  256. }
  257. });
  258. }
  259. // 获取列表信息
  260. function getList(idx){
  261. uni.showLoading({
  262. title: "加载中",
  263. mask: true,
  264. });
  265. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  266. if(dataInfo.idx === 0){
  267. dataInfo.list = [];
  268. }
  269. let postData = {
  270. "idx": dataInfo.idx,
  271. "sum": 10,
  272. "incident": {
  273. "queryTask": dataInfo.evtFilter.selected || undefined,
  274. "assignee": loginUserStore.loginUser.user.id,
  275. "statusId": dataInfo.tabActiveId || undefined,
  276. }
  277. }
  278. // 请求参数调整
  279. if(!postData.incident){
  280. postData.incident = {};
  281. }
  282. let hospital = loginUserStore.loginUser.user.currentHospital?
  283. loginUserStore.loginUser.user.currentHospital:
  284. loginUserStore.loginUser.hospital[0]
  285. // if(postData.incident.queryTask === 'all' || postData.incident.queryTask === 'callback'){
  286. // if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
  287. // postData.incident.duty = hospital;
  288. // }else{ // 当前是院区
  289. // postData.incident.hosId = hospital.id;
  290. // }
  291. // }else{
  292. // delete postData.incident.duty;
  293. // delete postData.incident.hosId;
  294. // }
  295. // if(postData.incident.queryTask!='todo' && postData.incident.queryTask!='doing' && postData.incident.queryTask!='storage'){
  296. // if(dataInfo.evtFilter.deptValue && dataInfo.evtFilter.deptValue.value){
  297. // let infoPermission = loginUserStore.loginUser.infoPermission
  298. // let itemDept = infoPermission.dutyList.find(i=>i.id == dataInfo.evtFilter.deptValue.value)
  299. // postData.incident.duty = itemDept;
  300. // delete postData.incident.hosId;
  301. // }
  302. // }
  303. if(postData.incident.queryTask != 'todoingAll'){
  304. if(showDept.value){
  305. if(dataInfo.evtFilter.dept && dataInfo.evtFilter.dept.value){
  306. let infoPermission = loginUserStore.loginUser.infoPermission
  307. let itemDept = infoPermission.dutyList.find(i=>i.id == dataInfo.evtFilter.dept.value)
  308. postData.incident.duty = itemDept;
  309. delete postData.incident.hosId;
  310. }else{
  311. if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
  312. postData.incident.duty = hospital;
  313. delete postData.incident.hosId
  314. }else{ // 当前是院区
  315. postData.incident.hosId = hospital.id;
  316. delete postData.incident.duty
  317. }
  318. }
  319. }else{
  320. if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
  321. postData.incident.duty = hospital;
  322. delete postData.incident.hosId
  323. }else{ // 当前是院区
  324. postData.incident.hosId = hospital.id;
  325. delete postData.incident.duty
  326. }
  327. }
  328. }
  329. if(postData.incident.queryTask === 'todo' || postData.incident.queryTask === 'owns' || postData.incident.queryTask === 'todoingAll'){
  330. if(loginUserStore.loginUser.user && loginUserStore.loginUser.user.group){
  331. postData.incident.candidateGroups = loginUserStore.loginUser.user.group.map(v => v.id).toString();
  332. }
  333. }else{
  334. delete postData.incident.candidateGroups;
  335. }
  336. if(dataInfo.evtFilter && dataInfo.evtFilter.category){
  337. postData.incident.levelCategory = { id: dataInfo.evtFilter.category.value };
  338. }
  339. if(dataInfo.evtFilter && Array.isArray(dataInfo.evtFilter.acceptDate) && dataInfo.evtFilter.acceptDate.length){
  340. postData.incident.acceptDate = format(startOfDay(new Date(dataInfo.evtFilter.acceptDate[0])), 'yyyy-MM-dd HH:mm:ss');
  341. postData.incident.acceptDateEnd = format(endOfDay(dataInfo.evtFilter.acceptDate[1]), 'yyyy-MM-dd HH:mm:ss');
  342. }
  343. if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.length>0){
  344. let id = dataInfo.evtFilter.area.map(i=>{
  345. return i.id
  346. })
  347. // postData.incident.area = dataInfo.evtFilter.area
  348. postData.incident.areas = id.join(',')
  349. }
  350. incidentListSearchStore.setIncidentListSearchData(dataInfo);
  351. api_incident(postData).then(res => {
  352. uni.hideLoading();
  353. uni.stopPullDownRefresh();
  354. if(res.status == 200){
  355. let list = res.list || [];
  356. if(list.length){
  357. dataInfo.hasMore = true;
  358. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  359. }else{
  360. dataInfo.hasMore = false;
  361. }
  362. }else{
  363. uni.showToast({
  364. icon: 'none',
  365. title: res.msg || '请求数据失败!'
  366. });
  367. }
  368. })
  369. getCount(postData.incident);
  370. }
  371. // 获取列表数量
  372. function getCount(incident = {}){
  373. let postData = {
  374. wxCount: 'true',
  375. incidentList: [],
  376. }
  377. dataInfo.tabs.forEach(v => {
  378. postData.incidentList.push({...incident, ...{statusId: v.id || undefined}});
  379. })
  380. api_incident_count(postData).then(res => {
  381. if(res.state == 200){
  382. let myData = res.data || [];
  383. dataInfo.tabs.forEach((v, i) => {
  384. v.num = myData[i];
  385. })
  386. }else{
  387. uni.showToast({
  388. icon: 'none',
  389. title: res.msg || '请求数据失败!'
  390. });
  391. }
  392. })
  393. }
  394. // 初始化
  395. function onLoadFn(){
  396. // 我的-数量跳转
  397. let storeData = incidentListSearchStore.incidentListSearch.data
  398. let hospital = loginUserStore.loginUser.user.currentHospital
  399. if(incidentNumStore.incidentNum.data){
  400. console.log(111)
  401. dataInfo.evtFilter.selected = incidentNumStore.incidentNum.data.queryTask;
  402. dataInfo.tabActiveId = incidentNumStore.incidentNum.data.statusId;
  403. incidentNumStore.clearIncidentNumData();
  404. }else if(storeData){
  405. Object.assign(dataInfo, storeData);
  406. if(Object.keys(dataInfo.evtFilter.dept).length == 0){
  407. dataInfo.evtFilter.dept.text = hospital.hosName
  408. dataInfo.evtFilter.dept.value = hospital.id
  409. dataInfo.evtFilter.deptValue = hospital.id
  410. }
  411. console.log(222,dataInfo.evtFilter)
  412. }else{
  413. console.log(333)
  414. // if(Object.keys(dataInfo.evtFilter.dept).length == 0){
  415. dataInfo.evtFilter.dept.text = hospital.hosName
  416. dataInfo.evtFilter.dept.value = hospital.id
  417. dataInfo.evtFilter.deptValue = hospital.id
  418. // }
  419. }
  420. for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
  421. if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
  422. let currentMenu = loginUserStore.loginUser.menu[i].childrens;
  423. for (let j = 0; j < currentMenu.length; j++) {
  424. if (currentMenu[j].link == "assign") {
  425. assignFlag.value = true;
  426. }
  427. if (currentMenu[j].link == "receive") {
  428. qiangdan.value = true
  429. }
  430. if (currentMenu[j].link == "strideLook") {
  431. showDept.value = true
  432. }
  433. }
  434. }
  435. }
  436. getTabs();
  437. }
  438. onLoad((option) => {
  439. for(let i = 0; i<7; i++){
  440. setTabbar(i)
  441. }
  442. onLoadFn();
  443. })
  444. onUnload(() => {
  445. dataInfo.isFilter = false;
  446. })
  447. onHide(() => {
  448. dataInfo.isFilter = false;
  449. })
  450. onTabItemTap(e => {
  451. // onLoadFn();
  452. })
  453. onPullDownRefresh(() => {
  454. getList(0)
  455. })
  456. onReachBottom(() => {
  457. dataInfo.idx += 1;
  458. if (dataInfo.hasMore) {
  459. getList(); // 当触底时加载更多数据
  460. }
  461. })
  462. </script>
  463. <style lang="scss" scoped>
  464. page{
  465. height: calc(100vh - var(--window-bottom));
  466. }
  467. .incidentList{
  468. display: flex;
  469. flex-direction: column;
  470. justify-content: space-between;
  471. .head{
  472. height: 88rpx;
  473. display: flex;
  474. position: fixed;
  475. z-index: 99;
  476. width: 100%;
  477. background-color: #fff;
  478. font-size: 30rpx;
  479. .tab{
  480. flex: 1;
  481. display: flex;
  482. justify-content: center;
  483. align-items: center;
  484. border-bottom: 4rpx solid transparent;
  485. &.active{
  486. color: $uni-primary;
  487. border-color: $uni-primary;
  488. }
  489. }
  490. .filter{
  491. width: 84rpx;
  492. display: flex;
  493. justify-content: center;
  494. align-items: center;
  495. .newicon-shaixuan{
  496. font-size: 36rpx;
  497. color: #2C2C2C;
  498. }
  499. }
  500. }
  501. .body{
  502. margin-bottom: var(--window-bottom);
  503. margin-top: 88rpx;
  504. border-top: 6rpx solid #EBEBEB;
  505. .body_item{
  506. border-bottom: 8rpx solid #EBEBEB;
  507. .body_item_head{
  508. word-break: break-all;
  509. text-align: justify;
  510. text-align: left;
  511. margin: 24rpx;
  512. font-size: 30rpx;
  513. }
  514. .body_item_content{
  515. border-top: 1rpx solid #D8D8D8;
  516. padding: 24rpx 24rpx 24rpx 48rpx;
  517. .body_item_content_p{
  518. color: #6A6A6A;
  519. font-size: 26rpx;
  520. display: flex;
  521. justify-content: space-between;
  522. align-items: center;
  523. margin-bottom: 24rpx;
  524. &:last-of-type{
  525. margin-bottom: 0;
  526. }
  527. .name{
  528. flex: 1;
  529. }
  530. .status{
  531. padding: 4rpx 10rpx;
  532. border-radius: 20rpx;
  533. background-color: #DBE8FE;
  534. font-size: 22rpx;
  535. color: #006CF9;
  536. }
  537. .icon_all{
  538. .mic-filled,
  539. .image-filled
  540. {
  541. margin-left: 16rpx;
  542. }
  543. }
  544. }
  545. }
  546. .body_item_foot{
  547. border-top: 1rpx solid #D8D8D8;
  548. font-size: 26rpx;
  549. padding: 24rpx;
  550. .foot_info{
  551. display: flex;
  552. justify-content: space-between;
  553. align-items: center;
  554. .phone-filled{
  555. margin-left: 5rpx;
  556. }
  557. }
  558. }
  559. }
  560. }
  561. .zanwu{
  562. box-sizing: border-box;
  563. margin-bottom: var(--window-bottom);
  564. margin-top: 88rpx;
  565. border-top: 6rpx solid #EBEBEB;
  566. height: calc(100vh - var(--window-bottom) - 88rpx);
  567. display: flex;
  568. justify-content: center;
  569. background-color: #F7F7F7;
  570. .newicon-zanwu{
  571. font-size: 256rpx;
  572. color: #D6D6D6;
  573. margin-top: 140rpx;
  574. }
  575. }
  576. }
  577. </style>