my.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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" v-if="bindingPolling" 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 bindingPolling = ref(false)
  79. // 数据
  80. const dataInfo = reactive({
  81. todo: 0,
  82. doing: 0,
  83. owns: 0,
  84. resolve: 0,
  85. })
  86. // 获取列表数量
  87. function getCount(){
  88. uni.showLoading({
  89. title: "加载中",
  90. });
  91. let group = []
  92. if(loginUserStore.loginUser.user && loginUserStore.loginUser.user.group){
  93. group = loginUserStore.loginUser.user.group
  94. }
  95. let postData = {
  96. incidentList: [
  97. {
  98. "queryTask": "todo",
  99. "assignee": loginUserStore.loginUser.user.id,
  100. "candidateGroups": group.map(v => v.id).toString()
  101. },
  102. {
  103. "queryTask": "doing",
  104. "assignee": loginUserStore.loginUser.user.id,
  105. },
  106. {
  107. "queryTask": "owns",
  108. "assignee": loginUserStore.loginUser.user.id,
  109. "candidateGroups": group.map(v => v.id).toString()
  110. },
  111. {
  112. "queryTask": "resolve",
  113. "assignee": loginUserStore.loginUser.user.id,
  114. },
  115. ],
  116. }
  117. api_incident_count(postData).then(res => {
  118. uni.hideLoading();
  119. if(res.state == 200){
  120. dataInfo.todo = res.data.todo;
  121. dataInfo.doing = res.data.doing;
  122. dataInfo.owns = res.data.owns;
  123. dataInfo.resolve = res.data.resolve;
  124. }else{
  125. uni.showToast({
  126. icon: 'none',
  127. title: res.msg || '请求数据失败!'
  128. });
  129. }
  130. })
  131. }
  132. // 巡检点绑定
  133. function addPolling(){
  134. uni.navigateTo({
  135. url: `/pages/setPolling/setPolling`
  136. })
  137. }
  138. // 知识库
  139. function myRepair(){
  140. // repositorySearchStore.clearRepositoryListSearchData()
  141. uni.navigateTo({
  142. url: `/pages/myRepair/myRepair`
  143. })
  144. }
  145. // 新建事件
  146. function toBuildIncident(){
  147. incidentBuildStore.clearIncidentBuildData();
  148. uni.navigateTo({
  149. url: '/pages/buildIncident/buildIncident'
  150. })
  151. }
  152. // 点击数量跳转
  153. function toIncident(queryTask, statusId){
  154. incidentNumStore.setIncidentNumData({
  155. queryTask,
  156. statusId,
  157. })
  158. uni.reLaunch({
  159. url: '/pages/incidentList/incidentList'
  160. })
  161. }
  162. // 初始化
  163. function onLoadFn(){
  164. getCount();
  165. }
  166. onLoad((option) => {
  167. let menu = loginUserStore.loginUser.menu.find(v => v.link === 'wxPperation')
  168. if(menu && menu.childrens && menu.childrens.length>0){
  169. bindingPolling.value = menu.childrens.some(v => v.link === 'bindingPolling')
  170. }
  171. for(let i = 0; i<7; i++){
  172. setTabbar(i)
  173. }
  174. onLoadFn();
  175. })
  176. onTabItemTap(e => {
  177. onLoadFn();
  178. })
  179. </script>
  180. <style lang="scss" scoped>
  181. page{
  182. height: calc(100vh - var(--window-bottom));
  183. background-color: #EBEBEB;
  184. }
  185. .mine{
  186. height: 100%;
  187. display: flex;
  188. flex-direction: column;
  189. justify-content: space-between;
  190. .phone-filled{
  191. margin-right: 5rpx;
  192. }
  193. .newicon-xinjian2,
  194. .newicon-zhishiku{
  195. margin-right: 10rpx;
  196. }
  197. .body{
  198. width: 714rpx;
  199. height: 100%;
  200. margin: 16rpx auto var(--window-bottom) auto;
  201. box-sizing: border-box;
  202. border-radius: 8rpx;
  203. .top{
  204. padding: 30rpx;
  205. background-color: #fff;
  206. .top_name{
  207. font-size: 28rpx;
  208. font-weight: bold;
  209. }
  210. .top_count{
  211. margin-top: 45rpx;
  212. display: flex;
  213. align-items: center;
  214. justify-content: space-between;
  215. .top_count_item{
  216. text-align: center;
  217. .name{
  218. color: #949494;
  219. font-size: 22rpx;
  220. }
  221. .value{
  222. font-size: 50rpx;
  223. font-weight: bold;
  224. margin-top: 15rpx;
  225. }
  226. }
  227. }
  228. }
  229. .bottom{
  230. background-color: #fff;
  231. margin-top: 15rpx;
  232. .bottom_name{
  233. font-size: 26rpx;
  234. color: $uni-primary;
  235. padding: 21rpx 24rpx;
  236. }
  237. .bottom_list{
  238. .bottom_list_item{
  239. border-top: 1rpx solid #DEDEDE;
  240. padding: 30rpx 30rpx 30rpx 47rpx;
  241. display: flex;
  242. justify-content: space-between;
  243. align-items: center;
  244. font-size: 24rpx;
  245. .value{
  246. max-width: 380rpx;
  247. color: #555555;
  248. display: flex;
  249. align-items: center;
  250. text-align: justify;
  251. }
  252. }
  253. }
  254. }
  255. }
  256. .icon-style{
  257. position: relative;
  258. left: -6rpx;
  259. }
  260. .new-btn{
  261. padding: 0 24rpx;
  262. }
  263. }
  264. </style>