mypage.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  1. <template>
  2. <view class="mypage">
  3. <view class="myTop">
  4. <view class="goWork" @click="GoWork()">
  5. <view class="goWork_btn_E">
  6. <view class="goWork_btn_W" v-show="userData.online"> 下班 </view>
  7. <view class="goWork_btn_X" v-show="!userData.online"> 上班 </view>
  8. </view>
  9. </view>
  10. <view class="topText">
  11. <view class="topTextHeader">
  12. <text>您好,{{ userData.name }}</text>
  13. <button v-show="!userData.online" class="changeHospital" size="mini" type="default"
  14. @click="changeHospital">切换院区</button>
  15. </view>
  16. <view>当前积分 : {{ tabNum.score }}</view>
  17. </view>
  18. </view>
  19. <view class="myCont">
  20. <view class="myCont_cont">
  21. <view class="myCont_cont_tab">
  22. <view style="border-right: 1px solid rgb(229, 233, 237)" @click="tab('day', '今日')"
  23. :class="{ acts: tabType == 'day' }">
  24. 今日 ({{ tabNum.day || 0 }})
  25. </view>
  26. <view style="border-right: 1px solid rgb(229, 233, 237)" @click="tab('week', '本周')"
  27. :class="{ acts: tabType == 'week' }">
  28. 本周 ({{ tabNum.week || 0 }})
  29. </view>
  30. <view @click="tab('month', '本月')" :class="{ acts: tabType == 'month' }">
  31. 本月 ({{ tabNum.month || 0 }})
  32. </view>
  33. </view>
  34. <view class="TB" v-show="tabNums > 0 && !TBLoading">
  35. <view class="TB_inner" style="
  36. display: flex;
  37. align-items: center;
  38. justify-content: space-between;
  39. ">
  40. <view class="tbTitle"> {{ types }}已完成工单{{ tabNums }}单,未评价工单{{tabEvaluate}}单,共计得分{{tabScores}}分 </view>
  41. <view class="tbText" @click="my_list(tabType)"> 查看明细>> </view>
  42. </view>
  43. <view class="canvasRing_wrap">
  44. <canvas ref="canvasRef" canvas-id="canvasRing" id="canvasRing" class="charts"
  45. @touchstart="touchRing"></canvas>
  46. </view>
  47. </view>
  48. <view class="TB1" v-show="tabNums == 0 && !TBLoading">
  49. <view class="title"> {{ types }}已完成工单{{ tabComplete }}单,未评价工单{{tabEvaluate}}单,共计得分{{tabScores}}分 </view>
  50. <view class="cont"> 暂无数据 </view>
  51. </view>
  52. <view class="TB_list" v-show="!TBLoading">
  53. <view v-for="(data, i) of BtData" :key="i">
  54. <view class="TB_list_L">
  55. {{ data.name }}
  56. </view>
  57. <view class="TB_list_R">
  58. {{ data.value }}单
  59. <text :style="{ color: data.itemStyle.color }">{{
  60. data.percent
  61. }}</text>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <!-- 弹窗 -->
  68. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  69. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  70. <!-- 切换院区弹窗 -->
  71. <changeHospital v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  72. @cancel="hosCancel">
  73. </changeHospital>
  74. </view>
  75. </template>
  76. <script>
  77. import showModel from "../../components/showModel/showModel.vue";
  78. import changeHospital from "../../components/changeHospital/changeHospital.vue";
  79. // http://doc.ucharts.cn/1172177
  80. import uCharts from "../../js_sdk/u-charts/u-charts/u-charts.js";
  81. import {
  82. get,
  83. post,
  84. webHandle
  85. } from "../../http/http.js";
  86. export default {
  87. data() {
  88. return {
  89. // 弹窗model
  90. models: {
  91. disjunctor: false,
  92. },
  93. // 切换院区弹窗model
  94. hosModels: {
  95. disjunctor: false,
  96. },
  97. type: '',
  98. tabType: "day",
  99. tabNum: {},
  100. BtData: [],
  101. types: "今日",
  102. tabNums: "", //总数量
  103. tabComplete: "", //已完成工单数量
  104. tabEvaluate: "", //未评价工单数量
  105. tabScores: "", //积分
  106. sxbType: false,
  107. userData: {},
  108. // 图表数据
  109. cWidth: "",
  110. cHeight: "",
  111. pixelRatio: 1,
  112. serverData: "",
  113. canvaRing: null,
  114. TBLoading: false,
  115. };
  116. },
  117. components: {
  118. showModel,
  119. changeHospital,
  120. },
  121. methods: {
  122. // 切换院区-确认
  123. hosOk(hosId) {
  124. this.hosModels.disjunctor = false;
  125. uni.showLoading({
  126. title: '正在加载中',
  127. mask: true
  128. });
  129. let type = '';
  130. // #ifdef APP-PLUS
  131. type = 'APP';
  132. // #endif
  133. // #ifdef H5
  134. type = 'Wechat';
  135. // #endif
  136. post("/auth/changeHospital", {
  137. "currentHosId": hosId,
  138. loginType: type
  139. }).then(result => {
  140. uni.hideLoading()
  141. if (result.status == 200) {
  142. uni.showToast({
  143. icon: 'success',
  144. title: '切换院区成功'
  145. });
  146. let userData = uni.getStorageSync('userData');
  147. console.log(userData)
  148. userData.user.currentHospital = result.user.user.currentHospital;
  149. uni.setStorageSync('userData', userData);
  150. this.tab("day", "今日");
  151. } else {
  152. uni.showToast({
  153. icon: 'none',
  154. title: '切换院区失败'
  155. });
  156. }
  157. })
  158. },
  159. // 切换院区-取消
  160. hosCancel() {
  161. this.hosModels.disjunctor = false;
  162. },
  163. // 切换院区
  164. changeHospital() {
  165. this.hosModels = {
  166. title: '切换院区',
  167. disjunctor: true,
  168. }
  169. },
  170. // 绘图
  171. showRing(canvasId, chartData) {
  172. this.canvaRing = new uCharts({
  173. $this: this,
  174. canvasId: canvasId,
  175. type: "ring",
  176. fontSize: 11,
  177. padding: [5, 5, 5, 5],
  178. legend: {
  179. show: false, //右侧描述
  180. position: "right",
  181. float: "center",
  182. itemGap: 10,
  183. padding: 5,
  184. lineHeight: 26,
  185. margin: 5,
  186. borderWidth: 1,
  187. },
  188. background: "#FFFFFF",
  189. pixelRatio: this.pixelRatio,
  190. series: chartData.series,
  191. animation: true,
  192. width: this.cWidth * this.pixelRatio,
  193. height: this.cHeight * this.pixelRatio,
  194. disablePieStroke: true,
  195. dataLabel: false, //折线描述
  196. subtitle: {
  197. name: "",
  198. color: "#7cb5ec",
  199. fontSize: 25 * this.pixelRatio,
  200. },
  201. title: {
  202. name: "",
  203. color: "#666666",
  204. fontSize: 15 * this.pixelRatio,
  205. },
  206. extra: {
  207. pie: {
  208. offsetAngle: 0,
  209. ringWidth: 28 * this.pixelRatio,
  210. labelWidth: 15,
  211. },
  212. },
  213. });
  214. this.TBLoading = false;
  215. uni.hideLoading();
  216. },
  217. touchRing(e) {
  218. this.canvaRing.touchLegend(e, {
  219. animation: false,
  220. });
  221. this.canvaRing.showToolTip(e, {
  222. format: function(item) {
  223. return item.name + ":" + item.data;
  224. },
  225. });
  226. },
  227. // 查看明细
  228. my_list(type) {
  229. uni.navigateTo({
  230. url: `../my_list/my_list?type=${type}`,
  231. });
  232. },
  233. // 获取启动中的工作分配方案
  234. getWorkSchemeAndRule() {
  235. return post("/auth/getUserWorkDept", {});
  236. },
  237. // 获取执行中列表
  238. getWorkingNum() {
  239. return post("/workerOrder/executingOrders", {
  240. "idx": 0,
  241. "sum": 1
  242. });
  243. },
  244. //上下班弹窗确定
  245. ok() {
  246. this.models.disjunctor = false;
  247. let setDeptConfg = uni.getStorageSync("setDeptConfg");
  248. if (this.type == "on") {
  249. uni.redirectTo({
  250. url: `../homePage/homePage`,
  251. });
  252. } else if (this.type == "off") {
  253. uni.showLoading({
  254. title: "加载中",
  255. mask: true,
  256. });
  257. // 判断当前启用的工作方案是自主还是综合排班
  258. this.getWorkSchemeAndRule().then((ress) => {
  259. if (ress.status == 200) {
  260. let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
  261. let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
  262. // 自主下班,并且是科室绑定人员,科室绑定分组,绑定分组
  263. if (workType == 2 && (ruleType == 2||ruleType == 3||ruleType == 4)) {
  264. post("/auth/onOrOffLine", {
  265. type: "off",
  266. customWorking: "off",
  267. classId:uni.getStorageSync("setDeptConfg").classesId
  268. }).then((res) => {
  269. uni.hideLoading();
  270. if (res.status == 200) {
  271. let obj = uni.getStorageSync("userData");
  272. obj.user.online = false;
  273. if (uni.getStorageSync("setDeptConfg")) {
  274. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  275. }
  276. if (uni.getStorageSync("setDepts")) {
  277. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  278. }
  279. if (uni.getStorageSync("manager")) {
  280. uni.removeStorageSync("manager"); //清空选择的分组组长,初始化
  281. }
  282. uni.setStorageSync("userData", obj);
  283. this.getCurrentUser();
  284. this.getTabData();
  285. } else {
  286. uni.showToast({
  287. icon: "none",
  288. title: "请求失败!",
  289. });
  290. }
  291. });
  292. } else {
  293. post("/auth/onOrOffLine", {
  294. type: "off",
  295. classId:uni.getStorageSync("setDeptConfg").classesId
  296. }).then((res) => {
  297. uni.hideLoading();
  298. if (res.status == 200) {
  299. if (uni.getStorageSync("setDeptConfg")) {
  300. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  301. }
  302. if (uni.getStorageSync("setDepts")) {
  303. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  304. }
  305. if (uni.getStorageSync("manager")) {
  306. uni.removeStorageSync("manager"); //清空选择的分组组长,初始化
  307. }
  308. let obj = uni.getStorageSync("userData");
  309. obj.user.online = false;
  310. uni.setStorageSync("userData", obj);
  311. this.getCurrentUser();
  312. this.getTabData();
  313. } else {
  314. uni.showToast({
  315. icon: "none",
  316. title: "请求失败!",
  317. });
  318. }
  319. });
  320. }
  321. } else {
  322. uni.hideLoading();
  323. uni.showToast({
  324. icon: "none",
  325. title: "请求失败!",
  326. });
  327. }
  328. });
  329. }
  330. },
  331. //上下班弹窗取消
  332. cancel() {
  333. this.models.disjunctor = false;
  334. },
  335. // 上下班
  336. async GoWork() {
  337. let types = "";
  338. let workingNum = 0;
  339. if (this.userData.online) {
  340. //有online为上班 传off
  341. this.type = "off";
  342. uni.showLoading({
  343. title: '加载中',
  344. mask: true
  345. });
  346. let workingNumResult = await this.getWorkingNum();
  347. uni.hideLoading();
  348. if (workingNumResult.status == 200) {
  349. workingNum = workingNumResult.data.data.length;
  350. }
  351. if (workingNum) {
  352. types = "您还<b style='color:red'>有未完成的工单</b>,确定下班后,<b style='color:red'>未完成工单将不计算积分。</b>";
  353. } else {
  354. types = "确定是否下班 ?";
  355. }
  356. } else {
  357. this.type = "on";
  358. types = "确定是否上班 ?";
  359. }
  360. this.models = {
  361. disjunctor: true,
  362. title: this.type == 'off' ? '下班提醒' : "上班提醒",
  363. content: types,
  364. icon: "warn",
  365. operate: {
  366. ok: "确定",
  367. cancel: "取消",
  368. },
  369. };
  370. },
  371. //环形图数据
  372. getBtData() {
  373. get("/api/countOrderTypesByDate/" + this.tabType).then((res) => {
  374. if (res.status == 200) {
  375. this.BtData = [];
  376. let color = [
  377. "#39B199",
  378. "#56BAB6",
  379. "#A4C4C1",
  380. "#48717F",
  381. "#07863C",
  382. "#BEE1A7",
  383. ];
  384. for (var i = 0; i < res.data.length; i++) {
  385. let data = {
  386. value: Number,
  387. name: "",
  388. itemStyle: {
  389. color: "",
  390. },
  391. };
  392. data.value = Number(res.data[i].num);
  393. data.percent = res.data[i].percent;
  394. data.name = res.data[i].name;
  395. data.itemStyle.color = color[i];
  396. this.BtData.push(data);
  397. }
  398. let Ring = {
  399. series: [],
  400. };
  401. let dataRing = res.data.map((item) => {
  402. return {
  403. name: item.name,
  404. data: item.num - 0,
  405. };
  406. });
  407. //这里我后台返回的是数组,所以用等于,如果您后台返回的是单条数据,需要push进去
  408. Ring.series = dataRing;
  409. console.log(this.tabNums);
  410. if (this.tabNums > 0) {
  411. this.showRing("canvasRing", Ring);
  412. } else {
  413. this.TBLoading = false;
  414. uni.hideLoading();
  415. }
  416. } else {
  417. this.TBLoading = false;
  418. uni.hideLoading();
  419. uni.showToast({
  420. icon: "none",
  421. title: "请求失败!",
  422. });
  423. }
  424. });
  425. },
  426. //tab数据
  427. getTabData() {
  428. this.TBLoading = true;
  429. uni.showLoading({
  430. title: "加载中",
  431. mask: true,
  432. });
  433. get("/api/countOrderByDate").then((res) => {
  434. this.tabNum = res;
  435. if (this.tabType == "day") {
  436. this.tabNums = this.tabNum.day;
  437. this.tabComplete = this.tabNum.dayComplete;
  438. this.tabEvaluate = this.tabNum.dayEvaluate;
  439. this.tabScores = this.tabNum.dayTotal;
  440. }
  441. if (this.tabType == "week") {
  442. this.tabNums = this.tabNum.week;
  443. this.tabComplete = this.tabNum.weekComplete;
  444. this.tabEvaluate = this.tabNum.weekEvaluate;
  445. this.tabScores = this.tabNum.weekTotal;
  446. }
  447. if (this.tabType == "month") {
  448. this.tabNums = this.tabNum.month;
  449. this.tabComplete = this.tabNum.monthComplete;
  450. this.tabEvaluate = this.tabNum.monthEvaluate;
  451. this.tabScores = this.tabNum.monthTotal;
  452. }
  453. this.getBtData();
  454. });
  455. },
  456. // 本日,本周,本月
  457. tab(type, types) {
  458. this.types = types;
  459. this.tabType = type;
  460. this.getTabData();
  461. },
  462. // 获取当前用户信息
  463. getCurrentUser() {
  464. if (uni.getStorageSync("userData")) {
  465. this.userData = uni.getStorageSync("userData").user;
  466. } else {
  467. this.userData = {};
  468. }
  469. },
  470. },
  471. onLoad(options) {
  472. this.getCurrentUser();
  473. //#ifdef H5
  474. if (options.login == 1) {
  475. uni.redirectTo({
  476. url: "../homePage/homePage?type=mypage",
  477. });
  478. }
  479. //#endif
  480. if (options.login != 1) {
  481. this.tab("day", "今日");
  482. }
  483. //图表
  484. this.cWidth = uni.upx2px(500);
  485. this.cHeight = uni.upx2px(500);
  486. // #ifdef APP-PLUS
  487. webHandle("no", "app");
  488. // #endif
  489. // #ifdef H5
  490. webHandle("no", "wx");
  491. // #endif
  492. },
  493. };
  494. </script>
  495. <style lang="less">
  496. .mypage {
  497. .charts {
  498. width: 625upx;
  499. height: 500upx;
  500. background-color: #ffffff;
  501. }
  502. .canvasRing_wrap {
  503. background-color: #ffffff;
  504. }
  505. #canvasRing {
  506. left: 50%;
  507. margin-left: -250rpx;
  508. }
  509. .myTop {
  510. height: 390rpx;
  511. background-image: url(../../static/img/BG_xiaban.png);
  512. background-repeat: no-repeat;
  513. background-size: 100% 100%;
  514. .goWork {
  515. margin: 0 auto 20rpx auto;
  516. padding-top: 30rpx;
  517. width: 240rpx;
  518. height: 240rpx;
  519. .goWork_btn_E {
  520. width: 100%;
  521. height: 100%;
  522. background: #bee1a7;
  523. border-radius: 30%;
  524. text-align: center;
  525. .goWork_btn_W {
  526. width: 75%;
  527. height: 75%;
  528. background-image: linear-gradient(to right, #72c172, #3bb197);
  529. border-radius: 30%;
  530. margin: 0 auto;
  531. /*水平居中*/
  532. position: relative;
  533. /*脱离文档流*/
  534. top: 12.5%;
  535. /*偏移*/
  536. line-height: 180rpx;
  537. color: #fff;
  538. font-size: 36rpx;
  539. }
  540. .goWork_btn_X {
  541. width: 75%;
  542. height: 75%;
  543. background-image: linear-gradient(to left, #72c172, #3bb197);
  544. border-radius: 30%;
  545. margin: 0 auto;
  546. /*水平居中*/
  547. position: relative;
  548. /*脱离文档流*/
  549. top: 12.5%;
  550. /*偏移*/
  551. line-height: 180rpx;
  552. color: #fff;
  553. font-size: 36rpx;
  554. }
  555. }
  556. }
  557. .topText {
  558. font-size: 36rpx;
  559. text-align: center;
  560. .topTextHeader {
  561. display: flex;
  562. justify-content: center;
  563. align-items: center;
  564. .changeHospital {
  565. margin-left: 16rpx;
  566. margin-right: 0;
  567. }
  568. }
  569. }
  570. }
  571. .myCont {
  572. .myCont_top {
  573. text-align: left;
  574. line-height: 90rpx;
  575. height: 90rpx;
  576. background: rgb(229, 233, 237);
  577. padding-left: 10rpx;
  578. padding-right: 10rpx;
  579. .myCont_topL {
  580. float: left;
  581. width: 60%;
  582. height: 100%;
  583. overflow: hidden;
  584. text-overflow: ellipsis;
  585. white-space: nowrap;
  586. }
  587. .myCont_topR {
  588. width: 35%;
  589. height: 100%;
  590. float: right;
  591. overflow: hidden;
  592. text-overflow: ellipsis;
  593. white-space: nowrap;
  594. }
  595. }
  596. .myCont_cont {
  597. .myCont_cont_tab {
  598. height: 90rpx;
  599. line-height: 90rpx;
  600. font-size: 32rpx;
  601. border-bottom: 4rpx solid rgb(229, 233, 237);
  602. view {
  603. float: left;
  604. width: 33%;
  605. height: 100%;
  606. text-align: center;
  607. }
  608. }
  609. .TB {
  610. position: relative;
  611. .TB_inner {
  612. display: flex;
  613. justify-content: space-between;
  614. align-items: center;
  615. background-color: #fff;
  616. margin-top: 26rpx;
  617. .tbTitle {
  618. width: 70%;
  619. font-size: 32rpx;
  620. color: rgb(72, 113, 127);
  621. font-weight: 500;
  622. margin-left: 10rpx;
  623. }
  624. .tbText {
  625. font-size: 32rpx;
  626. color: rgb(72, 113, 127);
  627. margin-right: 10rpx;
  628. }
  629. }
  630. }
  631. .TB1 {
  632. height: 200rpx;
  633. .title {
  634. text-align: left;
  635. font-size: 32rpx;
  636. color: rgb(72, 113, 127);
  637. font-weight: 500;
  638. margin-top: 26rpx;
  639. padding-left: 10rpx;
  640. }
  641. .cont {
  642. font-size: 36rpx;
  643. margin-top: 30rpx;
  644. text-align: center;
  645. }
  646. }
  647. .acts {
  648. color: rgb(73, 184, 86);
  649. border-bottom: 2rpx solid rgb(73, 184, 86);
  650. }
  651. .TB_list {
  652. width: 100%;
  653. text-align: left;
  654. view {
  655. height: 84rpx;
  656. line-height: 84rpx;
  657. border-bottom: 2rpx solid rgb(229, 233, 237);
  658. padding: 0 10rpx;
  659. font-size: 32rpx;
  660. .TB_list_L {
  661. float: left;
  662. }
  663. .TB_list_R {
  664. float: right;
  665. text {
  666. font-size: 28rpx;
  667. }
  668. }
  669. }
  670. }
  671. }
  672. }
  673. }
  674. </style>