home.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. <template>
  2. <view class="home">
  3. <view class="home_item" v-if="isDept.valueconfig==1">
  4. <view class="title">科室报修</view>
  5. <view class="content">
  6. <view @click="repairsView(1,'pending,handler,reassign')">
  7. <view class="con-title">处理中</view>
  8. <view class="con-value">{{repairData.deptHandlerCount}}</view>
  9. </view>
  10. <view @click="repairsView(1,'close0')">
  11. <view class="con-title">待评价</view>
  12. <view class="con-value">{{repairData.deptCloseCount}}</view>
  13. </view>
  14. <view>
  15. <view class="con-title">本月维修费用(元)</view>
  16. <view class="con-value-gr">{{repairData.deptCurrentMonthPrice || 0}}</view>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="home_item">
  21. <view class="title">我的报修</view>
  22. <view class="content">
  23. <view @click="repairsView(0,'pending,handler,reassign')">
  24. <view class="con-title">处理中</view>
  25. <view class="con-value">{{repairData.userHandlerCount}}</view>
  26. </view>
  27. <view @click="repairsView(0,'close0')">
  28. <view class="con-title">待评价</view>
  29. <view class="con-value">{{repairData.userCloseCount}}</view>
  30. </view>
  31. </view>
  32. </view>
  33. <!-- <view class="home_item">
  34. <uni-notice-bar show-icon scrollable background-color="#ffffff" color="#000"
  35. :text="noticeData" />
  36. </view> -->
  37. <view class="home_item home-disp">
  38. <view class="bottom-left" @click="addRepairs">
  39. <view class="bottom-left-box">
  40. <text class="newicon newicon-kuaisubaoxiu icon"></text>
  41. <view>快速报修</view>
  42. </view>
  43. </view>
  44. <view class="bottom-right mar-t-20">
  45. <view class="bottom-right-item" v-if="isRepair.valueconfig==1" @click="scanCodes">
  46. <text class="newicon newicon-saoma icon"></text>
  47. <view class="name1">扫资产报修</view>
  48. </view>
  49. <view class="bottom-right-item" @click="repository">
  50. <text class="newicon newicon-zhishiku1 icon"></text>
  51. <view class="name2">知识库</view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. </template>
  57. <script setup>
  58. import { SM } from "@/http/http.js"
  59. import { ref, reactive } from 'vue'
  60. import { onLoad,onShow,onPullDownRefresh } from '@dcloudio/uni-app'
  61. import { api_systemConfiguration, api_repairScanCode, api_getNotice, api_getCount } from "@/http/api.js"
  62. import { useSetTitle } from '@/share/useSetTitle.js'
  63. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  64. import { useSetTabbar } from '@/share/useSetTabbar.js'
  65. useSetTitle();
  66. const { setTabbar } = useSetTabbar();
  67. // 数据
  68. const isDept = ref({})
  69. const isRepair = ref({})
  70. const isPublic = ref({})
  71. const noticeData = ref('')
  72. const repairData = ref({})
  73. const repositorySearchStore = repositoryListSearchStore();
  74. // 知识库
  75. function repository(){
  76. repositorySearchStore.clearRepositoryListSearchData()
  77. uni.navigateTo({
  78. url: `/pages/repository/repository?type=view&entranceType=repairs`
  79. })
  80. }
  81. // 报修列表
  82. function repairsView(type,value){
  83. let data = {
  84. type:type,
  85. value:value
  86. }
  87. uni.setStorageSync('homeRepairList',JSON.stringify(data))
  88. uni.switchTab({
  89. url: `/pages/repair/listHome`
  90. })
  91. }
  92. // 获取公告
  93. function getNotice(){
  94. api_getNotice({
  95. idx: 0,
  96. sum: 3,
  97. type:'wxRepair',
  98. notice: {
  99. status: 1
  100. }
  101. }).then(res=>{
  102. uni.hideLoading();
  103. // getHtml(res.list[0])
  104. })
  105. }
  106. // 获取报修数量
  107. function getCount(){
  108. uni.showLoading({
  109. title: "加载中",
  110. mask: true,
  111. });
  112. api_getCount({}).then(res=>{
  113. uni.hideLoading();
  114. uni.stopPullDownRefresh();
  115. repairData.value = res.data
  116. // getNotice()
  117. })
  118. }
  119. // 快速报修
  120. function addRepairs(){
  121. if(isDept.value.valueconfig==0 && isPublic.value.valueconfig==0){
  122. uni.showToast({
  123. icon: 'none',
  124. title: '请先开启科室报修或公共报修'
  125. });
  126. return
  127. }
  128. uni.setStorageSync('repairsType','home')
  129. uni.navigateTo({
  130. url: '/pages/repair/rapidRep'
  131. })
  132. }
  133. // 扫资产报修
  134. function scanCodes(){
  135. uni.showLoading({
  136. title: "加载中",
  137. mask: true,
  138. });
  139. SM().then((res) => {
  140. api_repairScanCode({
  141. code:res
  142. }).then((res2) => {
  143. uni.hideLoading();
  144. if (res2.state == 200) {
  145. uni.navigateTo({
  146. url: `/pages/repair/rapidRep?property=${res2.data.name}&assetId=${res2.data.id}`
  147. })
  148. } else {
  149. uni.showToast({
  150. icon: 'none',
  151. title: res2.msg || '请求数据失败!'
  152. });
  153. }
  154. });
  155. })
  156. }
  157. // 获取文本内容
  158. function getHtml(data) {
  159. const tempDiv = document.createElement('div');
  160. tempDiv.innerHTML = data.content;
  161. noticeData.value = tempDiv.textContent || tempDiv.innerText || '';
  162. }
  163. // 获取配置项
  164. function getConfig(){
  165. api_systemConfiguration({
  166. idx: 0,
  167. sum: 9999,
  168. }).then(res=>{
  169. let data = res.list
  170. isDept.value = data.find(i=>i.keyconfig=='deptRepair')
  171. isRepair.value = data.find(i=>i.keyconfig=='cmdbRepair')
  172. isPublic.value = data.find(i=>i.keyconfig=='publicRepair')
  173. })
  174. }
  175. onPullDownRefresh(_=>{
  176. getCount();
  177. })
  178. onLoad((option) => {
  179. // 巡检tabbar
  180. for(let i = 0; i<7; i++){
  181. setTabbar(i)
  182. }
  183. getCount()
  184. getConfig()
  185. })
  186. onShow((option) => {
  187. uni.setStorageSync('repairData','')
  188. uni.setStorageSync('rapidRepNext','')
  189. getCount()
  190. })
  191. </script>
  192. <style lang="scss" scoped>
  193. .home{
  194. // height: calc(100vh - 180rpx);
  195. padding: 20rpx;
  196. background: #fff;
  197. .home_item{
  198. padding: 20rpx;
  199. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  200. border-radius: 10rpx;
  201. margin-bottom: 30rpx;
  202. .title{
  203. font-size: 26rpx;
  204. color: $uni-primary;
  205. padding-left: 18rpx;
  206. position: relative;
  207. margin-bottom: 20rpx;
  208. &:before{
  209. content: '';
  210. width: 8rpx;
  211. height: 25rpx;
  212. background-color: $uni-primary;
  213. position: absolute;
  214. left: 0;
  215. top: 50%;
  216. transform: translateY(-50%);
  217. }
  218. }
  219. .content{
  220. display: flex;
  221. align-items: center;
  222. justify-content: space-around;
  223. text-align: center;
  224. .con-title{
  225. color: #949494;
  226. font-size: 24rpx;
  227. margin-bottom: 15rpx;
  228. }
  229. .con-value{
  230. color: #000;
  231. font-size: 50rpx;
  232. }
  233. .con-value-gr{
  234. color: #49B856;
  235. font-size: 50rpx;
  236. }
  237. }
  238. .uni-noticebar{
  239. margin: 0 !important;
  240. padding: 0 !important;
  241. }
  242. }
  243. .home-disp{
  244. display: flex;
  245. justify-content: space-around;
  246. .bottom-left{
  247. height: 380rpx;
  248. background: linear-gradient( 269deg, #54B99C 0%, #7AC481 100%);
  249. border-radius: 10rpx;
  250. flex: 1.5;
  251. margin-right: 20rpx;
  252. display: flex;
  253. align-items: center;
  254. justify-content: center;
  255. color: #FFFFFF;
  256. margin-top: 20rpx;
  257. .bottom-left-box{
  258. text-align: center;
  259. .icon{
  260. font-size: 100rpx;
  261. position: relative;
  262. top: -20rpx;
  263. }
  264. }
  265. }
  266. .mar-t-20{
  267. margin-top: 20rpx;
  268. }
  269. .bottom-right{
  270. flex: 2;
  271. .bottom-right-item{
  272. height: 175rpx;
  273. background: #FFFFFF;
  274. border-radius: 10rpx;
  275. border: 2rpx solid #6FC073;
  276. margin-bottom: 20rpx;
  277. display: flex;
  278. align-items: center;
  279. justify-content: center;
  280. position: relative;
  281. .icon{
  282. font-size: 50rpx;
  283. color: #6FC073;
  284. position: absolute;
  285. left: 60rpx;
  286. }
  287. .name1{
  288. font-size: 32rpx;
  289. position: absolute;
  290. right: 50rpx;
  291. }
  292. .name2{
  293. font-size: 32rpx;
  294. position: absolute;
  295. right: 80rpx;
  296. }
  297. }
  298. }
  299. }
  300. }
  301. </style>