home.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <view class="home">
  3. <view class="home_item" v-if="isDept.valueconfig==1" @click="repairsView(1)">
  4. <view class="title">科室报修</view>
  5. <view class="content">
  6. <view>
  7. <view class="con-title">处理中</view>
  8. <view class="con-value">{{repairData.deptHandlerCount}}</view>
  9. </view>
  10. <view>
  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" @click="repairsView(0)">
  21. <view class="title">我的报修</view>
  22. <view class="content">
  23. <view>
  24. <view class="con-title">处理中</view>
  25. <view class="con-value">{{repairData.userCloseCount}}</view>
  26. </view>
  27. <view>
  28. <view class="con-title">待评价</view>
  29. <view class="con-value">{{repairData.userHandlerCount}}</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_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 noticeData = ref('')
  71. const repairData = ref({})
  72. const repositorySearchStore = repositoryListSearchStore();
  73. // 知识库
  74. function repository(){
  75. repositorySearchStore.clearRepositoryListSearchData()
  76. uni.navigateTo({
  77. url: `/pages/repository/repository?type=view`
  78. })
  79. }
  80. // 报修列表
  81. function repairsView(type){
  82. uni.navigateTo({
  83. url: '/pages/repair/repairsList?type='+type
  84. })
  85. }
  86. // 获取公告
  87. function getNotice(){
  88. api_getNotice({
  89. idx: 0,
  90. sum: 3,
  91. type:'wxRepair',
  92. notice: {
  93. status: 1
  94. }
  95. }).then(res=>{
  96. uni.hideLoading();
  97. getHtml(res.list[0])
  98. })
  99. }
  100. // 获取报修数量
  101. function getCount(){
  102. uni.showLoading({
  103. title: "加载中",
  104. mask: true,
  105. });
  106. api_getCount({}).then(res=>{
  107. repairData.value = res.data
  108. getNotice()
  109. })
  110. }
  111. // 快速报修
  112. function addRepairs(){
  113. if(isDept.value.valueconfig==0 && isRepair.value.valueconfig==0){
  114. uni.showToast({
  115. icon: 'none',
  116. title: '请先开启科室报修或公共报修'
  117. });
  118. return
  119. }
  120. uni.navigateTo({
  121. url: '/pages/repair/rapidRep'
  122. })
  123. }
  124. // 扫资产报修
  125. function scanCodes(){
  126. uni.showToast({
  127. icon: 'none',
  128. title: '暂未开通'
  129. });
  130. return;
  131. SM().then((res) => {
  132. let postData = {
  133. code: ress1,
  134. account: loginUserStore.loginUser.user.account,
  135. };
  136. })
  137. }
  138. // 获取文本内容
  139. function getHtml(data) {
  140. const tempDiv = document.createElement('div');
  141. tempDiv.innerHTML = data.content;
  142. noticeData.value = tempDiv.textContent || tempDiv.innerText || '';
  143. }
  144. onLoad((option) => {
  145. // 巡检tabbar
  146. for(let i = 0; i<5; i++){
  147. setTabbar(i)
  148. }
  149. })
  150. onShow((option) => {
  151. getCount()
  152. let data = JSON.parse(uni.getStorageSync('sysData'))
  153. isDept.value = data.find(i=>i.keyconfig=='deptRepair')
  154. isRepair.value = data.find(i=>i.keyconfig=='cmdbRepair')
  155. })
  156. </script>
  157. <style lang="scss" scoped>
  158. .home{
  159. height: 100vh;
  160. padding: 20rpx;
  161. background: #fff;
  162. .home_item{
  163. padding: 20rpx;
  164. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  165. border-radius: 10rpx;
  166. margin-bottom: 30rpx;
  167. .title{
  168. font-size: 26rpx;
  169. color: $uni-primary;
  170. padding-left: 18rpx;
  171. position: relative;
  172. margin-bottom: 20rpx;
  173. &:before{
  174. content: '';
  175. width: 8rpx;
  176. height: 25rpx;
  177. background-color: $uni-primary;
  178. position: absolute;
  179. left: 0;
  180. top: 50%;
  181. transform: translateY(-50%);
  182. }
  183. }
  184. .content{
  185. display: flex;
  186. align-items: center;
  187. justify-content: space-around;
  188. text-align: center;
  189. .con-title{
  190. color: #949494;
  191. font-size: 24rpx;
  192. margin-bottom: 15rpx;
  193. }
  194. .con-value{
  195. color: #000;
  196. font-size: 50rpx;
  197. }
  198. .con-value-gr{
  199. color: #49B856;
  200. font-size: 50rpx;
  201. }
  202. }
  203. .uni-noticebar{
  204. margin: 0 !important;
  205. padding: 0 !important;
  206. }
  207. }
  208. .home-disp{
  209. display: flex;
  210. justify-content: space-around;
  211. .bottom-left{
  212. height: 380rpx;
  213. background: linear-gradient( 269deg, #54B99C 0%, #7AC481 100%);
  214. border-radius: 10rpx;
  215. flex: 1.5;
  216. margin-right: 20rpx;
  217. display: flex;
  218. align-items: center;
  219. justify-content: center;
  220. color: #FFFFFF;
  221. margin-top: 20rpx;
  222. .bottom-left-box{
  223. text-align: center;
  224. .icon{
  225. font-size: 100rpx;
  226. position: relative;
  227. top: -20rpx;
  228. }
  229. }
  230. }
  231. .mar-t-20{
  232. margin-top: 20rpx;
  233. }
  234. .bottom-right{
  235. flex: 2;
  236. .bottom-right-item{
  237. height: 175rpx;
  238. background: #FFFFFF;
  239. border-radius: 10rpx;
  240. border: 2rpx solid #6FC073;
  241. margin-bottom: 20rpx;
  242. display: flex;
  243. align-items: center;
  244. justify-content: center;
  245. position: relative;
  246. .icon{
  247. font-size: 50rpx;
  248. color: #6FC073;
  249. position: absolute;
  250. left: 60rpx;
  251. }
  252. .name1{
  253. font-size: 32rpx;
  254. position: absolute;
  255. right: 50rpx;
  256. }
  257. .name2{
  258. font-size: 32rpx;
  259. position: absolute;
  260. right: 80rpx;
  261. }
  262. }
  263. }
  264. }
  265. }
  266. </style>