home.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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. uni.navigateTo({
  84. url: `/pages/repair/repairsList?type=${type}&value=${value}`
  85. })
  86. }
  87. // 获取公告
  88. function getNotice(){
  89. api_getNotice({
  90. idx: 0,
  91. sum: 3,
  92. type:'wxRepair',
  93. notice: {
  94. status: 1
  95. }
  96. }).then(res=>{
  97. uni.hideLoading();
  98. // getHtml(res.list[0])
  99. })
  100. }
  101. // 获取报修数量
  102. function getCount(){
  103. uni.showLoading({
  104. title: "加载中",
  105. mask: true,
  106. });
  107. api_getCount({}).then(res=>{
  108. uni.hideLoading();
  109. uni.stopPullDownRefresh();
  110. repairData.value = res.data
  111. // getNotice()
  112. })
  113. }
  114. // 快速报修
  115. function addRepairs(){
  116. if(isDept.value.valueconfig==0 && isPublic.value.valueconfig==0){
  117. uni.showToast({
  118. icon: 'none',
  119. title: '请先开启科室报修或公共报修'
  120. });
  121. return
  122. }
  123. uni.setStorageSync('repairsType','home')
  124. uni.navigateTo({
  125. url: '/pages/repair/rapidRep'
  126. })
  127. }
  128. // 扫资产报修
  129. function scanCodes(){
  130. uni.showLoading({
  131. title: "加载中",
  132. mask: true,
  133. });
  134. SM().then((res) => {
  135. api_repairScanCode({
  136. code:res
  137. }).then((res2) => {
  138. uni.hideLoading();
  139. if (res2.state == 200) {
  140. uni.navigateTo({
  141. url: `/pages/repair/rapidRep?property=${res2.data.name}&assetId=${res2.data.id}`
  142. })
  143. } else {
  144. uni.showToast({
  145. icon: 'none',
  146. title: res2.msg || '请求数据失败!'
  147. });
  148. }
  149. });
  150. })
  151. }
  152. // 获取文本内容
  153. function getHtml(data) {
  154. const tempDiv = document.createElement('div');
  155. tempDiv.innerHTML = data.content;
  156. noticeData.value = tempDiv.textContent || tempDiv.innerText || '';
  157. }
  158. // 获取配置项
  159. function getConfig(){
  160. api_systemConfiguration({
  161. idx: 0,
  162. sum: 9999,
  163. }).then(res=>{
  164. let data = res.list
  165. isDept.value = data.find(i=>i.keyconfig=='deptRepair')
  166. isRepair.value = data.find(i=>i.keyconfig=='cmdbRepair')
  167. isPublic.value = data.find(i=>i.keyconfig=='publicRepair')
  168. })
  169. }
  170. onPullDownRefresh(_=>{
  171. getCount();
  172. })
  173. onLoad((option) => {
  174. // 巡检tabbar
  175. for(let i = 0; i<6; i++){
  176. setTabbar(i)
  177. }
  178. getCount()
  179. getConfig()
  180. })
  181. onShow((option) => {
  182. uni.setStorageSync('repairData','')
  183. uni.setStorageSync('rapidRepNext','')
  184. getCount()
  185. })
  186. </script>
  187. <style lang="scss" scoped>
  188. .home{
  189. // height: calc(100vh - 180rpx);
  190. padding: 20rpx;
  191. background: #fff;
  192. .home_item{
  193. padding: 20rpx;
  194. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  195. border-radius: 10rpx;
  196. margin-bottom: 30rpx;
  197. .title{
  198. font-size: 26rpx;
  199. color: $uni-primary;
  200. padding-left: 18rpx;
  201. position: relative;
  202. margin-bottom: 20rpx;
  203. &:before{
  204. content: '';
  205. width: 8rpx;
  206. height: 25rpx;
  207. background-color: $uni-primary;
  208. position: absolute;
  209. left: 0;
  210. top: 50%;
  211. transform: translateY(-50%);
  212. }
  213. }
  214. .content{
  215. display: flex;
  216. align-items: center;
  217. justify-content: space-around;
  218. text-align: center;
  219. .con-title{
  220. color: #949494;
  221. font-size: 24rpx;
  222. margin-bottom: 15rpx;
  223. }
  224. .con-value{
  225. color: #000;
  226. font-size: 50rpx;
  227. }
  228. .con-value-gr{
  229. color: #49B856;
  230. font-size: 50rpx;
  231. }
  232. }
  233. .uni-noticebar{
  234. margin: 0 !important;
  235. padding: 0 !important;
  236. }
  237. }
  238. .home-disp{
  239. display: flex;
  240. justify-content: space-around;
  241. .bottom-left{
  242. height: 380rpx;
  243. background: linear-gradient( 269deg, #54B99C 0%, #7AC481 100%);
  244. border-radius: 10rpx;
  245. flex: 1.5;
  246. margin-right: 20rpx;
  247. display: flex;
  248. align-items: center;
  249. justify-content: center;
  250. color: #FFFFFF;
  251. margin-top: 20rpx;
  252. .bottom-left-box{
  253. text-align: center;
  254. .icon{
  255. font-size: 100rpx;
  256. position: relative;
  257. top: -20rpx;
  258. }
  259. }
  260. }
  261. .mar-t-20{
  262. margin-top: 20rpx;
  263. }
  264. .bottom-right{
  265. flex: 2;
  266. .bottom-right-item{
  267. height: 175rpx;
  268. background: #FFFFFF;
  269. border-radius: 10rpx;
  270. border: 2rpx solid #6FC073;
  271. margin-bottom: 20rpx;
  272. display: flex;
  273. align-items: center;
  274. justify-content: center;
  275. position: relative;
  276. .icon{
  277. font-size: 50rpx;
  278. color: #6FC073;
  279. position: absolute;
  280. left: 60rpx;
  281. }
  282. .name1{
  283. font-size: 32rpx;
  284. position: absolute;
  285. right: 50rpx;
  286. }
  287. .name2{
  288. font-size: 32rpx;
  289. position: absolute;
  290. right: 80rpx;
  291. }
  292. }
  293. }
  294. }
  295. }
  296. </style>