my.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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="foot_common_btns">
  48. <button @click="repository" type="default" class="primaryButton btn"><text class="newicon newicon-zhishiku"></text>知识库</button>
  49. <button @click="toBuildIncident" type="default" class="primaryButton btn"><text class="newicon newicon-xinjian2"></text>新建事件</button>
  50. </view>
  51. </view>
  52. </template>
  53. <script setup>
  54. import { ref, reactive } from 'vue'
  55. import { onLoad, onTabItemTap } from '@dcloudio/uni-app'
  56. import { api_incident_count } from "@/http/api.js"
  57. import { defaultColor } from '@/static/js/theme.js'
  58. import { useSetTitle } from '@/share/useSetTitle.js'
  59. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  60. import { useLoginUserStore } from '@/stores/loginUser'
  61. import { useIncidentNumStore } from '@/stores/incidentNum'
  62. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  63. import { useSetTabbar } from '@/share/useSetTabbar.js'
  64. useSetTitle();
  65. const loginUserStore = useLoginUserStore();
  66. const incidentNumStore = useIncidentNumStore();
  67. const { makePhoneCall } = useMakePhoneCall();
  68. const repositorySearchStore = repositoryListSearchStore();
  69. const { setTabbar } = useSetTabbar();
  70. // 主题颜色
  71. const primaryColor = ref(defaultColor)
  72. // 数据
  73. const dataInfo = reactive({
  74. todo: 0,
  75. doing: 0,
  76. owns: 0,
  77. resolve: 0,
  78. })
  79. // 获取列表数量
  80. function getCount(){
  81. uni.showLoading({
  82. title: "加载中",
  83. });
  84. let group = []
  85. if(loginUserStore.loginUser.user && loginUserStore.loginUser.user.group){
  86. group = loginUserStore.loginUser.user.group
  87. }
  88. let postData = {
  89. incidentList: [
  90. {
  91. "queryTask": "todo",
  92. "assignee": loginUserStore.loginUser.user.id,
  93. "candidateGroups": group.map(v => v.id).toString()
  94. },
  95. {
  96. "queryTask": "doing",
  97. "assignee": loginUserStore.loginUser.user.id,
  98. },
  99. {
  100. "queryTask": "owns",
  101. "assignee": loginUserStore.loginUser.user.id,
  102. "candidateGroups": group.map(v => v.id).toString()
  103. },
  104. {
  105. "queryTask": "resolve",
  106. "assignee": loginUserStore.loginUser.user.id,
  107. },
  108. ],
  109. }
  110. api_incident_count(postData).then(res => {
  111. uni.hideLoading();
  112. if(res.state == 200){
  113. dataInfo.todo = res.data.todo;
  114. dataInfo.doing = res.data.doing;
  115. dataInfo.owns = res.data.owns;
  116. dataInfo.resolve = res.data.resolve;
  117. }else{
  118. uni.showToast({
  119. icon: 'none',
  120. title: res.msg || '请求数据失败!'
  121. });
  122. }
  123. })
  124. }
  125. // 知识库
  126. function repository(){
  127. repositorySearchStore.clearRepositoryListSearchData()
  128. uni.navigateTo({
  129. url: `/pages/repository/repository?type=view`
  130. })
  131. }
  132. // 新建事件
  133. function toBuildIncident(){
  134. uni.navigateTo({
  135. url: '/pages/buildIncident/buildIncident'
  136. })
  137. }
  138. // 点击数量跳转
  139. function toIncident(queryTask, statusId){
  140. incidentNumStore.setIncidentNumData({
  141. queryTask,
  142. statusId,
  143. })
  144. uni.reLaunch({
  145. url: '/pages/incidentList/incidentList'
  146. })
  147. }
  148. // 初始化
  149. function onLoadFn(){
  150. getCount();
  151. }
  152. onLoad((option) => {
  153. for(let i = 0; i<5; i++){
  154. setTabbar(i)
  155. }
  156. onLoadFn();
  157. })
  158. onTabItemTap(e => {
  159. onLoadFn();
  160. })
  161. </script>
  162. <style lang="scss" scoped>
  163. page{
  164. height: calc(100vh - var(--window-bottom));
  165. background-color: #EBEBEB;
  166. }
  167. .mine{
  168. height: 100%;
  169. display: flex;
  170. flex-direction: column;
  171. justify-content: space-between;
  172. .phone-filled{
  173. margin-right: 5rpx;
  174. }
  175. .newicon-xinjian2,
  176. .newicon-zhishiku{
  177. margin-right: 10rpx;
  178. }
  179. .body{
  180. width: 714rpx;
  181. height: 100%;
  182. margin: 16rpx auto var(--window-bottom) auto;
  183. box-sizing: border-box;
  184. border-radius: 8rpx;
  185. .top{
  186. padding: 30rpx;
  187. background-color: #fff;
  188. .top_name{
  189. font-size: 28rpx;
  190. font-weight: bold;
  191. }
  192. .top_count{
  193. margin-top: 45rpx;
  194. display: flex;
  195. align-items: center;
  196. justify-content: space-between;
  197. .top_count_item{
  198. text-align: center;
  199. .name{
  200. color: #949494;
  201. font-size: 22rpx;
  202. }
  203. .value{
  204. font-size: 50rpx;
  205. font-weight: bold;
  206. margin-top: 15rpx;
  207. }
  208. }
  209. }
  210. }
  211. .bottom{
  212. background-color: #fff;
  213. margin-top: 15rpx;
  214. .bottom_name{
  215. font-size: 26rpx;
  216. color: $uni-primary;
  217. padding: 21rpx 24rpx;
  218. }
  219. .bottom_list{
  220. .bottom_list_item{
  221. border-top: 1rpx solid #DEDEDE;
  222. padding: 30rpx 30rpx 30rpx 47rpx;
  223. display: flex;
  224. justify-content: space-between;
  225. align-items: center;
  226. font-size: 24rpx;
  227. .value{
  228. max-width: 380rpx;
  229. color: #555555;
  230. display: flex;
  231. align-items: center;
  232. text-align: justify;
  233. }
  234. }
  235. }
  236. }
  237. }
  238. }
  239. </style>