home.vue 6.9 KB

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