homePage.vue 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387
  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 relative" v-for="item in zxzData" :key="item.str">
  22. <radio :value="item.str" :checked="item.checked" />
  23. <picker class="picker" v-if="item.ruleType == 4" @change="bindPickerChange" :value="index" :range="groups"
  24. range-key="groupName">
  25. <view>{{ item.configName }}</view>
  26. </picker>
  27. <view v-else>{{ item.configName }}</view>
  28. </label>
  29. </radio-group>
  30. </scroll-view>
  31. </view>
  32. <view class="goWorkSelect history">
  33. <view class="goWorkSelect-head"> 历史上班记录 </view>
  34. <view class="goWorkSelect-list">
  35. <radio-group @change="radioChange2">
  36. <label class="goWorkSelect-item" v-for="(item, index) in historys" :key="index">
  37. <radio :value="item.str" :checked="item.checked" />
  38. <view>{{ item.useTime }}上班记录快捷上班</view>
  39. <button @click="lock(item)">
  40. {{ item.locking == 1 ? "解锁" : "锁定" }}
  41. </button>
  42. </label>
  43. </radio-group>
  44. </view>
  45. </view>
  46. </view>
  47. <!-- APP或H5账号密码登录页面 start -->
  48. <view class="login" v-if="!workSchemeType && (isApp||isH5AndPwd)">
  49. <view class="title"> 医疗服务中心转运系统 </view>
  50. <input class="login_input" v-model="username" placeholder="请输入用户名" />
  51. <input class="login_input" password v-model="password" placeholder="请输入密码" />
  52. <input class="login_input" v-show="!isH5AndPwd" v-model="ip" placeholder="请输入域名或IP地址,如:http(s)://192.168.3.108" />
  53. <view class="savePassword">
  54. <checkbox-group @change="checkboxChange">
  55. <label>
  56. <checkbox v-for="(item,index) in savePassword" :key="item.value" color="#42b983" :value="item.value"
  57. :checked="item.checked" />记住密码
  58. </label>
  59. </checkbox-group>
  60. </view>
  61. <view class="page_item_btn" @click="login()"> 登录 </view>
  62. <view class="tips" v-show="isH5AndPwd">
  63. (此系统为服务中心及药房人员使用,其他科室人员请勿进行操作)
  64. </view>
  65. </view>
  66. <!-- APP或H5账号密码登录页面 end -->
  67. <view class="botImg" v-if="online || (!online && online !== undefined && workSchemeType == 1)">
  68. <view class="img"></view>
  69. </view>
  70. <!-- 弹窗 -->
  71. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  72. @ok="ok" @cancel="cancel" :operate="models.operate" :phone="models.phone" @know="know"></showModel>
  73. <!-- 锁定-弹窗 -->
  74. <showModel :title="modelsLock.title" :icon="modelsLock.icon" :disjunctor="modelsLock.disjunctor"
  75. :content="modelsLock.content" @ok="okLock" @cancel="cancelLock" :operate="modelsLock.operate" @know="knowLock">
  76. </showModel>
  77. <!-- 自选排班-科室绑定分组-弹窗 -->
  78. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  79. @ok="ok2" @cancel="cancel2" :operate="models2.operate">
  80. </showModel>
  81. </view>
  82. </template>
  83. <script>
  84. import {
  85. get,
  86. post,
  87. changeIP,
  88. webHandle
  89. } from "../../http/http.js";
  90. import showModel from "../../components/showModel/showModel.vue";
  91. import appUpdata from "../../components/appUpdata/appUpdata.vue";
  92. import {
  93. AES,
  94. mode,
  95. pad,
  96. enc
  97. } from "crypto-js";
  98. export default {
  99. data() {
  100. return {
  101. //#ifdef H5
  102. type: "",
  103. //#endif
  104. //记住密码
  105. savePassword: [{
  106. value: 'savePassword',
  107. name: '记住密码',
  108. checked: true
  109. }],
  110. // 是否上班了
  111. online: undefined,
  112. // 是否是app
  113. isApp: false,
  114. // 是否是H5,账号密码登录
  115. isH5AndPwd: false,
  116. // 用户名
  117. username: "",
  118. // 密码
  119. password: "",
  120. //ip地址或域名
  121. ip: "",
  122. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  123. triggered: false, //下拉刷新状态
  124. freshing: false, //上拉加载开关
  125. scroll_top: 0, //距离顶部的距离
  126. //分页页码
  127. idx: 0,
  128. // 列表项总数
  129. totalNum: -1,
  130. // 上班选择工作组合列表
  131. zxzData: [],
  132. workSchemeId: "", //启动中工作分配方案id
  133. workSchemeType: "", //启动中工作分配方案类型
  134. ruleType: "", //工作分配方案规则、、例如自由抢单等
  135. // 上班历史记录列表
  136. historys: [],
  137. // 弹窗model
  138. models: {
  139. disjunctor: false,
  140. },
  141. //锁定的选项
  142. itemLock: {},
  143. // 弹窗model--锁定
  144. modelsLock: {
  145. disjunctor: false,
  146. },
  147. groups: [],
  148. index: 0,
  149. quickObj: {}, //选择的上班快捷组合
  150. // 自选排班-科室绑定分组-弹窗model
  151. models2: {
  152. disjunctor: false,
  153. },
  154. objHistory: {},
  155. isUpdate:false
  156. };
  157. },
  158. components: {
  159. appUpdata
  160. },
  161. methods: {
  162. //aes加密
  163. encryptByEnAES(data) {
  164. let Key = "dsadmin";
  165. let tmpAES = AES.encrypt(data, Key, {
  166. mode: mode.CBC,
  167. padding: pad.Pkcs7,
  168. });
  169. return tmpAES.toString();
  170. },
  171. //aes加密-登录
  172. encryptByEnAESLogin(data) {
  173. data = enc.Utf8.parse(data);
  174. let Key = enc.Utf8.parse('Aes2Util666AQWER');
  175. let tmpAES = AES.encrypt(data, Key, {
  176. mode: mode.ECB,
  177. padding: pad.Pkcs7,
  178. });
  179. return tmpAES.toString();
  180. },
  181. //aes解密
  182. encryptByDeAES(data) {
  183. let Key = "dsadmin";
  184. let tmpDeAES = AES.decrypt(data, Key, {
  185. mode: mode.CBC,
  186. padding: pad.Pkcs7,
  187. });
  188. return tmpDeAES.toString(enc.Utf8);
  189. },
  190. //记住密码
  191. checkboxChange(e) {
  192. console.log(e.detail.value);
  193. let arr = e.detail.value;
  194. if (arr.length) {
  195. this.savePassword.forEach(v => {
  196. v.checked = true;
  197. })
  198. } else {
  199. this.savePassword.forEach(v => {
  200. v.checked = false;
  201. })
  202. }
  203. console.log(this.savePassword)
  204. },
  205. // 锁定
  206. lock(data) {
  207. console.log(data);
  208. // 如果不是科室绑定人员,则提示
  209. if (data.workAllocationQuick.ruleType != 3) {
  210. this.modelsLock = {
  211. disjunctor: true,
  212. title: "提示",
  213. content: `需科室绑定人员模式下才可快捷上班!`,
  214. icon: "warn",
  215. };
  216. return;
  217. }
  218. this.itemLock = data;
  219. this.modelsLock = {
  220. disjunctor: true,
  221. title: "提示",
  222. content: `是否${
  223. this.itemLock.locking == 1 ? "解锁" : "锁定"
  224. }该上班记录`,
  225. icon: "warn",
  226. operate: {
  227. ok: "确定",
  228. cancel: "取消",
  229. },
  230. };
  231. },
  232. //知道了
  233. knowLock() {
  234. this.modelsLock.disjunctor = false;
  235. let userId = uni.getStorageSync("userData").user.id;
  236. this.getHistorys(userId); //获取上班历史记录
  237. },
  238. //确定
  239. okLock() {
  240. this.modelsLock.disjunctor = false;
  241. let postData = {
  242. workConfigHistory: {
  243. id: this.itemLock.id,
  244. locking: this.itemLock.locking == 1 ? 0 : 1,
  245. },
  246. };
  247. uni.showLoading({
  248. title: "加载中",
  249. mask: true,
  250. });
  251. post("/configuration/updData/workConfigHistory", postData).then(
  252. (result) => {
  253. uni.hideLoading();
  254. if (result.status == 200) {
  255. this.modelsLock = {
  256. disjunctor: true,
  257. title: "提示",
  258. content: `${this.itemLock.locking == 0 ? "锁定" : "解锁"}成功`,
  259. icon: "success",
  260. operate: {
  261. know: "知道了",
  262. },
  263. };
  264. } else {
  265. uni.showToast({
  266. icon: "none",
  267. title: result.msg || "接口获取数据失败!",
  268. });
  269. }
  270. }
  271. );
  272. },
  273. //取消
  274. cancelLock() {
  275. this.modelsLock.disjunctor = false;
  276. },
  277. // 选择历史上班记录
  278. radioChange2(value) {
  279. this.objHistory = JSON.parse(value.target.value);
  280. console.log(this.objHistory);
  281. // 如果不是科室绑定人员,则提示
  282. if (this.objHistory.workAllocationQuick.ruleType != 3) {
  283. this.models = {
  284. disjunctor: true,
  285. title: "提示",
  286. content: `需科室绑定人员模式下才可快捷上班!`,
  287. icon: "warn",
  288. };
  289. return;
  290. }
  291. if (!this.objHistory.deptList) {
  292. this.objHistory.deptList = [];
  293. }
  294. let depts = this.objHistory.deptList.map((item) => item.dept).join();
  295. this.models = {
  296. disjunctor: true,
  297. title: "提示",
  298. content: `组合名称是【${this.objHistory.workAllocationQuick.configName}】;选择的科室是【${depts}】`,
  299. icon: "warn",
  300. operate: {
  301. ok: "快捷上班",
  302. cancel: "取消",
  303. },
  304. };
  305. },
  306. //知道了
  307. know() {
  308. this.models.disjunctor = false;
  309. },
  310. //确定
  311. ok() {
  312. this.models.disjunctor = false;
  313. this.ruleType = 3;
  314. uni.setStorageSync("setDepts", this.objHistory.deptList); //存科室列表
  315. uni.setStorageSync("setDeptConfg", {
  316. //存设置科室的配置信息
  317. configName: this.objHistory.workAllocationQuick.configName, //组合名称
  318. workSchemeType: 2, //方案类型
  319. ruleType: 3, //方案规则,科室绑定人员
  320. id: this.objHistory.workAllocationQuick.id, //组合id
  321. classesId: this.objHistory.classId,
  322. });
  323. this.GoWork();
  324. },
  325. //取消
  326. cancel() {
  327. this.models.disjunctor = false;
  328. let userId = uni.getStorageSync("userData").user.id;
  329. this.historys = [];
  330. this.getHistorys(userId); //获取上班历史记录
  331. },
  332. // 获取上班历史记录
  333. getHistorys(id) {
  334. let postData = {
  335. idx: 0,
  336. sum: 3,
  337. workConfigHistory: {
  338. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  339. user: {
  340. id: id,
  341. },
  342. },
  343. };
  344. post("/configuration/fetchDataList/workConfigHistory", postData).then(
  345. (res) => {
  346. if (res.status == 200) {
  347. this.historys = res.list;
  348. this.historys.forEach((item) => {
  349. let d = new Date(item.useTime);
  350. let month = (d.getMonth() + 1 + "").padStart(2, "0");
  351. let day = (d.getDate() + "").padStart(2, "0");
  352. item.useTime = `${month}月${day}日`;
  353. let o = JSON.parse(JSON.stringify(item));
  354. item.str = JSON.stringify(o);
  355. item.checked = false;
  356. });
  357. } else {
  358. uni.showToast({
  359. icon: "none",
  360. title: res.msg || "接口获取数据失败!",
  361. });
  362. }
  363. }
  364. );
  365. },
  366. //确定
  367. ok2() {
  368. uni.setStorageSync("manager", this.groups[this.index].manager); //储存分组组长
  369. this.models2.disjunctor = false;
  370. //进入设置科室界面
  371. uni.setStorageSync("setDeptConfg", {
  372. //存设置科室的配置信息
  373. configName: this.quickObj.configName,
  374. workSchemeType: this.workSchemeType,
  375. ruleType: this.quickObj.ruleType,
  376. id: this.quickObj.id,
  377. classesId: this.quickObj.classes.id,
  378. selectGroupId: this.groups[this.index].id,
  379. });
  380. uni.navigateTo({
  381. url: `../setDept/setDept?configName=${this.quickObj.configName}&id=${this.quickObj.id}`,
  382. });
  383. },
  384. //取消
  385. cancel2() {
  386. this.models2.disjunctor = false;
  387. },
  388. //工作组合的工作模式是2(科室绑定分组)或4(绑定分组)
  389. bindPickerChange: function(e) {
  390. console.log('picker发送选择改变,携带值为', e.detail.value)
  391. this.index = e.target.value;
  392. let userId = uni.getStorageSync("userData").user.id;
  393. let groupObj = this.groups[this.index];
  394. if (groupObj.manager == userId) {
  395. //当前登陆人是该分组组长-弹窗确定
  396. this.models2 = {
  397. disjunctor: true,
  398. title: "提示",
  399. content: `请确认您选择了‘${this.quickObj.classes.name}’班次,并选择了‘${groupObj.groupName}’分组!`,
  400. icon: "warn",
  401. operate: {
  402. ok: "确定",
  403. cancel: "取消",
  404. },
  405. };
  406. } else {
  407. //当前登陆人不是该分组组长
  408. uni.setStorageSync("setDeptConfg", {
  409. //存设置科室的配置信息
  410. configName: this.quickObj.configName,
  411. workSchemeType: this.workSchemeType,
  412. ruleType: this.quickObj.ruleType,
  413. id: this.quickObj.id,
  414. classesId: this.quickObj.classes.id,
  415. });
  416. this.GoWork([groupObj]);
  417. }
  418. },
  419. // 选择上班快捷组合
  420. radioChange1(value) {
  421. let obj = JSON.parse(value.target.value);
  422. console.log(obj);
  423. this.quickObj = obj;
  424. this.ruleType = obj.ruleType;
  425. if (uni.getStorageSync("setDeptConfg")) {
  426. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  427. }
  428. if (obj.ruleType == 1) {
  429. uni.setStorageSync("setDeptConfg", {
  430. configName: this.quickObj.configName,
  431. workSchemeType: this.workSchemeType,
  432. ruleType: this.quickObj.ruleType,
  433. id: this.quickObj.id,
  434. classesId: this.quickObj.classes.id,
  435. });
  436. //自由抢单,直接上班
  437. this.GoWork();
  438. } else if (obj.ruleType == 3) {
  439. //科室绑定人员,进入设置科室界面
  440. uni.setStorageSync("setDeptConfg", {
  441. //存设置科室的配置信息
  442. configName: this.quickObj.configName,
  443. workSchemeType: this.workSchemeType,
  444. ruleType: this.quickObj.ruleType,
  445. id: this.quickObj.id,
  446. classesId: this.quickObj.classes.id,
  447. });
  448. uni.navigateTo({
  449. url: `../setDept/setDept?configName=${this.quickObj.configName}&id=${this.quickObj.id}`,
  450. });
  451. } else if (obj.ruleType == 2) {
  452. //绑定分组,直接上班
  453. uni.setStorageSync("setDeptConfg", {
  454. //存设置科室的配置信息
  455. configName: this.quickObj.configName,
  456. workSchemeType: this.workSchemeType,
  457. ruleType: this.quickObj.ruleType,
  458. id: this.quickObj.id,
  459. classesId: this.quickObj.classes.id,
  460. });
  461. this.GoWork(obj.groups);
  462. } else if (obj.ruleType == 4) {
  463. //科室绑定分组,弹出分组选择
  464. this.groups = obj.groups;
  465. }
  466. },
  467. // 连接上下班的websocket baba type如果是wx则是微信,app则是app;有app必有ip
  468. offWork(type, ip) {
  469. let ipp, wws;
  470. if (type == "wx") {
  471. wws = document.location.protocol === "http:" ? "ws" : "wss"; //ws协议
  472. ipp = document.domain;
  473. } else if (type == "app") {
  474. wws = ip.split(":")[0] === "http" ? "ws" : "wss"; //ws协议
  475. ipp = ip.split(":")[1];
  476. }
  477. console.log(ipp, wws);
  478. uni.connectSocket({
  479. url: `${wws}://${ipp}:8080/webSocket/message/onlineStatus`,
  480. // url: `${wws}://192.168.3.74:8080/webSocket/message/onlineStatus`,
  481. });
  482. uni.onSocketOpen(function(res) {
  483. console.log("WebSocket连接已打开!");
  484. let userid = uni.getStorageSync("userData").user.id;
  485. uni.sendSocketMessage({
  486. data: JSON.stringify({
  487. userid,
  488. }),
  489. success: function(res) {
  490. console.log(res, "传参");
  491. },
  492. fail: function(err) {
  493. console.log(err, "传参错误");
  494. },
  495. });
  496. });
  497. uni.onSocketError(function(res) {
  498. console.log("WebSocket连接打开失败,请检查!");
  499. });
  500. uni.onSocketMessage((res) => {
  501. console.log("收到服务器内容:" + res.data);
  502. if (res.data == "ok") {
  503. this.goOffWork();
  504. }
  505. });
  506. },
  507. // 下班
  508. goOffWork() {
  509. let setDeptConfg = uni.getStorageSync("setDeptConfg");
  510. if (setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 3) {
  511. post("/auth/onOrOffLine", {
  512. type: "off",
  513. customWorking: "off",
  514. classId: uni.getStorageSync("setDeptConfg").classesId
  515. }).then((res) => {
  516. if (res.status == 200) {
  517. if (uni.getStorageSync("setDeptConfg")) {
  518. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  519. }
  520. uni.showToast({
  521. icon: "none",
  522. title: "您已被强制下班!",
  523. mask: true,
  524. duration: 5000,
  525. });
  526. setTimeout(() => {
  527. uni.redirectTo({
  528. url: "../mypage/mypage",
  529. });
  530. }, 5000);
  531. } else {
  532. uni.showToast({
  533. icon: "none",
  534. title: res.msg || "接口获取数据失败!",
  535. });
  536. }
  537. });
  538. } else {
  539. post("/auth/onOrOffLine", {
  540. type: "off",
  541. classId: uni.getStorageSync("setDeptConfg").classesId
  542. }).then((res) => {
  543. if (res.status == 200) {
  544. if (uni.getStorageSync("setDeptConfg")) {
  545. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  546. }
  547. uni.showToast({
  548. icon: "none",
  549. title: "您已被强制下班!",
  550. mask: true,
  551. duration: 5000,
  552. });
  553. setTimeout(() => {
  554. uni.redirectTo({
  555. url: "../mypage/mypage",
  556. });
  557. }, 5000);
  558. } else {
  559. uni.showToast({
  560. icon: "none",
  561. title: res.msg || "接口获取数据失败!",
  562. });
  563. }
  564. });
  565. }
  566. },
  567. // 上班
  568. GoWork(groups) {
  569. console.log(groups)
  570. uni.showLoading({
  571. title: "加载中",
  572. mask: true,
  573. });
  574. //自选排班,科室绑定人员,科室绑定分组,绑定分组
  575. if (this.workSchemeType == 2 && (this.ruleType == 1 || this.ruleType == 2 || this.ruleType == 3 || this
  576. .ruleType == 4)) {
  577. let userId = uni.getStorageSync("userData").user.id;
  578. let setDeptConfg = uni.getStorageSync("setDeptConfg");
  579. let postData = {
  580. type: "on",
  581. customWorking: "on",
  582. userId: userId,
  583. };
  584. console.log(postData, this.objHistory)
  585. if (this.ruleType == 3 || this.ruleType == 4) {
  586. if (!this.objHistory.deptList) {
  587. this.objHistory.deptList = [];
  588. }
  589. let depts = this.objHistory.deptList.map((item) => item.id).join();
  590. postData.deptIds = depts;
  591. postData.quickId = setDeptConfg.id;
  592. postData.classId = setDeptConfg.classesId;
  593. } else if (this.ruleType == 2 || this.ruleType == 1) {
  594. postData.quickId = setDeptConfg.id;
  595. postData.classId = setDeptConfg.classesId;
  596. }
  597. console.log(postData, this.ruleType, setDeptConfg)
  598. if (groups) {
  599. postData.groupIds = groups.map(v => v.id).toString();
  600. if (this.ruleType == 4) {
  601. //科室绑定分组,并且当前登陆人不是组长
  602. delete postData.deptIds;
  603. }
  604. }
  605. post("/auth/onOrOffLine", postData).then((result) => {
  606. uni.hideLoading();
  607. if (result.status == 200) {
  608. let obj = uni.getStorageSync("userData");
  609. obj.user.online = true;
  610. uni.setStorageSync("userData", obj);
  611. uni.redirectTo({
  612. url: "../receiptpage/receiptpage",
  613. });
  614. } else if (result.status == 504) {
  615. let dept = result.department.dept;
  616. let user = result.user.name;
  617. let phone = result.user.phone;
  618. this.models = {
  619. disjunctor: true,
  620. title: "提示",
  621. content: `您选择的科室已经被使用,请换个科室,或者联系:科室[${dept}]人员[${user}]号码[${phone}] 切换科室解决`,
  622. icon: "warn",
  623. phone,
  624. operate: {
  625. know: "知道了",
  626. },
  627. };
  628. } else {
  629. uni.showToast({
  630. icon: "none",
  631. title: result.msg || "接口获取数据失败!",
  632. });
  633. }
  634. });
  635. } else {
  636. let postData = {
  637. type: "on",
  638. classId: uni.getStorageSync("setDeptConfg").classesId
  639. };
  640. if (groups) { //caocao
  641. postData.groupIds = groups.map(v => v.id).toString();
  642. }
  643. post("/auth/onOrOffLine", postData).then((res) => {
  644. uni.hideLoading();
  645. if (res.status == 200) {
  646. let obj = uni.getStorageSync("userData");
  647. obj.user.online = true;
  648. uni.setStorageSync("userData", obj);
  649. uni.redirectTo({
  650. url: "../receiptpage/receiptpage",
  651. });
  652. } else {
  653. uni.showToast({
  654. icon: "none",
  655. title: res.msg || "接口获取数据失败!",
  656. });
  657. }
  658. });
  659. }
  660. },
  661. // 登录
  662. login() {
  663. // 用户名,密码,域名(ip)不能为空
  664. if (
  665. this.username.trim() === "" ||
  666. this.password.trim() === "" ||
  667. this.ip.trim() === ""
  668. ) {
  669. uni.showToast({
  670. icon: "none",
  671. title: "请输入用户名,密码,域名或IP",
  672. });
  673. return;
  674. }
  675. // 域名ip正则验证
  676. let regUrl =
  677. /^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]))?$/;
  678. let regIp =
  679. /^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]))?$/;
  680. if (!regUrl.test(this.ip.trim()) && !regIp.test(this.ip.trim())) {
  681. uni.showToast({
  682. icon: "none",
  683. title: "请输入正确的域名或IP",
  684. });
  685. return;
  686. }
  687. if (this.savePassword[0].checked) {
  688. //记住密码
  689. uni.setStorageSync("ip", this.ip);
  690. } else {
  691. // 不记住密码
  692. uni.removeStorageSync('ip');
  693. }
  694. changeIP(this.ip);
  695. uni.showLoading({
  696. title: "登录中",
  697. mask: true,
  698. });
  699. let data = {
  700. username: this.username.trim(),
  701. password: this.password.trim(),
  702. type: 'APP'
  703. };
  704. data = {
  705. k: this.encryptByEnAESLogin(JSON.stringify(data))
  706. };
  707. post("/auth/login", data).then((res) => {
  708. uni.hideLoading();
  709. if (res.status == 200) {
  710. //获取角色信息
  711. let role = res.user.user.role;
  712. // 配药师和配送人员才能登录
  713. let workerFlag = role.some((item) => item.rolecode === "worker");
  714. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  715. if (!workerFlag && !pharmacistFlag) {
  716. uni.showToast({
  717. icon: "none",
  718. title: "暂无权限登录!",
  719. });
  720. return;
  721. }
  722. if (this.savePassword[0].checked) {
  723. //记住密码
  724. uni.setStorageSync("username", this.encryptByEnAES(this.username)); //存储用户名
  725. uni.setStorageSync("password", this.encryptByEnAES(this.password)); //存储密码
  726. uni.setStorageSync("savePasswordTime", Date.now()); //存储当前时间戳
  727. } else {
  728. uni.removeStorageSync('username');
  729. uni.removeStorageSync('password');
  730. uni.removeStorageSync('savePasswordTime');
  731. }
  732. uni.setStorageSync("userData", res.user);
  733. this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
  734. this.getHistorys(res.user.user.id); //获取上班历史记录
  735. this.offWork("app", this.ip);
  736. if (workerFlag) { //有配药师角色
  737. if (!res.user.user.online) {
  738. this.online = false;
  739. } else {
  740. this.online = true;
  741. let menu = res.user.menu.filter(i=>i.parentid=='278')
  742. if(menu){
  743. let isSpecimen = menu.filter(i=>i.title=='标本间')
  744. if(isSpecimen.length>0){
  745. // 建立websocket连接
  746. webHandle("specimenPort", "app");
  747. uni.setStorageSync("isSpecimen", '1');
  748. }else{
  749. // 建立websocket连接
  750. webHandle("receiptpage", "wx");
  751. uni.setStorageSync("isSpecimen", '0');
  752. }
  753. }else{
  754. // 建立websocket连接
  755. webHandle("receiptpage", "wx");
  756. uni.setStorageSync("isSpecimen", '0');
  757. }
  758. }
  759. } else {
  760. webHandle("pharmacy", "app", this.ip);
  761. }
  762. } else if (!res.status && !res.remarks) {
  763. //如果乱填写域名或ip
  764. uni.showToast({
  765. icon: "none",
  766. title: "服务器连接失败!请检查输入的域名(IP)及端口号",
  767. });
  768. } else {
  769. uni.showToast({
  770. icon: "none",
  771. title: res.remarks || "接口获取数据失败!",
  772. });
  773. }
  774. });
  775. },
  776. // 微信登录公用方法
  777. // user:当前登录用户对象
  778. // type:有值的话则是从菜单访问的
  779. // workerFlag:是否有配送人员角色
  780. // pharmacistFlag:是否有配药师角色
  781. submCommon(user, type, workerFlag, pharmacistFlag) {
  782. //从药房菜单过来的
  783. if (type === "pharmacy") {
  784. //药房来
  785. // 药房才能登录
  786. if (!pharmacistFlag) {
  787. uni.showToast({
  788. icon: "none",
  789. title: "暂无权限登录!",
  790. });
  791. return;
  792. }
  793. } else if (type === "mypage") { //从我的菜单过来的
  794. if (!workerFlag) {
  795. uni.showToast({
  796. icon: "none",
  797. title: "暂无权限登录!",
  798. });
  799. return;
  800. }
  801. } else {
  802. //正常进入
  803. if (!workerFlag && !pharmacistFlag) {
  804. uni.showToast({
  805. icon: "none",
  806. title: "暂无权限登录!",
  807. });
  808. return;
  809. }
  810. }
  811. uni.setStorageSync("userData", user);
  812. this.getWorkScheme(false, user.user.currentHospital.id); //获取当前启动中的工作分配方案
  813. this.getHistorys(user.user.id); //获取上班历史记录
  814. this.offWork("wx");
  815. // uni.setStorageSync('type', '')
  816. if (type === "pharmacy") {
  817. // 建立websocket连接
  818. webHandle("pharmacy", "wx");
  819. } else if (type === "mypage") {
  820. // 建立websocket连接
  821. webHandle("mypage", "wx");
  822. } else {
  823. if (workerFlag) { //有配送人员的角色
  824. if (!user.user.online) {
  825. this.online = false;
  826. } else {
  827. this.online = true;
  828. let menu = user.menu.filter(i=>i.parentid=='278')
  829. if(menu){
  830. let isSpecimen = menu.filter(i=>i.title=='标本间')
  831. if(isSpecimen.length>0){
  832. // 建立websocket连接
  833. webHandle("specimenPort", "app");
  834. uni.setStorageSync("isSpecimen", '1');
  835. }else{
  836. // 建立websocket连接
  837. webHandle("receiptpage", "wx");
  838. uni.setStorageSync("isSpecimen", '0');
  839. }
  840. console.log(88888,isSpecimen)
  841. }else{
  842. // 建立websocket连接
  843. webHandle("receiptpage", "wx");
  844. uni.setStorageSync("isSpecimen", '0');
  845. }
  846. }
  847. } else { //只有药房橘色
  848. webHandle("pharmacy", "wx");
  849. }
  850. }
  851. },
  852. //微信
  853. subm() {
  854. uni.showLoading({
  855. title: "登录中",
  856. mask: true,
  857. });
  858. var href = location.href; //获取链接地址
  859. console.log(href, "href");
  860. var href_wenhao = href.indexOf("?code="); //判断有没有问号,没有是-1
  861. var wenhaohoumian = location.href.split("?code="); //截取问号地址数组
  862. this.arr_last = wenhaohoumian[1]; //地址数组赋值
  863. if (href_wenhao == -1) {
  864. post("/auth/wxlogin").then((res) => {
  865. this.url = res.url;
  866. this.state = res.status;
  867. uni.setStorageSync("type", this.type); //存储来源type
  868. uni.hideLoading();
  869. if (this.state == "200") {
  870. //获取角色信息
  871. let role = res.user.user.role;
  872. let workerFlag = role.some((item) => item.rolecode === "worker");
  873. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  874. this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
  875. } else if (this.state == "501") {
  876. uni.showModal({
  877. title: '提示',
  878. content: res.remarks,
  879. showCancel: false,
  880. confirmColor: '#49b856',
  881. success: function(res) {
  882. if (res.confirm) {
  883. console.log('用户点击确定');
  884. } else if (res.cancel) {
  885. console.log('用户点击取消');
  886. }
  887. }
  888. });
  889. } else if (this.state == "555") {
  890. // 如果需要绑定账号 并且 没有微信号
  891. if (this.type) {
  892. uni.redirectTo({
  893. url: `../bindUser/bindUser?type=${this.type}`
  894. })
  895. } else {
  896. uni.redirectTo({
  897. url: `../bindUser/bindUser`
  898. })
  899. }
  900. } else {
  901. console.log(this.url, "url");
  902. // 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
  903. location.assign(this.url);
  904. }
  905. });
  906. } else if (href_wenhao != -1) {
  907. this.arr_last = this.arr_last.split("&");
  908. this.arr_last = this.arr_last[0];
  909. post("/auth/wxlogina", {
  910. code: this.arr_last,
  911. }).then((res) => {
  912. this.state = res.status;
  913. uni.hideLoading();
  914. if (this.state == "200") {
  915. this.type = uni.getStorageSync("type"); //刷新页面后获取type
  916. console.log(this.type);
  917. //获取角色信息
  918. let role = res.user.user.role;
  919. let workerFlag = role.some((item) => item.rolecode === "worker");
  920. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  921. this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
  922. } else if (this.state == "501") {
  923. uni.showModal({
  924. title: '提示',
  925. content: res.remarks,
  926. showCancel: false,
  927. confirmColor: '#49b856',
  928. success: function(res) {
  929. if (res.confirm) {
  930. console.log('用户点击确定');
  931. } else if (res.cancel) {
  932. console.log('用户点击取消');
  933. }
  934. }
  935. });
  936. } else if (this.state == "555") {
  937. this.type = uni.getStorageSync("type"); //刷新页面后获取type
  938. // 如果需要绑定账号 并且 没有微信号
  939. if (this.type) {
  940. uni.redirectTo({
  941. url: `../bindUser/bindUser?type=${this.type}`
  942. })
  943. } else {
  944. uni.redirectTo({
  945. url: `../bindUser/bindUser`
  946. })
  947. }
  948. } else {
  949. uni.showToast({
  950. icon: "none",
  951. title: res.msg || "接口获取数据失败!",
  952. });
  953. }
  954. });
  955. }
  956. },
  957. // 获取工作组合列表
  958. getCombinationById(idx, type) {
  959. console.log(this.type);
  960. if (this.zxzData.length == this.totalNum && !type) {
  961. uni.showToast({
  962. icon: "none",
  963. title: "没有更多数据了!",
  964. });
  965. this.freshing = true;
  966. return;
  967. }
  968. let data = {
  969. workAllocationQuickConfig: {
  970. workSchemeId: this.workSchemeId,
  971. },
  972. idx: idx,
  973. sum: 20,
  974. };
  975. uni.showLoading({
  976. title: "加载中",
  977. mask: true,
  978. });
  979. // 请求列表数据
  980. post("/configuration/fetchDataList/workAllocationQuickConfig", data).then(
  981. (res) => {
  982. uni.hideLoading();
  983. if (res.status == 200) {
  984. this.triggered = false;
  985. this.freshing = true;
  986. this.totalNum = res.totalNum;
  987. if (idx === 0) {
  988. res.list.forEach((item) => {
  989. let o = JSON.parse(JSON.stringify(item));
  990. item.str = JSON.stringify(o);
  991. item.checked = false;
  992. });
  993. this.zxzData = res.list;
  994. } else {
  995. res.list.forEach((item) => {
  996. let o = JSON.parse(JSON.stringify(item));
  997. item.str = JSON.stringify(o);
  998. item.checked = false;
  999. });
  1000. this.zxzData.push(...res.list);
  1001. }
  1002. } else {
  1003. uni.showToast({
  1004. icon: "none",
  1005. title: res.msg || "接口获取数据失败!",
  1006. });
  1007. }
  1008. }
  1009. );
  1010. },
  1011. //刷新
  1012. refresherrefresh() {
  1013. if (this.triggered) {
  1014. return;
  1015. }
  1016. console.log("下拉刷新");
  1017. this.triggered = true;
  1018. this.idx = 0;
  1019. this.totalNum = -1;
  1020. this.getCombinationById(0);
  1021. },
  1022. // 下拉刷新复位
  1023. refresherrestore() {
  1024. this.triggered = false;
  1025. console.log("下拉刷新复位");
  1026. },
  1027. //下拉刷新中止
  1028. refresherabort() {
  1029. this.triggered = false;
  1030. console.log("下拉刷新中止");
  1031. },
  1032. //分页,上拉加载
  1033. scrolltolower() {
  1034. if (this.freshing) {
  1035. console.log("上拉加载");
  1036. this.freshing = false;
  1037. this.getCombinationById(++this.idx);
  1038. }
  1039. },
  1040. // 滚动
  1041. scroll(e) {
  1042. if (e.detail.scrollTop < 20) {
  1043. this.scroll_refresher_enabled = true;
  1044. } else {
  1045. this.scroll_refresher_enabled = false;
  1046. }
  1047. },
  1048. // 获取启动中的工作分配方案
  1049. getWorkScheme(type, hosId) {
  1050. let postData = {
  1051. idx: 0,
  1052. workScheme: {
  1053. status: 1,
  1054. hosId
  1055. },
  1056. sum: 1,
  1057. };
  1058. post("/simple/data/fetchDataList/workScheme", postData).then((res) => {
  1059. if (res.status == 200) {
  1060. if(Array.isArray(res.list) && res.list.length){
  1061. this.workSchemeId = res.list[0].id;
  1062. this.workSchemeType = res.list[0].workType;
  1063. if (type) {
  1064. if (this.workSchemeType == 2) {
  1065. this.getCombinationById(0, "no");
  1066. } else if (this.workSchemeType == 1) {
  1067. if (uni.getStorageSync("setDeptConfg")) {
  1068. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  1069. }
  1070. }
  1071. } else {
  1072. this.getCombinationById(0);
  1073. }
  1074. }
  1075. } else {
  1076. uni.showToast({
  1077. icon: "none",
  1078. title: res.msg || "接口获取数据失败!",
  1079. });
  1080. }
  1081. });
  1082. },
  1083. // 阻止浏览器滑动
  1084. stop(e) {
  1085. e.preventDefault();
  1086. },
  1087. //获取查询参数
  1088. GetQueryString(name) {
  1089. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  1090. var r = location.search.substr(1).match(reg);
  1091. if (r != null) {
  1092. return unescape(r[2]);
  1093. }
  1094. return null;
  1095. }
  1096. },
  1097. onBackPress(e) {
  1098. // backbutton:物理按键返回
  1099. if (e.from === 'backbutton') {
  1100. return true
  1101. }
  1102. },
  1103. onHide() {
  1104. this.zxzData = [];
  1105. this.historys = [];
  1106. // #ifdef H5
  1107. document.body.removeEventListener("touchmove", this.stop, {
  1108. passive: false,
  1109. });
  1110. // #endif
  1111. },
  1112. onShow() {
  1113. console.log('onShow');
  1114. // let flag = true;
  1115. if (uni.getStorageSync("userData")) {
  1116. this.online = uni.getStorageSync("userData").user.online;
  1117. }
  1118. // #ifdef APP-PLUS
  1119. this.isApp = true;
  1120. uni.closeSocket();
  1121. // #endif
  1122. if (!this.workSchemeType) {
  1123. return;
  1124. }
  1125. // if (this.workSchemeType == 2 && !this.online) {
  1126. // let userId = uni.getStorageSync('userData').user.id;
  1127. // this.getCombinationById(this.idx, 'no');
  1128. // this.getHistorys(userId); //获取上班历史记录
  1129. // }
  1130. let userId = uni.getStorageSync("userData").user.id;
  1131. this.getWorkScheme(true, uni.getStorageSync("userData").user.currentHospital.id);
  1132. this.getHistorys(userId); //获取上班历史记录
  1133. // #ifdef H5
  1134. document.body.addEventListener("touchmove", this.stop, {
  1135. passive: false,
  1136. });
  1137. // #endif
  1138. },
  1139. onLoad(options) {
  1140. if (uni.getStorageSync("setDepts")) {
  1141. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  1142. }
  1143. console.log(options);
  1144. console.log(typeof uni.getStorageSync("savePasswordTime"));
  1145. if (Date.now() - uni.getStorageSync("savePasswordTime") < 10 * 24 * 60 * 60 * 1000) {
  1146. //记住密码,10天内有效
  1147. this.ip = uni.getStorageSync("ip") || this.ip;
  1148. if (uni.getStorageSync("username")) {
  1149. this.username = this.encryptByDeAES(uni.getStorageSync("username"));
  1150. }
  1151. if (uni.getStorageSync("password")) {
  1152. this.password = this.encryptByDeAES(uni.getStorageSync("password"));
  1153. }
  1154. }
  1155. //#ifdef H5
  1156. this.isApp = false;
  1157. this.type = options.type || "";
  1158. console.log(this.type);
  1159. if (this.GetQueryString('login') === '1') {
  1160. //H5页面账号密码登录
  1161. this.isH5AndPwd = true;
  1162. this.ip = location.origin;
  1163. } else {
  1164. this.isH5AndPwd = false;
  1165. this.subm();
  1166. }
  1167. //#endif
  1168. // #ifdef APP-PLUS
  1169. this.isApp = true;
  1170. // 通知权限 start
  1171. // var main = plus.android.runtimeMainActivity();
  1172. // var pkName = main.getPackageName();
  1173. // var NotificationManagerCompat = plus.android.importClass(
  1174. // "android.support.v4.app.NotificationManagerCompat"
  1175. // );
  1176. // var packageNames = NotificationManagerCompat.from(main);
  1177. // console.log(JSON.stringify(packageNames));
  1178. // if (packageNames.areNotificationsEnabled()) {
  1179. // console.log("已开启通知权限");
  1180. // } else {
  1181. // uni.showModal({
  1182. // title: "提示",
  1183. // content: "请先打开APP通知权限",
  1184. // showCancel: true,
  1185. // success: function(res) {
  1186. // if (res.confirm) {
  1187. // var Intent = plus.android.importClass("android.content.Intent");
  1188. // var intent = new Intent(
  1189. // "android.settings.APP_NOTIFICATION_SETTINGS"
  1190. // ); //可设置表中所有Action字段
  1191. // intent.putExtra("android.provider.extra.APP_PACKAGE", pkName);
  1192. // main.startActivity(intent);
  1193. // }
  1194. // },
  1195. // });
  1196. // }
  1197. // 通知权限 end
  1198. // #endif
  1199. },
  1200. };
  1201. </script>
  1202. <style lang="less" scoped>
  1203. .HomeItem {
  1204. height: 100vh;
  1205. .login {
  1206. height: 420rpx;
  1207. padding: 0 32rpx;
  1208. padding-top: 164rpx;
  1209. position: relative;
  1210. z-index: 999;
  1211. .savePassword {
  1212. margin-top: 32rpx;
  1213. }
  1214. /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  1215. border-color: #42b983 !important;
  1216. }
  1217. .login_input {
  1218. margin-top: 32rpx;
  1219. background-color: #ffffff;
  1220. height: 72rpx;
  1221. box-sizing: border-box;
  1222. padding: 16rpx;
  1223. }
  1224. .title {
  1225. font-size: 36rpx;
  1226. color: #42b983;
  1227. text-align: center;
  1228. }
  1229. .tips {
  1230. font-size: 28rpx;
  1231. color: red;
  1232. margin-top: 16rpx;
  1233. }
  1234. .page_item_btn {
  1235. height: 88rpx;
  1236. background-image: linear-gradient(to right, #72c172, #3bb197);
  1237. border-radius: 8rpx;
  1238. line-height: 88rpx;
  1239. color: #fff;
  1240. font-size: 36rpx;
  1241. font-weight: 700;
  1242. margin-top: 64rpx;
  1243. text-align: center;
  1244. }
  1245. }
  1246. //上班页面
  1247. .goWorkAll {
  1248. height: 100%;
  1249. display: flex;
  1250. flex-direction: column;
  1251. justify-content: space-between;
  1252. /deep/ .uni-radio-input-checked {
  1253. background-color: #42b983 !important;
  1254. border-color: #42b983 !important;
  1255. }
  1256. .goWorkSelect {
  1257. &.history {
  1258. height: 356rpx;
  1259. padding-bottom: 16rpx;
  1260. }
  1261. &.combination {
  1262. .goWorkSelect-head {
  1263. position: fixed;
  1264. top: 0;
  1265. left: 0;
  1266. width: 100%;
  1267. }
  1268. .goWorkSelect-list {
  1269. margin-top: 82rpx;
  1270. }
  1271. }
  1272. .goWorkSelect-head {
  1273. font-size: 36rpx;
  1274. padding: 16rpx 0;
  1275. color: #42b983;
  1276. border-bottom: 2rpx solid #42b983;
  1277. text-align: center;
  1278. }
  1279. .goWorkSelect-list {
  1280. &.scroll {
  1281. height: calc(100vh - 356rpx - 82rpx);
  1282. // height: calc(100vh - 82rpx);
  1283. }
  1284. .goWorkSelect-item {
  1285. height: 52rpx;
  1286. display: flex;
  1287. align-items: center;
  1288. border-bottom: 2rpx solid #e5e9ed;
  1289. padding: 16rpx;
  1290. &.relative {
  1291. position: relative;
  1292. .picker {
  1293. position: absolute;
  1294. width: 100%;
  1295. padding-left: 64rpx;
  1296. }
  1297. }
  1298. button {
  1299. font-size: 32rpx;
  1300. height: 52rpx;
  1301. line-height: 52rpx;
  1302. margin: 0;
  1303. margin-left: 16rpx;
  1304. color: rgb(7, 134, 60);
  1305. font-weight: 700;
  1306. }
  1307. }
  1308. }
  1309. }
  1310. }
  1311. .goWork {
  1312. margin: 0 auto 48rpx;
  1313. width: 240rpx;
  1314. height: 240rpx;
  1315. .goWork_btn_E {
  1316. width: 100%;
  1317. height: 100%;
  1318. background: #bee1a7;
  1319. border-radius: 30%;
  1320. .goWork_btn_W {
  1321. width: 75%;
  1322. height: 75%;
  1323. background-image: linear-gradient(to right, #72c172, #3bb197);
  1324. border-radius: 30%;
  1325. margin: 0 auto;
  1326. position: relative;
  1327. top: 12.5%;
  1328. line-height: 180rpx;
  1329. color: #fff;
  1330. font-size: 36rpx;
  1331. text-align: center;
  1332. }
  1333. }
  1334. }
  1335. .goWork_text {
  1336. width: 100%;
  1337. view {
  1338. text-align: center;
  1339. }
  1340. .goWork_text-p {
  1341. font-size: 36rpx;
  1342. margin-bottom: 48rpx;
  1343. }
  1344. }
  1345. .botImg {
  1346. height: 600rpx;
  1347. width: 100%;
  1348. position: fixed;
  1349. bottom: 0;
  1350. .img {
  1351. height: 100%;
  1352. background: url("../../static/img/BG.png") no-repeat center center;
  1353. background-size: 100% 100%;
  1354. }
  1355. }
  1356. }
  1357. </style>