my.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <view class="mine">
  3. <scroll-view scroll-y class="body">
  4. <view class="top">
  5. <view class="top_name">Hi,{{loginUserStore.loginUser.user.name}}</view>
  6. <view class="top_count">
  7. <view class="top_count_item" @click="toIncident('todoingAll', 20407)">
  8. <view class="name">待接单</view>
  9. <view class="value">{{dataInfo.todo}}</view>
  10. </view>
  11. <view class="top_count_item" @click="toIncident('todoingAll', 20408)">
  12. <view class="name">处理中</view>
  13. <view class="value">{{dataInfo.doing}}</view>
  14. </view>
  15. <view class="top_count_item" @click="toIncident('owns', 0)">
  16. <view class="name">与我关联</view>
  17. <view class="value">{{dataInfo.owns}}</view>
  18. </view>
  19. <view class="top_count_item" @click="toIncident('resolve', 0)">
  20. <view class="name">由我解决</view>
  21. <view class="value">{{dataInfo.resolve}}</view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="bottom">
  26. <view class="bottom_name">个人信息</view>
  27. <view class="bottom_list">
  28. <view class="bottom_list_item">
  29. <view class="name">工号</view>
  30. <view class="value">{{loginUserStore.loginUser.user.account}}</view>
  31. </view>
  32. <view class="bottom_list_item">
  33. <view class="name">手机号</view>
  34. <view class="value" @click="makePhoneCall(loginUserStore.loginUser.user.phone)"><uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons>{{loginUserStore.loginUser.user.phone}}</view>
  35. </view>
  36. <view class="bottom_list_item">
  37. <view class="name">部门</view>
  38. <view class="value">{{loginUserStore.loginUser.user.duty ? loginUserStore.loginUser.user.duty.dept : '无'}}</view>
  39. </view>
  40. <view class="bottom_list_item">
  41. <view class="name">工作组</view>
  42. <view class="value">{{(loginUserStore.loginUser.user.group && loginUserStore.loginUser.user.group.length) ? loginUserStore.loginUser.user.group.map(v => v.groupName).join('/') : '无'}}</view>
  43. </view>
  44. </view>
  45. </view>
  46. </scroll-view>
  47. <view class="new-btn">
  48. <button @click="addPolling" type="default" class="primaryButton"><text class="icon-style newicon newicon-bangding"></text>巡检点绑定</button>
  49. </view>
  50. <view class="foot_common_btns">
  51. <button @click="myRepair" type="default" class="primaryButton btn"><text class="icon-style newicon newicon-ziyuan-baoxiu1"></text>我的报修</button>
  52. <button @click="toBuildIncident" type="default" class="primaryButton btn"><text class="newicon newicon-xinjian2"></text>新建事件</button>
  53. </view>
  54. </view>
  55. </template>
  56. <script setup>
  57. import { ref, reactive } from 'vue'
  58. import { onLoad, onTabItemTap } from '@dcloudio/uni-app'
  59. import { api_incident_count } from "@/http/api.js"
  60. import { defaultColor } from '@/static/js/theme.js'
  61. import { useSetTitle } from '@/share/useSetTitle.js'
  62. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  63. import { useLoginUserStore } from '@/stores/loginUser'
  64. import { useIncidentNumStore } from '@/stores/incidentNum'
  65. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  66. import { useSetTabbar } from '@/share/useSetTabbar.js'
  67. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  68. useSetTitle();
  69. const loginUserStore = useLoginUserStore();
  70. const incidentNumStore = useIncidentNumStore();
  71. const incidentBuildStore = useIncidentBuildStore();
  72. const { makePhoneCall } = useMakePhoneCall();
  73. const repositorySearchStore = repositoryListSearchStore();
  74. const { setTabbar } = useSetTabbar();
  75. // 主题颜色
  76. const primaryColor = ref(defaultColor)
  77. // 数据
  78. const dataInfo = reactive({
  79. todo: 0,
  80. doing: 0,
  81. owns: 0,
  82. resolve: 0,
  83. })
  84. // 获取列表数量
  85. function getCount(){
  86. uni.showLoading({
  87. title: "加载中",
  88. });
  89. let group = []
  90. if(loginUserStore.loginUser.user && loginUserStore.loginUser.user.group){
  91. group = loginUserStore.loginUser.user.group
  92. }
  93. let postData = {
  94. incidentList: [
  95. {
  96. "queryTask": "todo",
  97. "assignee": loginUserStore.loginUser.user.id,
  98. "candidateGroups": group.map(v => v.id).toString()
  99. },
  100. {
  101. "queryTask": "doing",
  102. "assignee": loginUserStore.loginUser.user.id,
  103. },
  104. {
  105. "queryTask": "owns",
  106. "assignee": loginUserStore.loginUser.user.id,
  107. "candidateGroups": group.map(v => v.id).toString()
  108. },
  109. {
  110. "queryTask": "resolve",
  111. "assignee": loginUserStore.loginUser.user.id,
  112. },
  113. ],
  114. }
  115. api_incident_count(postData).then(res => {
  116. uni.hideLoading();
  117. if(res.state == 200){
  118. dataInfo.todo = res.data.todo;
  119. dataInfo.doing = res.data.doing;
  120. dataInfo.owns = res.data.owns;
  121. dataInfo.resolve = res.data.resolve;
  122. }else{
  123. uni.showToast({
  124. icon: 'none',
  125. title: res.msg || '请求数据失败!'
  126. });
  127. }
  128. })
  129. }
  130. // 巡检点绑定
  131. function addPolling(){
  132. uni.navigateTo({
  133. url: `/pages/setPolling/setPolling`
  134. })
  135. }
  136. // 知识库
  137. function myRepair(){
  138. // repositorySearchStore.clearRepositoryListSearchData()
  139. uni.navigateTo({
  140. url: `/pages/myRepair/myRepair`
  141. })
  142. }
  143. // 新建事件
  144. function toBuildIncident(){
  145. incidentBuildStore.clearIncidentBuildData();
  146. uni.navigateTo({
  147. url: '/pages/buildIncident/buildIncident'
  148. })
  149. }
  150. // 点击数量跳转
  151. function toIncident(queryTask, statusId){
  152. incidentNumStore.setIncidentNumData({
  153. queryTask,
  154. statusId,
  155. })
  156. uni.reLaunch({
  157. url: '/pages/incidentList/incidentList'
  158. })
  159. }
  160. // 初始化
  161. function onLoadFn(){
  162. getCount();
  163. }
  164. onLoad((option) => {
  165. for(let i = 0; i<7; i++){
  166. setTabbar(i)
  167. }
  168. onLoadFn();
  169. })
  170. onTabItemTap(e => {
  171. onLoadFn();
  172. })
  173. </script>
  174. <style lang="scss" scoped>
  175. page{
  176. height: calc(100vh - var(--window-bottom));
  177. background-color: #EBEBEB;
  178. }
  179. .mine{
  180. height: 100%;
  181. display: flex;
  182. flex-direction: column;
  183. justify-content: space-between;
  184. .phone-filled{
  185. margin-right: 5rpx;
  186. }
  187. .newicon-xinjian2,
  188. .newicon-zhishiku{
  189. margin-right: 10rpx;
  190. }
  191. .body{
  192. width: 714rpx;
  193. height: 100%;
  194. margin: 16rpx auto var(--window-bottom) auto;
  195. box-sizing: border-box;
  196. border-radius: 8rpx;
  197. .top{
  198. padding: 30rpx;
  199. background-color: #fff;
  200. .top_name{
  201. font-size: 28rpx;
  202. font-weight: bold;
  203. }
  204. .top_count{
  205. margin-top: 45rpx;
  206. display: flex;
  207. align-items: center;
  208. justify-content: space-between;
  209. .top_count_item{
  210. text-align: center;
  211. .name{
  212. color: #949494;
  213. font-size: 22rpx;
  214. }
  215. .value{
  216. font-size: 50rpx;
  217. font-weight: bold;
  218. margin-top: 15rpx;
  219. }
  220. }
  221. }
  222. }
  223. .bottom{
  224. background-color: #fff;
  225. margin-top: 15rpx;
  226. .bottom_name{
  227. font-size: 26rpx;
  228. color: $uni-primary;
  229. padding: 21rpx 24rpx;
  230. }
  231. .bottom_list{
  232. .bottom_list_item{
  233. border-top: 1rpx solid #DEDEDE;
  234. padding: 30rpx 30rpx 30rpx 47rpx;
  235. display: flex;
  236. justify-content: space-between;
  237. align-items: center;
  238. font-size: 24rpx;
  239. .value{
  240. max-width: 380rpx;
  241. color: #555555;
  242. display: flex;
  243. align-items: center;
  244. text-align: justify;
  245. }
  246. }
  247. }
  248. }
  249. }
  250. .icon-style{
  251. position: relative;
  252. left: -6rpx;
  253. }
  254. .new-btn{
  255. padding: 0 24rpx;
  256. }
  257. }
  258. </style>