homePage.vue 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033
  1. <template>
  2. <view class="HomeItem">
  3. <view v-if="!online && online !== undefined && workSchemeType == 1">
  4. <view class="goWork" @click="GoWork()">
  5. <view class="goWork_btn_E">
  6. <view class="goWork_btn_W"> 上班 </view>
  7. </view>
  8. </view>
  9. <view class="goWork_text">
  10. <view class="goWork_text-p">上班提醒</view>
  11. <view>请点击" 上班 "开始抢单!</view>
  12. </view>
  13. </view>
  14. <view v-if="!online && online !== undefined && workSchemeType == 2" class="goWorkAll">
  15. <view class="goWorkSelect combination">
  16. <view class="goWorkSelect-head">上班选择工作组合</view>
  17. <scroll-view class="goWorkSelect-list scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
  18. :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
  19. @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort" @scroll="scroll">
  20. <radio-group @change="radioChange1">
  21. <label class="goWorkSelect-item" v-for="item in zxzData" :key="item.str">
  22. <radio :value="item.str" :checked="item.checked" />
  23. <view>{{ item.configName }}</view>
  24. </label>
  25. </radio-group>
  26. </scroll-view>
  27. </view>
  28. <view class="goWorkSelect history">
  29. <view class="goWorkSelect-head"> 历史上班记录 </view>
  30. <view class="goWorkSelect-list">
  31. <radio-group @change="radioChange2">
  32. <label class="goWorkSelect-item" v-for="(item, index) in historys" :key="index">
  33. <radio :value="item.str" :checked="item.checked" />
  34. <view>{{ item.useTime }}上班记录快捷上班</view>
  35. <button @click="lock(item)">
  36. {{ item.locking == 1 ? "解锁" : "锁定" }}
  37. </button>
  38. </label>
  39. </radio-group>
  40. </view>
  41. </view>
  42. </view>
  43. <!-- APP或H5账号密码登录页面 start -->
  44. <view class="login" v-if="!workSchemeType && (isApp||isH5AndPwd)">
  45. <view class="title"> 转运系统登录 </view>
  46. <input class="login_input" v-model="username" placeholder="请输入用户名" />
  47. <input class="login_input" password v-model="password" placeholder="请输入密码" />
  48. <input class="login_input" v-show="!isH5AndPwd" v-model="ip" placeholder="请输入域名或IP地址,如:http(s)://192.168.3.108" />
  49. <view class="page_item_btn" @click="login()"> 登录 </view>
  50. </view>
  51. <!-- APP或H5账号密码登录页面 end -->
  52. <view class="botImg" v-if="online || (!online && online !== undefined && workSchemeType == 1)">
  53. <view class="img"></view>
  54. </view>
  55. <!-- 弹窗 -->
  56. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  57. @ok="ok" @cancel="cancel" :operate="models.operate" :phone="models.phone" @know="know"></showModel>
  58. <!-- 锁定-弹窗 -->
  59. <showModel :title="modelsLock.title" :icon="modelsLock.icon" :disjunctor="modelsLock.disjunctor"
  60. :content="modelsLock.content" @ok="okLock" @cancel="cancelLock" :operate="modelsLock.operate" @know="knowLock">
  61. </showModel>
  62. </view>
  63. </template>
  64. <script>
  65. import {
  66. get,
  67. post,
  68. changeIP,
  69. webHandle
  70. } from "../../http/http.js";
  71. import showModel from "../../components/showModel/showModel.vue";
  72. export default {
  73. data() {
  74. return {
  75. //#ifdef H5
  76. type: "",
  77. //#endif
  78. // 是否上班了
  79. online: undefined,
  80. // 是否是app
  81. isApp: false,
  82. // 是否是H5,账号密码登录
  83. isH5AndPwd: false,
  84. // 用户名
  85. username: "",
  86. // 密码
  87. password: "",
  88. //ip地址或域名
  89. ip: "hsms.dashitech.com",
  90. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  91. triggered: false, //下拉刷新状态
  92. freshing: false, //上拉加载开关
  93. scroll_top: 0, //距离顶部的距离
  94. //分页页码
  95. idx: 0,
  96. // 列表项总数
  97. totalNum: -1,
  98. // 上班选择工作组合列表
  99. zxzData: [],
  100. workSchemeId: "", //启动中工作分配方案id
  101. workSchemeType: "", //启动中工作分配方案类型
  102. ruleType: "", //工作分配方案规则、、例如自由抢单等
  103. // 上班历史记录列表
  104. historys: [],
  105. // 弹窗model
  106. models: {
  107. disjunctor: false,
  108. },
  109. //锁定的选项
  110. itemLock: {},
  111. // 弹窗model--锁定
  112. modelsLock: {
  113. disjunctor: false,
  114. },
  115. };
  116. },
  117. methods: {
  118. // 锁定
  119. lock(data) {
  120. console.log(data);
  121. this.itemLock = data;
  122. this.modelsLock = {
  123. disjunctor: true,
  124. title: "提示",
  125. content: `是否${
  126. this.itemLock.locking == 1 ? "解锁" : "锁定"
  127. }该上班记录`,
  128. icon: "warn",
  129. operate: {
  130. ok: "确定",
  131. cancel: "取消",
  132. },
  133. };
  134. },
  135. //知道了
  136. knowLock() {
  137. this.modelsLock.disjunctor = false;
  138. let userId = uni.getStorageSync("userData").user.id;
  139. this.getHistorys(userId); //获取上班历史记录
  140. },
  141. //确定
  142. okLock() {
  143. this.modelsLock.disjunctor = false;
  144. let postData = {
  145. workConfigHistory: {
  146. id: this.itemLock.id,
  147. locking: this.itemLock.locking == 1 ? 0 : 1,
  148. },
  149. };
  150. uni.showLoading({
  151. title: "加载中",
  152. mask: true,
  153. });
  154. post("/configuration/updData/workConfigHistory", postData).then(
  155. (result) => {
  156. uni.hideLoading();
  157. if (result.status == 200) {
  158. this.modelsLock = {
  159. disjunctor: true,
  160. title: "提示",
  161. content: `${this.itemLock.locking == 0 ? "锁定" : "解锁"}成功`,
  162. icon: "success",
  163. operate: {
  164. know: "知道了",
  165. },
  166. };
  167. } else {
  168. uni.showToast({
  169. icon: "none",
  170. title: "请求失败",
  171. });
  172. }
  173. }
  174. );
  175. },
  176. //取消
  177. cancelLock() {
  178. this.modelsLock.disjunctor = false;
  179. },
  180. // 选择历史上班记录
  181. radioChange2(value) {
  182. this.objHistory = JSON.parse(value.target.value);
  183. let depts = this.objHistory.deptList.map((item) => item.dept).join();
  184. this.models = {
  185. disjunctor: true,
  186. title: "提示",
  187. content: `组合名称是【${this.objHistory.workAllocationQuick.configName}】;选择的科室是【${depts}】`,
  188. icon: "warn",
  189. operate: {
  190. ok: "快捷上班",
  191. cancel: "取消",
  192. },
  193. };
  194. },
  195. //知道了
  196. know() {
  197. this.models.disjunctor = false;
  198. },
  199. //确定
  200. ok() {
  201. this.models.disjunctor = false;
  202. this.ruleType = 3;
  203. uni.setStorageSync("setDepts", this.objHistory.deptList); //存科室列表
  204. uni.setStorageSync("setDeptConfg", {
  205. //存设置科室的配置信息
  206. configName: this.objHistory.workAllocationQuick.configName, //组合名称
  207. workSchemeType: 2, //方案类型
  208. ruleType: 3, //方案规则,科室绑定人员
  209. id: this.objHistory.workAllocationQuick.id, //组合id
  210. classesId: this.objHistory.classId,
  211. });
  212. this.GoWork();
  213. },
  214. //取消
  215. cancel() {
  216. this.models.disjunctor = false;
  217. let userId = uni.getStorageSync("userData").user.id;
  218. this.historys = [];
  219. this.getHistorys(userId); //获取上班历史记录
  220. },
  221. // 获取上班历史记录
  222. getHistorys(id) {
  223. let postData = {
  224. idx: 0,
  225. sum: 3,
  226. workConfigHistory: {
  227. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  228. user: {
  229. id: id,
  230. },
  231. },
  232. };
  233. post("/configuration/fetchDataList/workConfigHistory", postData).then(
  234. (res) => {
  235. if (res.status == 200) {
  236. this.historys = res.list;
  237. this.historys.forEach((item) => {
  238. let d = new Date(item.useTime);
  239. let month = (d.getMonth() + 1 + "").padStart(2, "0");
  240. let day = (d.getDate() + "").padStart(2, "0");
  241. item.useTime = `${month}月${day}日`;
  242. let o = JSON.parse(JSON.stringify(item));
  243. item.str = JSON.stringify(o);
  244. item.checked = false;
  245. });
  246. } else {
  247. uni.showToast({
  248. icon: "none",
  249. title: "请求失败",
  250. });
  251. }
  252. }
  253. );
  254. },
  255. // 选择上班快捷组合
  256. radioChange1(value) {
  257. let obj = JSON.parse(value.target.value);
  258. console.log(obj);
  259. this.ruleType = obj.ruleType;
  260. if (obj.ruleType == 1) {
  261. //自由抢单,直接上班
  262. if (uni.getStorageSync("setDeptConfg")) {
  263. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  264. }
  265. this.GoWork();
  266. } else if (obj.ruleType == 3) {
  267. //科室绑定人员,进入设置科室界面
  268. uni.setStorageSync("setDeptConfg", {
  269. //存设置科室的配置信息
  270. configName: obj.configName,
  271. workSchemeType: this.workSchemeType,
  272. ruleType: obj.ruleType,
  273. id: obj.id,
  274. classesId: obj.classes.id,
  275. });
  276. uni.navigateTo({
  277. url: `../setDept/setDept?configName=${obj.configName}&id=${obj.id}`,
  278. });
  279. }
  280. },
  281. // 连接上下班的websocket baba type如果是wx则是微信,app则是app;有app必有ip
  282. offWork(type, ip) {
  283. let ipp, wws;
  284. if (type == "wx") {
  285. wws = document.location.protocol === "http:" ? "ws" : "wss"; //ws协议
  286. ipp = document.domain;
  287. } else if (type == "app") {
  288. wws = ip.split(":")[0] === "http" ? "ws" : "wss"; //ws协议
  289. ipp = ip.split(":")[1];
  290. }
  291. console.log(ipp, wws);
  292. uni.connectSocket({
  293. url: `${wws}://${ipp}:8080/webSocket/message/onlineStatus`,
  294. // url: `${wws}://192.168.3.74:8080/webSocket/message/onlineStatus`,
  295. });
  296. uni.onSocketOpen(function(res) {
  297. console.log("WebSocket连接已打开!");
  298. let userid = uni.getStorageSync("userData").user.id;
  299. uni.sendSocketMessage({
  300. data: JSON.stringify({
  301. userid,
  302. }),
  303. success: function(res) {
  304. console.log(res, "传参");
  305. },
  306. fail: function(err) {
  307. console.log(err, "传参错误");
  308. },
  309. });
  310. });
  311. uni.onSocketError(function(res) {
  312. console.log("WebSocket连接打开失败,请检查!");
  313. });
  314. uni.onSocketMessage((res) => {
  315. console.log("收到服务器内容:" + res.data);
  316. if (res.data == "ok") {
  317. this.goOffWork();
  318. }
  319. });
  320. },
  321. // 下班
  322. goOffWork() {
  323. let setDeptConfg = uni.getStorageSync("setDeptConfg");
  324. if (setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 3) {
  325. post("/auth/onOrOffLine", {
  326. type: "off",
  327. customWorking: "off",
  328. classId: uni.getStorageSync("setDeptConfg").classesId
  329. }).then((res) => {
  330. if (res.status == 200) {
  331. if (uni.getStorageSync("setDeptConfg")) {
  332. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  333. }
  334. uni.showToast({
  335. icon: "none",
  336. title: "您已被强制下班!",
  337. mask: true,
  338. duration: 5000,
  339. });
  340. setTimeout(() => {
  341. uni.redirectTo({
  342. url: "../mypage/mypage",
  343. });
  344. }, 5000);
  345. } else {
  346. uni.showToast({
  347. icon: "none",
  348. title: "请求失败",
  349. });
  350. }
  351. });
  352. } else {
  353. post("/auth/onOrOffLine", {
  354. type: "off",
  355. classId: uni.getStorageSync("setDeptConfg").classesId
  356. }).then((res) => {
  357. if (res.status == 200) {
  358. if (uni.getStorageSync("setDeptConfg")) {
  359. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  360. }
  361. uni.showToast({
  362. icon: "none",
  363. title: "您已被强制下班!",
  364. mask: true,
  365. duration: 5000,
  366. });
  367. setTimeout(() => {
  368. uni.redirectTo({
  369. url: "../mypage/mypage",
  370. });
  371. }, 5000);
  372. } else {
  373. uni.showToast({
  374. icon: "none",
  375. title: "请求失败",
  376. });
  377. }
  378. });
  379. }
  380. },
  381. // 上班
  382. GoWork() {
  383. uni.showLoading({
  384. title: "加载中",
  385. mask: true,
  386. });
  387. if (this.workSchemeType == 2 && this.ruleType == 3) {
  388. let obj = uni.getStorageSync("setDeptConfg");
  389. let depts = this.objHistory.deptList.map((item) => item.id).join();
  390. let userId = uni.getStorageSync("userData").user.id;
  391. post("/auth/onOrOffLine", {
  392. type: "on",
  393. customWorking: "on",
  394. quickId: obj.id,
  395. deptIds: depts,
  396. userId: userId,
  397. classId: uni.getStorageSync("setDeptConfg").classesId
  398. }).then((result) => {
  399. uni.hideLoading();
  400. if (result.status == 200) {
  401. let obj = uni.getStorageSync("userData");
  402. obj.user.online = true;
  403. uni.setStorageSync("userData", obj);
  404. uni.redirectTo({
  405. url: "../receiptpage/receiptpage",
  406. });
  407. } else if (result.status == 504) {
  408. let dept = result.department.dept;
  409. let user = result.user.name;
  410. let phone = result.user.phone;
  411. this.models = {
  412. disjunctor: true,
  413. title: "提示",
  414. content: `您选择的科室已经被使用,请换个科室,或者联系:科室[${dept}]人员[${user}]号码[${phone}] 切换科室解决`,
  415. icon: "warn",
  416. phone,
  417. operate: {
  418. know: "知道了",
  419. },
  420. };
  421. } else {
  422. uni.showToast({
  423. icon: "none",
  424. title: "请求失败",
  425. });
  426. }
  427. });
  428. } else {
  429. post("/auth/onOrOffLine", {
  430. type: "on",
  431. classId: uni.getStorageSync("setDeptConfg").classesId
  432. }).then((res) => {
  433. uni.hideLoading();
  434. if (res.status == 200) {
  435. let obj = uni.getStorageSync("userData");
  436. obj.user.online = true;
  437. uni.setStorageSync("userData", obj);
  438. uni.redirectTo({
  439. url: "../receiptpage/receiptpage",
  440. });
  441. } else {
  442. uni.showToast({
  443. icon: "none",
  444. title: "请求失败",
  445. });
  446. }
  447. });
  448. }
  449. },
  450. // 登录
  451. login() {
  452. // 用户名,密码,域名(ip)不能为空
  453. if (
  454. this.username.trim() === "" ||
  455. this.password.trim() === "" ||
  456. this.ip.trim() === ""
  457. ) {
  458. uni.showToast({
  459. icon: "none",
  460. title: "请输入用户名,密码,域名或IP",
  461. });
  462. return;
  463. }
  464. // 域名ip正则验证
  465. let regUrl =
  466. /^https?:\/\/([\w-]+\.)+((com)|(net)|(org)|(gov\.cn)|(info)|(cc)|(com\.cn)|(net\.cn)|(org\.cn)|(name)|(biz)|(tv)|(cn)|(mobi)|(name)|(sh)|(ac)| (io)|(tw)|(com\.tw)|(hk)|(com\.hk)|(ws)|(travel)|(us)|(tm)|(la)|(me\.uk)|(org\.uk)|(ltd\.uk)|(plc\.uk)|(in)|(eu)|(it)|(jp))(\:([0-9]|[1-9]\d{1,3}|[1-5]\d{4}|6[0-5]{2}[0-3][0-5]))?$/;
  467. let regIp =
  468. /^https?:\/\/((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]\d)|\d)(\.((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]\d)|\d)){3}(\:([0-9]|[1-9]\d{1,3}|[1-5]\d{4}|6[0-5]{2}[0-3][0-5]))?$/;
  469. if (!regUrl.test(this.ip.trim()) && !regIp.test(this.ip.trim())) {
  470. uni.showToast({
  471. icon: "none",
  472. title: "请输入正确的域名或IP",
  473. });
  474. return;
  475. }
  476. uni.setStorageSync("ip", this.ip);
  477. changeIP(this.ip);
  478. uni.showLoading({
  479. title: "登录中",
  480. mask: true,
  481. });
  482. let data = {
  483. username: this.username.trim(),
  484. password: this.password.trim(),
  485. type: 'APP'
  486. };
  487. post("/auth/login", data).then((res) => {
  488. uni.hideLoading();
  489. if (res.status == 200) {
  490. //获取角色信息
  491. let role = res.user.user.role;
  492. // 配药师和支助人员才能登录
  493. let workerFlag = role.some((item) => item.rolecode === "worker");
  494. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  495. if (!workerFlag && !pharmacistFlag) {
  496. uni.showToast({
  497. icon: "none",
  498. title: "暂无权限登录!",
  499. });
  500. return;
  501. }
  502. uni.setStorageSync("userData", res.user);
  503. uni.setStorageSync("username", this.username); //存储用户名
  504. uni.setStorageSync("password", this.password); //存储密码
  505. this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
  506. this.getHistorys(res.user.user.id); //获取上班历史记录
  507. this.offWork("app", this.ip);
  508. if (workerFlag) { //有配药师角色
  509. if (!res.user.user.online) {
  510. this.online = false;
  511. } else {
  512. this.online = true;
  513. // 建立websocket连接
  514. webHandle("receiptpage", "app", this.ip);
  515. }
  516. } else {
  517. webHandle("pharmacy", "app", this.ip);
  518. }
  519. } else if (!res.status && !res.remarks) {
  520. //如果乱填写域名或ip
  521. uni.showToast({
  522. icon: "none",
  523. title: "服务器连接失败!请检查输入的域名(IP)及端口号",
  524. });
  525. } else {
  526. uni.showToast({
  527. icon: "none",
  528. title: res.remarks ? res.remarks : "请求失败",
  529. });
  530. }
  531. });
  532. },
  533. // 微信登录公用方法
  534. // user:当前登录用户对象
  535. // type:有值的话则是从菜单访问的
  536. // workerFlag:是否有支助人员角色
  537. // pharmacistFlag:是否有配药师角色
  538. submCommon(user, type, workerFlag, pharmacistFlag) {
  539. //从药房菜单过来的
  540. if (type === "pharmacy") {
  541. //药房来
  542. // 药房才能登录
  543. if (!pharmacistFlag) {
  544. uni.showToast({
  545. icon: "none",
  546. title: "暂无权限登录!",
  547. });
  548. return;
  549. }
  550. } else if (type === "mypage") { //从我的菜单过来的
  551. if (!workerFlag) {
  552. uni.showToast({
  553. icon: "none",
  554. title: "暂无权限登录!",
  555. });
  556. return;
  557. }
  558. } else {
  559. //正常进入
  560. if (!workerFlag && !pharmacistFlag) {
  561. uni.showToast({
  562. icon: "none",
  563. title: "暂无权限登录!",
  564. });
  565. return;
  566. }
  567. }
  568. uni.setStorageSync("userData", user);
  569. this.getWorkScheme(false, user.user.currentHospital.id); //获取当前启动中的工作分配方案
  570. this.getHistorys(user.user.id); //获取上班历史记录
  571. this.offWork("wx");
  572. // uni.setStorageSync('type', '')
  573. if (type === "pharmacy") {
  574. // 建立websocket连接
  575. webHandle("pharmacy", "wx");
  576. } else if (type === "mypage") {
  577. // 建立websocket连接
  578. webHandle("mypage", "wx");
  579. } else {
  580. if (workerFlag) { //有支助人员的角色
  581. if (!user.user.online) {
  582. this.online = false;
  583. } else {
  584. this.online = true;
  585. // 建立websocket连接
  586. webHandle("receiptpage", "wx");
  587. }
  588. } else { //只有药房橘色
  589. webHandle("pharmacy", "wx");
  590. }
  591. }
  592. },
  593. //微信
  594. subm() {
  595. uni.showLoading({
  596. title: "登录中",
  597. mask: true,
  598. });
  599. var href = location.href; //获取链接地址
  600. console.log(href, "href");
  601. var href_wenhao = href.indexOf("?code="); //判断有没有问号,没有是-1
  602. var wenhaohoumian = location.href.split("?code="); //截取问号地址数组
  603. this.arr_last = wenhaohoumian[1]; //地址数组赋值
  604. if (href_wenhao == -1) {
  605. post("/auth/wxlogin").then((res) => {
  606. this.url = res.url;
  607. this.state = res.status;
  608. uni.setStorageSync("type", this.type); //存储来源type
  609. uni.hideLoading();
  610. if (this.state == "200") {
  611. //获取角色信息
  612. let role = res.user.user.role;
  613. let workerFlag = role.some((item) => item.rolecode === "worker");
  614. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  615. this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
  616. } else {
  617. console.log(this.url, "url");
  618. // https://open.weixin.qq.com/connect/oauth2/authorize?appid=ww2506abad3086cfab&redirect_uri=http://weixintest2.ngser.dashitech.com/app&response_type=code&scope=snsapi_base&agentid=1000013&state=STATE&connect_redirect=1#wechat_redirect
  619. location.assign(this.url);
  620. }
  621. });
  622. } else if (href_wenhao != -1) {
  623. this.arr_last = this.arr_last.split("&");
  624. this.arr_last = this.arr_last[0];
  625. post("/auth/wxlogina", {
  626. code: this.arr_last,
  627. }).then((res) => {
  628. this.state = res.status;
  629. uni.hideLoading();
  630. if (this.state == "200") {
  631. this.type = uni.getStorageSync("type"); //刷新页面后获取type
  632. console.log(this.type);
  633. //获取角色信息
  634. let role = res.user.user.role;
  635. let workerFlag = role.some((item) => item.rolecode === "worker");
  636. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  637. this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
  638. } else {
  639. uni.showToast({
  640. icon: "none",
  641. title: "请求失败",
  642. });
  643. }
  644. });
  645. }
  646. },
  647. // 获取工作组合列表
  648. getCombinationById(idx, type) {
  649. console.log(this.type);
  650. if (this.zxzData.length == this.totalNum && !type) {
  651. uni.showToast({
  652. icon: "none",
  653. title: "没有更多数据了!",
  654. });
  655. this.freshing = true;
  656. return;
  657. }
  658. let data = {
  659. workAllocationQuickConfig: {
  660. workSchemeId: this.workSchemeId,
  661. },
  662. idx: idx,
  663. sum: 20,
  664. };
  665. uni.showLoading({
  666. title: "加载中",
  667. mask: true,
  668. });
  669. // 请求列表数据
  670. post("/configuration/fetchDataList/workAllocationQuickConfig", data).then(
  671. (res) => {
  672. uni.hideLoading();
  673. if (res.status == 200) {
  674. this.triggered = false;
  675. this.freshing = true;
  676. this.totalNum = res.totalNum;
  677. if (idx === 0) {
  678. res.list.forEach((item) => {
  679. let o = JSON.parse(JSON.stringify(item));
  680. item.str = JSON.stringify(o);
  681. item.checked = false;
  682. });
  683. this.zxzData = res.list;
  684. } else {
  685. res.list.forEach((item) => {
  686. let o = JSON.parse(JSON.stringify(item));
  687. item.str = JSON.stringify(o);
  688. item.checked = false;
  689. });
  690. this.zxzData.push(...res.list);
  691. }
  692. } else {
  693. uni.showToast({
  694. icon: "none",
  695. title: "请求失败!",
  696. });
  697. }
  698. }
  699. );
  700. },
  701. //刷新
  702. refresherrefresh() {
  703. if (this.triggered) {
  704. return;
  705. }
  706. console.log("下拉刷新");
  707. this.triggered = true;
  708. this.idx = 0;
  709. this.totalNum = -1;
  710. this.getCombinationById(0);
  711. },
  712. // 下拉刷新复位
  713. refresherrestore() {
  714. this.triggered = false;
  715. console.log("下拉刷新复位");
  716. },
  717. //下拉刷新中止
  718. refresherabort() {
  719. this.triggered = false;
  720. console.log("下拉刷新中止");
  721. },
  722. //分页,上拉加载
  723. scrolltolower() {
  724. if (this.freshing) {
  725. console.log("上拉加载");
  726. this.freshing = false;
  727. this.getCombinationById(++this.idx);
  728. }
  729. },
  730. // 滚动
  731. scroll(e) {
  732. if (e.detail.scrollTop < 20) {
  733. this.scroll_refresher_enabled = true;
  734. } else {
  735. this.scroll_refresher_enabled = false;
  736. }
  737. },
  738. // 获取启动中的工作分配方案
  739. getWorkScheme(type, hosId) {
  740. let postData = {
  741. idx: 0,
  742. workScheme: {
  743. status: 1,
  744. hosId
  745. },
  746. sum: 1,
  747. };
  748. post("/simple/data/fetchDataList/workScheme", postData).then((res) => {
  749. if (res.status == 200) {
  750. this.workSchemeId = res.list[0].id;
  751. this.workSchemeType = res.list[0].workType;
  752. if (type) {
  753. if (this.workSchemeType == 2) {
  754. this.getCombinationById(0, "no");
  755. } else if (this.workSchemeType == 1) {
  756. if (uni.getStorageSync("setDeptConfg")) {
  757. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  758. }
  759. }
  760. } else {
  761. this.getCombinationById(0);
  762. }
  763. } else {
  764. uni.showToast({
  765. icon: "none",
  766. title: "请求失败!",
  767. });
  768. }
  769. });
  770. },
  771. // 阻止浏览器滑动
  772. stop(e) {
  773. e.preventDefault();
  774. },
  775. //获取查询参数
  776. GetQueryString(name) {
  777. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  778. var r = location.search.substr(1).match(reg);
  779. if (r != null) {
  780. return unescape(r[2]);
  781. }
  782. return null;
  783. }
  784. },
  785. onHide() {
  786. this.zxzData = [];
  787. this.historys = [];
  788. // #ifdef H5
  789. document.body.removeEventListener("touchmove", this.stop, {
  790. passive: false,
  791. });
  792. // #endif
  793. },
  794. onShow() {
  795. // let flag = true;
  796. if (uni.getStorageSync("userData")) {
  797. this.online = uni.getStorageSync("userData").user.online;
  798. }
  799. if (!this.workSchemeType) {
  800. return;
  801. }
  802. // if (this.workSchemeType == 2 && !this.online) {
  803. // let userId = uni.getStorageSync('userData').user.id;
  804. // this.getCombinationById(this.idx, 'no');
  805. // this.getHistorys(userId); //获取上班历史记录
  806. // }
  807. let userId = uni.getStorageSync("userData").user.id;
  808. this.getWorkScheme(true, uni.getStorageSync("userData").user.currentHospital.id);
  809. this.getHistorys(userId); //获取上班历史记录
  810. // #ifdef APP-PLUS
  811. uni.closeSocket();
  812. // #endif
  813. // #ifdef H5
  814. document.body.addEventListener("touchmove", this.stop, {
  815. passive: false,
  816. });
  817. // #endif
  818. },
  819. onLoad(options) {
  820. if (uni.getStorageSync("setDepts")) {
  821. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  822. }
  823. console.log(options);
  824. this.ip = uni.getStorageSync("ip") || this.ip;
  825. this.username = uni.getStorageSync("username") || this.username;
  826. this.password = uni.getStorageSync("password") || this.password;
  827. //#ifdef H5
  828. this.isApp = false;
  829. this.type = options.type || "";
  830. console.log(this.type);
  831. if (this.GetQueryString('login') === '1') {
  832. //H5页面账号密码登录
  833. this.isH5AndPwd = true;
  834. this.ip = location.origin;
  835. } else {
  836. this.isH5AndPwd = false;
  837. this.subm();
  838. }
  839. //#endif
  840. // #ifdef APP-PLUS
  841. this.isApp = true;
  842. // 通知权限 start
  843. // var main = plus.android.runtimeMainActivity();
  844. // var pkName = main.getPackageName();
  845. // var NotificationManagerCompat = plus.android.importClass(
  846. // "android.support.v4.app.NotificationManagerCompat"
  847. // );
  848. // var packageNames = NotificationManagerCompat.from(main);
  849. // console.log(JSON.stringify(packageNames));
  850. // if (packageNames.areNotificationsEnabled()) {
  851. // console.log("已开启通知权限");
  852. // } else {
  853. // uni.showModal({
  854. // title: "提示",
  855. // content: "请先打开APP通知权限",
  856. // showCancel: true,
  857. // success: function(res) {
  858. // if (res.confirm) {
  859. // var Intent = plus.android.importClass("android.content.Intent");
  860. // var intent = new Intent(
  861. // "android.settings.APP_NOTIFICATION_SETTINGS"
  862. // ); //可设置表中所有Action字段
  863. // intent.putExtra("android.provider.extra.APP_PACKAGE", pkName);
  864. // main.startActivity(intent);
  865. // }
  866. // },
  867. // });
  868. // }
  869. // 通知权限 end
  870. // #endif
  871. },
  872. };
  873. </script>
  874. <style lang="less" scoped>
  875. .HomeItem {
  876. height: 100vh;
  877. .login {
  878. height: 420rpx;
  879. padding: 0 32rpx;
  880. padding-top: 164rpx;
  881. position: relative;
  882. z-index: 999;
  883. .login_input {
  884. margin-top: 32rpx;
  885. background-color: #ffffff;
  886. height: 72rpx;
  887. box-sizing: border-box;
  888. padding: 16rpx;
  889. }
  890. .title {
  891. font-size: 36rpx;
  892. color: #42b983;
  893. text-align: center;
  894. }
  895. .page_item_btn {
  896. height: 88rpx;
  897. background-image: linear-gradient(to right, #72c172, #3bb197);
  898. border-radius: 8rpx;
  899. line-height: 88rpx;
  900. color: #fff;
  901. font-size: 36rpx;
  902. font-weight: 700;
  903. margin-top: 64rpx;
  904. text-align: center;
  905. }
  906. }
  907. //上班页面
  908. .goWorkAll {
  909. height: 100%;
  910. display: flex;
  911. flex-direction: column;
  912. justify-content: space-between;
  913. /deep/ .uni-radio-input-checked {
  914. background-color: #42b983 !important;
  915. border-color: #42b983 !important;
  916. }
  917. .goWorkSelect {
  918. &.history {
  919. height: 356rpx;
  920. padding-bottom: 16rpx;
  921. }
  922. &.combination {
  923. .goWorkSelect-head {
  924. position: fixed;
  925. top: 0;
  926. left: 0;
  927. width: 100%;
  928. }
  929. .goWorkSelect-list {
  930. margin-top: 82rpx;
  931. }
  932. }
  933. .goWorkSelect-head {
  934. font-size: 36rpx;
  935. padding: 16rpx 0;
  936. color: #42b983;
  937. border-bottom: 2rpx solid #42b983;
  938. text-align: center;
  939. }
  940. .goWorkSelect-list {
  941. &.scroll {
  942. height: calc(100vh - 356rpx - 82rpx);
  943. }
  944. .goWorkSelect-item {
  945. height: 52rpx;
  946. display: flex;
  947. align-items: center;
  948. border-bottom: 2rpx solid #e5e9ed;
  949. padding: 16rpx;
  950. button {
  951. font-size: 32rpx;
  952. height: 52rpx;
  953. line-height: 52rpx;
  954. margin: 0;
  955. margin-left: 16rpx;
  956. color: rgb(7, 134, 60);
  957. font-weight: 700;
  958. }
  959. }
  960. }
  961. }
  962. }
  963. .goWork {
  964. margin: 0 auto 48rpx;
  965. width: 240rpx;
  966. height: 240rpx;
  967. .goWork_btn_E {
  968. width: 100%;
  969. height: 100%;
  970. background: #bee1a7;
  971. border-radius: 30%;
  972. .goWork_btn_W {
  973. width: 75%;
  974. height: 75%;
  975. background-image: linear-gradient(to right, #72c172, #3bb197);
  976. border-radius: 30%;
  977. margin: 0 auto;
  978. position: relative;
  979. top: 12.5%;
  980. line-height: 180rpx;
  981. color: #fff;
  982. font-size: 36rpx;
  983. text-align: center;
  984. }
  985. }
  986. }
  987. .goWork_text {
  988. width: 100%;
  989. view {
  990. text-align: center;
  991. }
  992. .goWork_text-p {
  993. font-size: 36rpx;
  994. margin-bottom: 48rpx;
  995. }
  996. }
  997. .botImg {
  998. height: 600rpx;
  999. width: 100%;
  1000. position: fixed;
  1001. bottom: 0;
  1002. .img {
  1003. height: 100%;
  1004. background: url("../../static/img/BG.png") no-repeat center center;
  1005. background-size: 100% 100%;
  1006. }
  1007. }
  1008. }
  1009. </style>