homePage.vue 46 KB

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