homePage.vue 46 KB

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