myRepair.vue 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466
  1. <template>
  2. <view class="home">
  3. <view class="incidentList" v-if="tabsIndex1==1">
  4. <view class="head">
  5. <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
  6. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  7. </view>
  8. <view class="filter" @click="filterClick">
  9. <text class="newicon newicon-shaixuan"></text>
  10. </view>
  11. </view>
  12. <view class="body" v-if="dataInfo.list.length">
  13. <view class="body_item" v-for="data in dataInfo.list" :key="data.id" @click.stop="toIncidentDetail(data)">
  14. <view class="body_item_head ellipsis-multiline">
  15. {{data.description}}
  16. </view>
  17. <view class="body_item_content">
  18. <view class="body_item_content_p" v-if="data.place || data.houseNumber">
  19. <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>
  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.rsPrice">
  23. <text class="name ellipsis">维修总价:{{data.rsPrice}}</text>
  24. </view>
  25. <view class="body_item_content_p">
  26. <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>
  27. </view>
  28. <view class="body_item_content_p" v-if="data.currentLog && data.currentLog.logType.value=='overtime'">
  29. <text class="name ellipsis">维修说明:{{data.overtimeRemark}}</text>
  30. </view>
  31. </view>
  32. <view class="body_item_foot">
  33. <view class="foot_info">
  34. <view class="name">维修人员:{{data.assigneeName || '暂无'}}</view>
  35. <text class="date">{{formatDate(data.startDate, 'yyyy-MM-dd HH:mm')}}</text>
  36. </view>
  37. <view class="btns">
  38. <button v-if="!data.wxdegree && (data.state.name=='待评价'|| data.state.name=='已关闭')" @click.stop="handler('changeUser', data)" type="default" class="primaryButton btn">评价</button>
  39. </view>
  40. </view>
  41. <div class="sign-style" v-if="deptRepair && publicRepair">
  42. <view class="img-box" v-if="data.repairIncidentType && data.repairIncidentType.name=='科室报修'">
  43. <view class="img-url1"></view>
  44. <view class="img-name">科</view>
  45. </view>
  46. <view class="img-box" v-if="data.repairIncidentType && data.repairIncidentType.name=='公共报修'">
  47. <view class="img-url2"></view>
  48. <view class="img-name">公</view>
  49. </view>
  50. </div>
  51. </view>
  52. </view>
  53. <view class="zanwu" v-else>
  54. <text class="newicon newicon-zanwu"></text>
  55. </view>
  56. <view class="body-height"></view>
  57. <repairsFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></repairsFilter>
  58. <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
  59. <uni-popup ref="popup" background-color="#fff" type="center" :before-close="true">
  60. <view class="popup-content">
  61. <view class="form_item column">
  62. <view class="title"><text class="required newicon newicon-bitian"></text>星级:</view>
  63. <uni-rate class="value" v-model="rate" />
  64. </view>
  65. <view class="form_item column">
  66. <view class="title"><text class="required newicon newicon-bitian"></text>内容:</view>
  67. <uni-easyinput class="value" type="textarea" v-model="wxdegreeremark" placeholder="请输入评价内容"/>
  68. </view>
  69. </view>
  70. <view class="foot_common_btns">
  71. <button @click="closePop" type="default" class="cancelButton btn">取消</button>
  72. <button @click="submit" type="default" class="primaryButton btn">提交</button>
  73. </view>
  74. </uni-popup>
  75. </view>
  76. <view v-if="tabsIndex0==1">
  77. <view class="home_item" v-if="isDept.valueconfig==1">
  78. <view class="title">科室报修</view>
  79. <view class="content">
  80. <view @click="repairsView(1,'pending,handler,reassign')">
  81. <view class="con-title">处理中</view>
  82. <view class="con-value">{{repairData.deptHandlerCount}}</view>
  83. </view>
  84. <view @click="repairsView(1,'close0')">
  85. <view class="con-title">待评价</view>
  86. <view class="con-value">{{repairData.deptCloseCount}}</view>
  87. </view>
  88. <view>
  89. <view class="con-title">本月维修费用(元)</view>
  90. <view class="con-value-gr">{{repairData.deptCurrentMonthPrice || 0}}</view>
  91. </view>
  92. </view>
  93. </view>
  94. <view class="home_item">
  95. <view class="title">我的报修</view>
  96. <view class="content">
  97. <view @click="repairsView(0,'pending,handler,reassign')">
  98. <view class="con-title">处理中</view>
  99. <view class="con-value">{{repairData.userHandlerCount}}</view>
  100. </view>
  101. <view @click="repairsView(0,'close0')">
  102. <view class="con-title">待评价</view>
  103. <view class="con-value">{{repairData.userCloseCount}}</view>
  104. </view>
  105. </view>
  106. </view>
  107. <!-- <view class="home_item">
  108. <uni-notice-bar show-icon scrollable background-color="#ffffff" color="#000"
  109. :text="noticeData" />
  110. </view> -->
  111. <view class="home_item home-disp">
  112. <view class="bottom-left" @click="addRepairs">
  113. <view class="bottom-left-box">
  114. <text class="newicon newicon-kuaisubaoxiu icon"></text>
  115. <view>快速报修</view>
  116. </view>
  117. </view>
  118. <view class="bottom-right mar-t-20">
  119. <view class="bottom-right-item" v-if="isRepair.valueconfig==1" @click="scanCodes">
  120. <text class="newicon newicon-saoma icon"></text>
  121. <view class="name1">扫资产报修</view>
  122. </view>
  123. <view class="bottom-right-item" @click="repository">
  124. <text class="newicon newicon-zhishiku1 icon"></text>
  125. <view class="name2">知识库</view>
  126. </view>
  127. </view>
  128. </view>
  129. </view>
  130. <view v-if="tabsIndex2==1" class="mine">
  131. <view class="body">
  132. <view class="bottom">
  133. <view class="bottom_name">个人信息</view>
  134. <view class="bottom_list">
  135. <view class="bottom_list_item">
  136. <view class="name"><text class="required newicon newicon-bitian"></text>工号</view>
  137. <view class="value no-mar">{{dataForm.account}}</view>
  138. </view>
  139. <view class="bottom_list_item">
  140. <view class="name"><text class="required newicon newicon-bitian"></text>姓名</view>
  141. <view class="value no-mar">{{dataForm.name}}</view>
  142. </view>
  143. <view class="bottom_list_item">
  144. <view class="name"><text class="required newicon newicon-bitian"></text>院区名称</view>
  145. <uni-data-picker class="value" placeholder="请选择院区名称"
  146. v-model="dataForm.branch" :localdata="branchData" @change="branchChange"
  147. :clear-icon="false" :class="{formRed: isSubmit && !dataForm.branch}">
  148. </uni-data-picker>
  149. <text class="newicon newicon-youjiantou icon"></text>
  150. </view>
  151. <view class="bottom_list_item" v-if="deptRepair.valueconfig==1" @click="selectDepartment">
  152. <!-- <view class="name"><text class="required newicon newicon-bitian"></text>科室名称</view>
  153. <uni-data-picker class="value" placeholder="请选择报修科室"
  154. v-model="dataForm.dept" :localdata="deptData"
  155. :clear-icon="false" :class="{formRed: isSubmit && !dataForm.dept}">
  156. </uni-data-picker> -->
  157. <text class="newicon newicon-youjiantou icon"></text>
  158. <!-- <view class="form_item"> -->
  159. <view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
  160. <view class="value category">
  161. <text class="categoryName ellipsis-multiline">{{dataForm.departmentName}}</text>
  162. <!-- <text class="newicon newicon-weibiaoti2010104"></text> -->
  163. </view>
  164. <!-- </view> -->
  165. </view>
  166. <view class="bottom_list_item" v-if="deptRepair.valueconfig==1" @click="deptSelect">
  167. <view class="name">常用科室</view>
  168. <view class="value">{{commonDeptName}}</view>
  169. <text class="newicon newicon-youjiantou icon"></text>
  170. </view>
  171. <view class="bottom_list_item">
  172. <view class="name"><text class="required newicon newicon-bitian"></text>联系电话</view>
  173. <view class="value no-mar" @click="makePhoneCall(dataForm.phone)">{{dataForm.phone}}</view>
  174. </view>
  175. </view>
  176. </view>
  177. </view>
  178. <view class="foot_common_btns fixed-btn">
  179. <button @click="addInfo" type="default" class="primaryButton btn">保存</button>
  180. </view>
  181. </view>
  182. <view class="bottom-tabs">
  183. <view class="tabs-list" @click="tabsClick0">
  184. <img src="/static/img/icon_index.png" v-if="tabsIndex0==0" alt="">
  185. <img src="/static/img/icon_index_active.png" v-if="tabsIndex0==1" alt="">
  186. <view class="tabs-title" :class="tabsIndex0==1?'active-class':''">首页 </view>
  187. </view>
  188. <view class="tabs-list" @click="tabsClick1">
  189. <img src="/static/img/icon_incidentList.png" v-if="tabsIndex1==0" alt="">
  190. <img src="/static/img/icon_incidentList_active.png" v-if="tabsIndex1==1" alt="">
  191. <view class="tabs-title" :class="tabsIndex1==1?'active-class':''">我的报修</view>
  192. </view>
  193. <view class="tabs-list" @click="tabsClick2">
  194. <img src="/static/img/icon_my.png" v-if="tabsIndex2==0" alt="">
  195. <img src="/static/img/icon_my_active.png" v-if="tabsIndex2==1" alt="">
  196. <view class="tabs-title" :class="tabsIndex2==1?'active-class':''">设置</view>
  197. </view>
  198. </view>
  199. </view>
  200. </template>
  201. <script setup>
  202. import { SM } from "@/http/http.js"
  203. import { api_getDictionary, api_incident, api_incident_count, api_incidentTask, api_taskresolve, api_systemConfiguration, api_userSave, api_user, api_department, api_repairScanCode, api_getNotice, api_getCount } from "@/http/api.js"
  204. import repairsFilter from '@/components/repairsFilter.vue';
  205. import IncidentAttachment from '@/components/IncidentAttachment.vue';
  206. import { startOfDay, endOfDay, format, add } from 'date-fns'
  207. import { ref, reactive, computed } from 'vue'
  208. import { onLoad, onShow, onHide, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  209. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  210. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  211. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  212. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  213. import { defaultColor } from '@/static/js/theme.js'
  214. import { useSetTitle } from '@/share/useSetTitle.js'
  215. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  216. import { useLoginUserStore } from '@/stores/loginUser'
  217. import { useIncidentNumStore } from '@/stores/incidentNum'
  218. import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
  219. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  220. import { useSetTabbar } from '@/share/useSetTabbar.js'
  221. useSetTitle();
  222. // 数据
  223. const incidentListSearchStore = useIncidentListSearchStore();
  224. const { formatDate } = filterFormatDate();
  225. const { priorityStyle } = computedPriorityStyle();
  226. const { stateStyle } = computedStateStyle();
  227. const { currentLogOverTime } = computedCurrentLogOverTime();
  228. const { setTabbar } = useSetTabbar();
  229. // 主题颜色
  230. const primaryColor = ref(defaultColor)
  231. const popup = ref(null);//弹框
  232. const assignFlag = ref(false);//指派权限
  233. const qiangdan = ref(false);//接单权限
  234. const publicRepair = ref({});//公共报修
  235. const degreeDictionary = ref(null); //星级字典
  236. const rowData = ref(null); //选择的数据
  237. const rate = ref(3);//星级
  238. const wxdegreeremark = ref(null);//评价内容
  239. const repairIncident = ref(null);
  240. // 数据
  241. const dataInfo = reactive({
  242. tabs: [{id: 0, name: '我的报修', value: 'all', num: ''},],
  243. tabActiveId: 0,//当前选择的tab
  244. list: [],//工单列表
  245. idx: 0,//页码
  246. hasMore: true,//是否有更多数据
  247. isFilter: false,//筛选框开关
  248. isAttachment: false,//图片和录音开关
  249. incidentId: undefined,
  250. stateValue:0,
  251. evtFilter: {
  252. hospital: {},
  253. selected: 'todoingAll',
  254. area: {id: 0, area: '全部'},
  255. category: {id: 0, category: '全部'},
  256. acceptDate: [],
  257. },//筛选框数据
  258. })
  259. const isDept = ref({})
  260. const isRepair = ref({})
  261. const isPublic = ref({})
  262. const noticeData = ref('')
  263. const repairData = ref({})
  264. const tabsIndex0 = ref(1)
  265. const tabsIndex1 = ref(0)
  266. const tabsIndex2 = ref(0)
  267. const repositorySearchStore = repositoryListSearchStore();
  268. const loginUserStore = useLoginUserStore();
  269. const incidentNumStore = useIncidentNumStore();
  270. const { makePhoneCall } = useMakePhoneCall();
  271. const deptRepair = ref(null)
  272. const deptData = ref([])
  273. const branchData = ref([])
  274. const commonDeptName = ref(null)
  275. const commonDeptData = ref(null)
  276. const dataForm = reactive({
  277. name:loginUserStore.loginUser.user.name,
  278. account:loginUserStore.loginUser.user.account,
  279. phone:loginUserStore.loginUser.user.phone,
  280. dept: '',
  281. departmentName:'',
  282. branch:'',
  283. commonDeptName:'',
  284. commonDeptData:'',
  285. dataType:false
  286. })
  287. const operationType = ref(null)
  288. const userTypes = ref(null)
  289. const userData = reactive(loginUserStore.loginUser.user)
  290. const commonDeptDTO = ref([])
  291. // 是否提交
  292. const isSubmit = ref(false)
  293. // 数据
  294. const dataConfigInfo = reactive({
  295. num: 0,
  296. })
  297. function tabsClick0(){
  298. tabsIndex0.value=1
  299. tabsIndex1.value=0
  300. tabsIndex2.value=0
  301. getCount()
  302. repositorySearchStore.clearRepositoryListSearchData()
  303. }
  304. function tabsClick1(){
  305. tabsIndex0.value=0
  306. tabsIndex2.value=0
  307. tabsIndex1.value=1
  308. // dataInfo.tabActiveId = 0
  309. dataInfo.stateValue = 0
  310. getTabs();
  311. }
  312. function tabsClick2(){
  313. tabsIndex2.value=1
  314. tabsIndex1.value=0
  315. tabsIndex0.value=0
  316. getUserInfo()
  317. repositorySearchStore.clearRepositoryListSearchData()
  318. }
  319. // 工单详情
  320. function toIncidentDetail(data){
  321. uni.navigateTo({
  322. url: `/pages/repair/repairsDetail?incidentId=${data.id}`
  323. })
  324. }
  325. // 获取tab选项
  326. function getTabs(){
  327. uni.showLoading({
  328. title: "加载中",
  329. mask: true,
  330. });
  331. let postData = {
  332. "key": 'repair_incident_type',
  333. "type": "list",
  334. };
  335. if(deptRepair.value.valueconfig==1){
  336. api_getDictionary(postData).then(res => {
  337. res = res || [];
  338. repairIncident.value = res.find(i=>i.value=='dept')
  339. getList(0);
  340. })
  341. dataInfo.tabs = [
  342. {id: 0, name: '我的报修', value: 'all', num: ''},
  343. {id: 1, name: '科内报修', value: '2', num: ''}
  344. ]
  345. }else{
  346. getList(0);
  347. dataInfo.tabs = [
  348. {id: 0, name: '我的报修', value: 'all', num: ''},
  349. ]
  350. }
  351. }
  352. // 点击tab
  353. function clickTab(tabId){
  354. dataInfo.tabActiveId = tabId;
  355. uni.pageScrollTo({
  356. scrollTop: 0,
  357. duration: 300 // 动画时长,默认300ms
  358. });
  359. dataInfo.idx=0
  360. getList(0);
  361. }
  362. // 点击筛选
  363. function filterClick(){
  364. dataInfo.isFilter = true;
  365. }
  366. // 确认筛选
  367. function conformFilter(evtFilter){
  368. dataInfo.stateValue = evtFilter.category;
  369. dataInfo.isFilter = false;
  370. getList(0);
  371. }
  372. // 关闭筛选
  373. function cancelFilter(){
  374. dataInfo.isFilter = false;
  375. }
  376. // 点击图片和录音
  377. function attachmentClick(incidentData){
  378. dataInfo.incidentData = incidentData;
  379. dataInfo.isAttachment = true;
  380. }
  381. // 知道了图片和录音
  382. function knowAttachment(){
  383. dataInfo.isAttachment = false;
  384. }
  385. // 评价
  386. function handler(type, data){
  387. rowData.value = data
  388. popup.value.open()
  389. let postData = {
  390. key: "incident_degree",
  391. type: "list"
  392. };
  393. api_getDictionary(postData).then(res => {
  394. res = res || [];
  395. degreeDictionary.value = res
  396. })
  397. }
  398. function closePop(){
  399. rate.value = 3
  400. wxdegreeremark.value = null
  401. popup.value.close()
  402. }
  403. function submit(){
  404. if(!rate.value){
  405. uni.showToast({
  406. icon: 'none',
  407. title: '请选择星级'
  408. });
  409. return;
  410. }
  411. if(!wxdegreeremark.value){
  412. uni.showToast({
  413. icon: 'none',
  414. title: '请输入评价内容'
  415. });
  416. return;
  417. }
  418. let rateData = null
  419. if(rate.value==0){
  420. rateData=degreeDictionary.value[0].id
  421. }else if(rate.value==1){
  422. rateData=degreeDictionary.value[4].id
  423. }else if(rate.value==2){
  424. rateData=degreeDictionary.value[3].id
  425. }else if(rate.value==3){
  426. rateData=degreeDictionary.value[2].id
  427. }else if(rate.value==4){
  428. rateData=degreeDictionary.value[1].id
  429. }else if(rate.value==5){
  430. rateData=degreeDictionary.value[0].id
  431. }
  432. let postData = {
  433. ...rowData.value,
  434. wxdegree: rateData==0?degreeDictionary.value[0]:{id: rateData},
  435. wxdegreeremark: wxdegreeremark.value
  436. }
  437. api_taskresolve({incident:postData}).then(res => {
  438. uni.hideLoading();
  439. if(res.state == 200){
  440. getList(0);
  441. uni.showToast({
  442. icon: 'none',
  443. title: '评价成功',
  444. });
  445. }else{
  446. uni.showToast({
  447. icon: 'none',
  448. title: res.msg || '请求数据失败!'
  449. });
  450. }
  451. })
  452. closePop()
  453. }
  454. // 获取列表信息
  455. function getList(idx){
  456. uni.showLoading({
  457. title: "加载中",
  458. mask: true,
  459. });
  460. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  461. if(dataInfo.idx === 0){
  462. dataInfo.list = [];
  463. }
  464. let postData = {
  465. "idx": dataInfo.idx,
  466. "sum": 20,
  467. incident: {
  468. requester: dataInfo.tabActiveId == 0 ? { id: loginUserStore.loginUser.user.id } : undefined,
  469. department: dataInfo.tabActiveId == 1 ? { id: loginUserStore.loginUser.user.dept.id } : undefined,
  470. statesValues: (dataInfo.stateValue === 'close0' || dataInfo.stateValue === 'close1') ? 'close' : (dataInfo.stateValue || undefined),
  471. hasWxdegree: dataInfo.stateValue === 'close0' ? 0 : (dataInfo.stateValue === 'close1' ? 1 : undefined),
  472. repairIncidentType:{
  473. id:''
  474. }
  475. }
  476. }
  477. if(dataInfo.tabActiveId == 1){
  478. postData.incident.repairIncidentType.id = repairIncident.value.id
  479. }
  480. if(JSON.stringify(postData.incident.statesValues) === '{}'){
  481. delete postData.incident.statesValues
  482. }
  483. api_incident(postData).then(res => {
  484. uni.hideLoading();
  485. uni.stopPullDownRefresh();
  486. if(res.status == 200){
  487. let list = res.list || [];
  488. if(list.length){
  489. dataInfo.hasMore = true;
  490. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  491. }else{
  492. dataInfo.hasMore = false;
  493. }
  494. }else{
  495. uni.showToast({
  496. icon: 'none',
  497. title: res.msg || '请求数据失败!'
  498. });
  499. }
  500. })
  501. // getCount(postData.incident);
  502. }
  503. // 获取列表数量
  504. // function getCount(incident = {}){
  505. // let postData = {
  506. // wxCount: 'true',
  507. // incidentList: [],
  508. // }
  509. // dataInfo.tabs.forEach(v => {
  510. // postData.incidentList.push({...incident, ...{statusId: v.id || undefined}});
  511. // })
  512. // api_incident_count(postData).then(res => {
  513. // if(res.state == 200){
  514. // let myData = res.data || [];
  515. // dataInfo.tabs.forEach((v, i) => {
  516. // v.num = myData[i];
  517. // })
  518. // }else{
  519. // uni.showToast({
  520. // icon: 'none',
  521. // title: res.msg || '请求数据失败!'
  522. // });
  523. // }
  524. // })
  525. // }
  526. // 知识库
  527. function repository(){
  528. uni.navigateTo({
  529. url: `/pages/repository/repository?type=view&entranceType=repairs`
  530. })
  531. }
  532. // 报修列表
  533. function repairsView(type,value){
  534. tabsIndex0.value = 0
  535. tabsIndex1.value = 1
  536. tabsIndex2.value = 0
  537. dataInfo.tabActiveId = type
  538. dataInfo.stateValue = value
  539. dataInfo.evtFilter.category = value
  540. repositorySearchStore.setRepositoryListSearchData(dataInfo.evtFilter)
  541. getTabs()
  542. }
  543. // 获取报修数量
  544. function getCount(){
  545. uni.showLoading({
  546. title: "加载中",
  547. mask: true,
  548. });
  549. api_getCount({}).then(res=>{
  550. uni.hideLoading();
  551. repairData.value = res.data
  552. })
  553. }
  554. // 快速报修
  555. function addRepairs(){
  556. if(isDept.value.valueconfig==0 && isPublic.value.valueconfig==0){
  557. uni.showToast({
  558. icon: 'none',
  559. title: '请先开启科室报修或公共报修'
  560. });
  561. return
  562. }
  563. uni.setStorageSync('repairsType','subpage')
  564. uni.navigateTo({
  565. url: '/pages/repair/rapidRep'
  566. })
  567. }
  568. // 扫资产报修
  569. function scanCodes(){
  570. uni.showLoading({
  571. title: "加载中",
  572. mask: true,
  573. });
  574. SM().then((res) => {
  575. api_repairScanCode({
  576. code:res
  577. }).then((res2) => {
  578. uni.hideLoading();
  579. if (res2.state == 200) {
  580. uni.setStorageSync('repairsType','subpage')
  581. uni.navigateTo({
  582. url: `/pages/repair/rapidRep?property=${res2.data.name}&assetId=${res2.data.id}`
  583. })
  584. } else {
  585. uni.showToast({
  586. icon: 'none',
  587. title: res2.msg || '请求数据失败!'
  588. });
  589. }
  590. });
  591. })
  592. }
  593. // 保存
  594. function addInfo(){
  595. if(!dataForm.branch){
  596. uni.showToast({
  597. icon: 'none',
  598. title: '院区不能为空'
  599. });
  600. return
  601. }
  602. if(!dataForm.dept){
  603. uni.showToast({
  604. icon: 'none',
  605. title: '报修科室不能为空'
  606. });
  607. return
  608. }
  609. uni.showLoading({
  610. title: "加载中",
  611. mask: true,
  612. });
  613. isSubmit.value = true
  614. userData.currentHospital.id = dataForm.branch
  615. userData.commonDeptName = commonDeptName.value
  616. userData.dept={
  617. id:dataForm.dept
  618. }
  619. let arr = []
  620. for(let i of commonDeptDTO.value){
  621. arr.push({
  622. dept:i
  623. })
  624. }
  625. let postData = {
  626. ...loginUserStore.loginUser.user,
  627. // ...userData,
  628. hospital:{
  629. id:dataForm.branch
  630. },
  631. dept:{
  632. id:dataForm.dept
  633. },
  634. commonDept:commonDeptData.value,
  635. commonDeptDTO:arr,
  636. upType: "changeDept"
  637. }
  638. api_userSave({
  639. user: postData,
  640. }).then(res => {
  641. uni.hideLoading();
  642. if(res.status == 200){
  643. loginUserStore.setLoginUser(postData);
  644. uni.showToast({
  645. icon: 'none',
  646. title: '保存成功'
  647. });
  648. }else{
  649. uni.showToast({
  650. icon: 'none',
  651. title: res.msg || '请求数据失败!'
  652. });
  653. }
  654. })
  655. }
  656. // 选择院区
  657. function branchChange(){
  658. dataForm.dept = null
  659. dataForm.departmentName = null
  660. dataForm.commonDeptName = null
  661. dataForm.commonDeptData = null
  662. commonDeptName.value = null
  663. commonDeptData.value = null
  664. // getRepairTypes()
  665. }
  666. // 跳转到科室
  667. function selectDepartment(){
  668. if(commonDeptName.value){
  669. dataForm.dataType = true
  670. }else{
  671. dataForm.dataType = false
  672. }
  673. uni.setStorageSync('configData',JSON.stringify(dataForm))
  674. uni.navigateTo({
  675. url: `/pages/searchDept/searchDept?type=config&branchId=${dataForm.branch}`
  676. })
  677. }
  678. // 获取科室列表
  679. function getRepairTypes(){
  680. uni.showLoading({
  681. title: "加载中",
  682. mask: true,
  683. });
  684. let postData = {
  685. department: {
  686. hospital: dataForm.branch?dataForm.branch:loginUserStore.loginUser.user.currentHospital.id,
  687. },
  688. idx:0,
  689. sum:9999
  690. }
  691. api_department(postData).then(res => {
  692. uni.hideLoading();
  693. res = res.list || [];
  694. deptData.value = res.map(v => ({
  695. text: v.dept,
  696. value: v.id,
  697. }));
  698. })
  699. }
  700. // 获取院区列表
  701. function getBranch(){
  702. let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
  703. branchData.value = arr.map(v => ({
  704. text: v.hosName,
  705. value: v.id,
  706. }));
  707. }
  708. // 选择常用科室
  709. function deptSelect(){
  710. uni.setStorageSync('configData',JSON.stringify(dataForm))
  711. let data = commonDeptData.value
  712. // ? commonDeptData.value : loginUserStore.loginUser.user.commonDept
  713. if(!data){
  714. data = 'none'
  715. }
  716. let deptId = dataForm.branch?dataForm.branch:loginUserStore.loginUser.user.currentHospital.id
  717. uni.navigateTo({
  718. url: `/pages/repair/deptSelect?data=${JSON.stringify(data)}&commonDeptName=${commonDeptName.value}&deptId=${deptId}&type=home`
  719. })
  720. }
  721. function getUserInfo(){
  722. let user = loginUserStore.loginUser.user
  723. let userId = null
  724. if(user.currentHospital.parent){
  725. userId = user.currentHospital.parent.id
  726. }else{
  727. userId = user.currentHospital.id
  728. }
  729. let postData = {
  730. idx: 0,
  731. sum: 999,
  732. user: {
  733. hospital:{
  734. id:userId
  735. },
  736. name: user.name,
  737. userTypeIds: String(userTypes.value.map(v => v.id))
  738. }
  739. }
  740. api_user(postData).then(res => {
  741. if(res.status == 200){
  742. let item = res.list.find(i=>i.id==user.id)
  743. let data = uni.getStorageSync('configData')
  744. if(operationType.value=='selectDept'){
  745. if(data){
  746. data = JSON.parse(data)
  747. dataForm.name = data.name
  748. dataForm.account = data.account
  749. dataForm.phone = data.phone
  750. dataForm.dept = data.dept
  751. dataForm.departmentName = data.departmentName
  752. dataForm.branch = Number(data.branch)
  753. dataForm.commonDeptName = data.commonDeptName
  754. dataForm.commonDeptData = data.commonDeptData
  755. if(data.dataType){
  756. commonDeptData.value = data.commonDeptData
  757. commonDeptName.value = data.commonDeptName
  758. }
  759. }
  760. }else if(item){
  761. if(item.hospital.parent){
  762. dataForm.branch = item.hospital.parent.id
  763. }else{
  764. dataForm.branch = item.hospital.id
  765. }
  766. if(item.dept){
  767. dataForm.dept = item.dept.id
  768. dataForm.departmentName = item.dept.dept
  769. }
  770. // getRepairTypes()
  771. let id = []
  772. let name = []
  773. if(item.commonDeptDTO){
  774. for(let i of item.commonDeptDTO){
  775. id.push(i.id)
  776. name.push(i.dept)
  777. }
  778. commonDeptData.value = id.join(',')
  779. commonDeptName.value = name.join('/')
  780. dataForm.commonDeptName = commonDeptName.value
  781. dataForm.commonDeptData = commonDeptData.value
  782. }
  783. }else{
  784. // let data = uni.getStorageSync('configData')
  785. // if(data){
  786. // data = JSON.parse(data)
  787. // dataForm.dept = data.dept
  788. // dataForm.branch = data.branch
  789. // }else{
  790. if(user.currentHospital.parent){
  791. dataForm.branch = user.currentHospital.parent.id
  792. }else{
  793. dataForm.branch = user.currentHospital.id
  794. }
  795. if(user.dept){
  796. dataForm.dept = user.dept.id
  797. dataForm.departmentName = user.dept.dept
  798. }
  799. // }
  800. if(user.commonDeptDTO){
  801. let name = []
  802. for(let i of user.commonDeptDTO){
  803. name.push(i.dept)
  804. }
  805. commonDeptData.value = user.commonDept
  806. commonDeptName.value = name.join('/')
  807. dataForm.commonDeptName = commonDeptName.value
  808. dataForm.commonDeptData = commonDeptData.value
  809. }
  810. // getRepairTypes()
  811. }
  812. }else{
  813. uni.showToast({
  814. icon: 'none',
  815. title: res.msg || '请求数据失败!'
  816. });
  817. }
  818. })
  819. }
  820. // 获取配置项
  821. function getConfig(option){
  822. api_systemConfiguration({
  823. idx: 0,
  824. sum: 9999,
  825. }).then(res=>{
  826. let data = res.list
  827. isDept.value = data.find(i=>i.keyconfig=='deptRepair')
  828. isRepair.value = data.find(i=>i.keyconfig=='cmdbRepair')
  829. isPublic.value = data.find(i=>i.keyconfig=='publicRepair')
  830. deptRepair.value = data.find(i=>i.keyconfig=='deptRepair')
  831. publicRepair.value = data.find(i=>i.keyconfig=='publicRepair')
  832. getBranch()
  833. if(option.type==2){
  834. tabsIndex0.value = 0
  835. tabsIndex1.value = 0
  836. tabsIndex2.value = 1
  837. if(option.data){
  838. let data = JSON.parse(option.data)
  839. commonDeptData.value = data.data.join(',')
  840. commonDeptName.value = data.name.join('/')
  841. commonDeptDTO.value = data.name
  842. dataForm.commonDeptData = data.data.join(',')
  843. dataForm.commonDeptName = data.name.join('/')
  844. let data2 = uni.getStorageSync('configData')
  845. if(data2){
  846. data2 = JSON.parse(data2)
  847. dataForm.dept = data2.dept
  848. dataForm.departmentName = data2.departmentName
  849. dataForm.branch = data2.branch
  850. }
  851. }else{
  852. getUserInfo()
  853. }
  854. }else if(option.type==1){
  855. tabsIndex0.value = 0
  856. tabsIndex1.value = 1
  857. tabsIndex2.value = 0
  858. getTabs()
  859. }else{
  860. tabsIndex0.value = 1
  861. tabsIndex1.value = 0
  862. tabsIndex2.value = 0
  863. getCount()
  864. }
  865. })
  866. }
  867. onHide(opt=>{
  868. dataConfigInfo.num = 0
  869. dataForm.branch = null
  870. })
  871. onLoad((option) => {
  872. console.log(777,option)
  873. getConfig(option)
  874. userTypes.value = JSON.parse(uni.getStorageSync('groupData'))
  875. dataConfigInfo.num = 1
  876. if(option && option.configType){
  877. operationType.value = option.configType
  878. }
  879. })
  880. onReachBottom(() => {
  881. if(tabsIndex1.value==1){
  882. dataInfo.idx += 1;
  883. if (dataInfo.hasMore) {
  884. getList(); // 当触底时加载更多数据
  885. }
  886. }
  887. })
  888. onPullDownRefresh(_=>{
  889. // uni.stopPullDownRefresh();
  890. })
  891. onShow((option) => {
  892. userTypes.value = JSON.parse(uni.getStorageSync('groupData'))
  893. if(dataConfigInfo.num==0){
  894. getUserInfo()
  895. }
  896. repositorySearchStore.clearRepositoryListSearchData()
  897. })
  898. </script>
  899. <style scoped>
  900. >>> .uni-popup__wrapper{
  901. width: 80%;
  902. padding: 40rpx;
  903. }
  904. >>> .uni-data-tree-input{
  905. width: 100% !important;
  906. }
  907. >>> .input-value-border{
  908. border: none !important;
  909. }
  910. >>> .input-value{
  911. padding:0 !important;
  912. flex-direction: row-reverse !important;
  913. }
  914. >>> .selected-list{
  915. flex-direction: row-reverse !important;
  916. }
  917. >>> .arrow-area{
  918. display: none !important;
  919. }
  920. >>>.uni-data-tree-dialog{
  921. z-index: 9999;
  922. }
  923. </style>
  924. <style lang="scss" scoped>
  925. page{
  926. height: calc(100vh - var(--window-bottom));
  927. }
  928. .incidentList{
  929. display: flex;
  930. flex-direction: column;
  931. justify-content: space-between;
  932. .head{
  933. height: 88rpx;
  934. display: flex;
  935. position: fixed;
  936. z-index: 99;
  937. width: 100%;
  938. background-color: #fff;
  939. font-size: 30rpx;
  940. .tab{
  941. flex: 1;
  942. display: flex;
  943. justify-content: center;
  944. align-items: center;
  945. border-bottom: 4rpx solid transparent;
  946. &.active{
  947. color: $uni-primary;
  948. border-color: $uni-primary;
  949. }
  950. }
  951. .filter{
  952. width: 84rpx;
  953. display: flex;
  954. justify-content: center;
  955. align-items: center;
  956. .newicon-shaixuan{
  957. font-size: 36rpx;
  958. color: #2C2C2C;
  959. }
  960. }
  961. }
  962. .body{
  963. margin-bottom: var(--window-bottom);
  964. margin-top: 88rpx;
  965. border-top: 6rpx solid #EBEBEB;
  966. .body_item{
  967. border-bottom: 8rpx solid #EBEBEB;
  968. position: relative;
  969. .sign-style{
  970. position: absolute;
  971. right: 0;
  972. top: -25rpx;
  973. .img-box{
  974. position: relative;
  975. .img-url1{
  976. width: 70rpx;
  977. height: 70rpx;
  978. background-image: url('../../static/img/jiaobiao1.png');
  979. }
  980. .img-url2{
  981. width: 70rpx;
  982. height: 70rpx;
  983. background-image: url('../../static/img/jiaobiao2.png');
  984. }
  985. .img-name{
  986. position: absolute;
  987. right: 8rpx;
  988. top: 0;
  989. color: #fff;
  990. font-size: 24rpx;
  991. }
  992. }
  993. }
  994. .body_item_head{
  995. word-break: break-all;
  996. text-align: justify;
  997. text-align: left;
  998. margin: 24rpx;
  999. font-size: 30rpx;
  1000. }
  1001. .body_item_content{
  1002. border-top: 1rpx solid #D8D8D8;
  1003. padding: 24rpx 24rpx 24rpx 48rpx;
  1004. .body_item_content_p{
  1005. color: #6A6A6A;
  1006. font-size: 26rpx;
  1007. display: flex;
  1008. justify-content: space-between;
  1009. align-items: center;
  1010. margin-bottom: 24rpx;
  1011. &:last-of-type{
  1012. margin-bottom: 0;
  1013. }
  1014. .name{
  1015. flex: 1;
  1016. }
  1017. .status{
  1018. padding: 4rpx 10rpx;
  1019. border-radius: 20rpx;
  1020. background-color: #DBE8FE;
  1021. font-size: 22rpx;
  1022. color: #006CF9;
  1023. }
  1024. .icon_all{
  1025. .mic-filled,
  1026. .image-filled
  1027. {
  1028. margin-left: 16rpx;
  1029. }
  1030. }
  1031. }
  1032. }
  1033. .body_item_foot{
  1034. border-top: 1rpx solid #D8D8D8;
  1035. font-size: 26rpx;
  1036. padding: 24rpx;
  1037. .foot_info{
  1038. display: flex;
  1039. justify-content: space-between;
  1040. align-items: center;
  1041. .phone-filled{
  1042. margin-left: 5rpx;
  1043. }
  1044. }
  1045. }
  1046. }
  1047. }
  1048. .body-height{
  1049. height: 88rpx;
  1050. }
  1051. .zanwu{
  1052. box-sizing: border-box;
  1053. margin-bottom: var(--window-bottom);
  1054. margin-top: 88rpx;
  1055. border-top: 6rpx solid #EBEBEB;
  1056. height: calc(100vh - var(--window-bottom) - 88rpx);
  1057. display: flex;
  1058. justify-content: center;
  1059. background-color: #F7F7F7;
  1060. .newicon-zanwu{
  1061. font-size: 256rpx;
  1062. color: #D6D6D6;
  1063. margin-top: 140rpx;
  1064. }
  1065. }
  1066. .popup-content{
  1067. .form_item{
  1068. display: flex;
  1069. align-items: center;
  1070. padding-top: 24rpx;
  1071. min-height: 86rpx;
  1072. position: relative;
  1073. .chunk{
  1074. width: 100%;
  1075. height: 70rpx;
  1076. line-height: 70rpx;
  1077. text-align: center;
  1078. background: #F7F8FA;
  1079. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  1080. border-radius: 10rpx;
  1081. }
  1082. &.column{
  1083. height: auto;
  1084. flex-direction: column;
  1085. align-items: flex-start;
  1086. .import-rep{
  1087. padding: 5rpx 10rpx;
  1088. border-radius: 50rpx;
  1089. background: #d1fcd5;
  1090. color: #49b856;
  1091. font-size: 24rpx;
  1092. }
  1093. .title{
  1094. margin-right: 0;
  1095. }
  1096. .title-width{
  1097. width: 100%;
  1098. }
  1099. .title-fl-sb{
  1100. display: flex;
  1101. justify-content: space-between;
  1102. width: 100%;
  1103. }
  1104. .value{
  1105. margin-top: 10rpx;
  1106. // padding-left: 20rpx;
  1107. box-sizing: border-box;
  1108. }
  1109. .tips{
  1110. padding: 24rpx;
  1111. text-align: center;
  1112. font-size: 22rpx;
  1113. color: #909399;
  1114. width: 100%;
  1115. box-sizing: border-box;
  1116. }
  1117. }
  1118. .title{
  1119. font-size: 26rpx;
  1120. display: flex;
  1121. align-items: center;
  1122. margin-right: 12rpx;
  1123. flex-shrink: 0;
  1124. &.select{
  1125. width: calc(5em + 20rpx);
  1126. }
  1127. }
  1128. .value{
  1129. width: 100%;
  1130. &.category{
  1131. width: 100%;
  1132. display: flex;
  1133. justify-content: space-between;
  1134. align-items: center;
  1135. .categoryName{
  1136. font-size: 26rpx;
  1137. color: #555;
  1138. flex: 1;
  1139. }
  1140. .newicon-weibiaoti2010104{
  1141. color: $uni-primary;
  1142. margin-left: 24rpx;
  1143. }
  1144. }
  1145. .imgTips{
  1146. color: #909399;
  1147. font-size: 22rpx;
  1148. margin-top: 10rpx;
  1149. }
  1150. }
  1151. .item-input{
  1152. border: 1px solid #DBDBDB;
  1153. height: 70rpx;
  1154. line-height: 70rpx;
  1155. padding: 0 10rpx;
  1156. border-radius: 4rpx;
  1157. width: 100%;
  1158. font-size: 14px;
  1159. }
  1160. .icon{
  1161. position: absolute;
  1162. right: 20rpx;
  1163. color: #49b856;
  1164. }
  1165. }
  1166. }
  1167. }
  1168. .home{
  1169. // height: 100vh;
  1170. // padding: 20rpx;
  1171. background: #fff;
  1172. .home_item{
  1173. padding: 20rpx;
  1174. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  1175. border-radius: 10rpx;
  1176. margin-bottom: 30rpx;
  1177. .title{
  1178. font-size: 26rpx;
  1179. color: $uni-primary;
  1180. padding-left: 18rpx;
  1181. position: relative;
  1182. margin-bottom: 20rpx;
  1183. &:before{
  1184. content: '';
  1185. width: 8rpx;
  1186. height: 25rpx;
  1187. background-color: $uni-primary;
  1188. position: absolute;
  1189. left: 0;
  1190. top: 50%;
  1191. transform: translateY(-50%);
  1192. }
  1193. }
  1194. .content{
  1195. display: flex;
  1196. align-items: center;
  1197. justify-content: space-around;
  1198. text-align: center;
  1199. .con-title{
  1200. color: #949494;
  1201. font-size: 24rpx;
  1202. margin-bottom: 15rpx;
  1203. }
  1204. .con-value{
  1205. color: #000;
  1206. font-size: 50rpx;
  1207. }
  1208. .con-value-gr{
  1209. color: #49B856;
  1210. font-size: 50rpx;
  1211. }
  1212. }
  1213. .uni-noticebar{
  1214. margin: 0 !important;
  1215. padding: 0 !important;
  1216. }
  1217. }
  1218. .home-disp{
  1219. display: flex;
  1220. justify-content: space-around;
  1221. .bottom-left{
  1222. height: 380rpx;
  1223. background: linear-gradient( 269deg, #54B99C 0%, #7AC481 100%);
  1224. border-radius: 10rpx;
  1225. flex: 1.5;
  1226. margin-right: 20rpx;
  1227. display: flex;
  1228. align-items: center;
  1229. justify-content: center;
  1230. color: #FFFFFF;
  1231. margin-top: 20rpx;
  1232. .bottom-left-box{
  1233. text-align: center;
  1234. .icon{
  1235. font-size: 100rpx;
  1236. position: relative;
  1237. top: -20rpx;
  1238. }
  1239. }
  1240. }
  1241. .mar-t-20{
  1242. margin-top: 20rpx;
  1243. }
  1244. .bottom-right{
  1245. flex: 2;
  1246. .bottom-right-item{
  1247. height: 175rpx;
  1248. background: #FFFFFF;
  1249. border-radius: 10rpx;
  1250. border: 2rpx solid #6FC073;
  1251. margin-bottom: 20rpx;
  1252. display: flex;
  1253. align-items: center;
  1254. justify-content: center;
  1255. position: relative;
  1256. .icon{
  1257. font-size: 50rpx;
  1258. color: #6FC073;
  1259. position: absolute;
  1260. left: 60rpx;
  1261. }
  1262. .name1{
  1263. font-size: 32rpx;
  1264. position: absolute;
  1265. right: 50rpx;
  1266. }
  1267. .name2{
  1268. font-size: 32rpx;
  1269. position: absolute;
  1270. right: 80rpx;
  1271. }
  1272. }
  1273. }
  1274. }
  1275. .bottom-tabs{
  1276. border-top:1px solid rgba(0, 0, 0, 0.33);
  1277. background: #fff;
  1278. position: fixed;
  1279. width: 100%;
  1280. left: var(--window-left);
  1281. right: var(--window-right);
  1282. display: flex;
  1283. bottom: 0;
  1284. .tabs-list{
  1285. height: 90rpx;
  1286. display: flex;
  1287. justify-content: center;
  1288. align-items: center;
  1289. flex-direction: column;
  1290. flex: 1;
  1291. font-size: 0;
  1292. text-align: center;
  1293. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1294. img{
  1295. width: 48rpx;
  1296. height: 48rpx;
  1297. }
  1298. .tabs-title{
  1299. color: rgb(136, 136, 136);
  1300. font-size: 20rpx;
  1301. line-height: normal;
  1302. }
  1303. .active-class{
  1304. color: #49B856;
  1305. }
  1306. }
  1307. }
  1308. }
  1309. .mine{
  1310. height: 100%;
  1311. display: flex;
  1312. flex-direction: column;
  1313. justify-content: space-between;
  1314. .phone-filled{
  1315. margin-right: 5rpx;
  1316. }
  1317. .newicon-xinjian2,
  1318. .newicon-zhishiku{
  1319. margin-right: 10rpx;
  1320. }
  1321. .body{
  1322. width: 714rpx;
  1323. height: 100%;
  1324. margin: 16rpx auto var(--window-bottom) auto;
  1325. box-sizing: border-box;
  1326. border-radius: 8rpx;
  1327. .top{
  1328. padding: 30rpx;
  1329. background-color: #fff;
  1330. .top_name{
  1331. font-size: 28rpx;
  1332. font-weight: bold;
  1333. }
  1334. .top_count{
  1335. margin-top: 45rpx;
  1336. display: flex;
  1337. align-items: center;
  1338. justify-content: space-between;
  1339. .top_count_item{
  1340. text-align: center;
  1341. .name{
  1342. color: #949494;
  1343. font-size: 22rpx;
  1344. }
  1345. .value{
  1346. font-size: 50rpx;
  1347. font-weight: bold;
  1348. margin-top: 15rpx;
  1349. }
  1350. }
  1351. }
  1352. }
  1353. .bottom{
  1354. background-color: #fff;
  1355. margin-top: 15rpx;
  1356. .bottom_name{
  1357. font-size: 26rpx;
  1358. color: $uni-primary;
  1359. padding: 21rpx 24rpx;
  1360. }
  1361. .bottom_list{
  1362. .bottom_list_item{
  1363. border-top: 1rpx solid #DEDEDE;
  1364. padding: 30rpx 30rpx 30rpx 30rpx;
  1365. display: flex;
  1366. justify-content: space-between;
  1367. align-items: center;
  1368. font-size: 24rpx;
  1369. position: relative;
  1370. .value{
  1371. max-width: 380rpx;
  1372. color: #333;
  1373. display: flex;
  1374. align-items: center;
  1375. text-align: justify;
  1376. margin-right: 30rpx;
  1377. }
  1378. .no-mar{
  1379. margin-right:0 !important;
  1380. }
  1381. .icon{
  1382. position: absolute;
  1383. right: 20rpx;
  1384. }
  1385. }
  1386. }
  1387. }
  1388. }
  1389. .fixed-btn{
  1390. position: fixed;
  1391. bottom: 100rpx;
  1392. left: 0;
  1393. }
  1394. }
  1395. </style>