mypage.vue 21 KB

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