homePage.vue 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349
  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: "请求失败",
  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: "请求失败",
  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: "请求失败",
  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: "请求失败",
  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: "请求失败",
  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: "请求失败",
  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. get("/auth/getSysNameAndLogo").then((resultLog) => {
  695. let data = {
  696. username: this.username.trim(),
  697. password: this.password.trim(),
  698. type: 'APP'
  699. };
  700. if(resultLog.project !== 'tongji'){
  701. data = {
  702. k: this.encryptByEnAESLogin(JSON.stringify(data))
  703. };
  704. }
  705. post("/auth/login", data).then((res) => {
  706. uni.hideLoading();
  707. if (res.status == 200) {
  708. //获取角色信息
  709. let role = res.user.user.role;
  710. // 配药师和配送人员才能登录
  711. let workerFlag = role.some((item) => item.rolecode === "worker");
  712. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  713. if (!workerFlag && !pharmacistFlag) {
  714. uni.showToast({
  715. icon: "none",
  716. title: "暂无权限登录!",
  717. });
  718. return;
  719. }
  720. if (this.savePassword[0].checked) {
  721. //记住密码
  722. uni.setStorageSync("username", this.encryptByEnAES(this.username)); //存储用户名
  723. uni.setStorageSync("password", this.encryptByEnAES(this.password)); //存储密码
  724. uni.setStorageSync("savePasswordTime", Date.now()); //存储当前时间戳
  725. } else {
  726. uni.removeStorageSync('username');
  727. uni.removeStorageSync('password');
  728. uni.removeStorageSync('savePasswordTime');
  729. }
  730. uni.setStorageSync("userData", res.user);
  731. this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
  732. this.getHistorys(res.user.user.id); //获取上班历史记录
  733. this.offWork("app", this.ip);
  734. if (workerFlag) { //有配药师角色
  735. if (!res.user.user.online) {
  736. this.online = false;
  737. } else {
  738. this.online = true;
  739. // 建立websocket连接
  740. webHandle("receiptpage", "app", this.ip);
  741. }
  742. } else {
  743. webHandle("pharmacy", "app", this.ip);
  744. }
  745. } else if (!res.status && !res.remarks) {
  746. //如果乱填写域名或ip
  747. uni.showToast({
  748. icon: "none",
  749. title: "服务器连接失败!请检查输入的域名(IP)及端口号",
  750. });
  751. } else {
  752. uni.showToast({
  753. icon: "none",
  754. title: res.remarks ? res.remarks : "请求失败",
  755. });
  756. }
  757. });
  758. })
  759. },
  760. // 微信登录公用方法
  761. // user:当前登录用户对象
  762. // type:有值的话则是从菜单访问的
  763. // workerFlag:是否有配送人员角色
  764. // pharmacistFlag:是否有配药师角色
  765. submCommon(user, type, workerFlag, pharmacistFlag) {
  766. //从药房菜单过来的
  767. if (type === "pharmacy") {
  768. //药房来
  769. // 药房才能登录
  770. if (!pharmacistFlag) {
  771. uni.showToast({
  772. icon: "none",
  773. title: "暂无权限登录!",
  774. });
  775. return;
  776. }
  777. } else if (type === "mypage") { //从我的菜单过来的
  778. if (!workerFlag) {
  779. uni.showToast({
  780. icon: "none",
  781. title: "暂无权限登录!",
  782. });
  783. return;
  784. }
  785. } else {
  786. //正常进入
  787. if (!workerFlag && !pharmacistFlag) {
  788. uni.showToast({
  789. icon: "none",
  790. title: "暂无权限登录!",
  791. });
  792. return;
  793. }
  794. }
  795. uni.setStorageSync("userData", user);
  796. this.getWorkScheme(false, user.user.currentHospital.id); //获取当前启动中的工作分配方案
  797. this.getHistorys(user.user.id); //获取上班历史记录
  798. this.offWork("wx");
  799. // uni.setStorageSync('type', '')
  800. if (type === "pharmacy") {
  801. // 建立websocket连接
  802. webHandle("pharmacy", "wx");
  803. } else if (type === "mypage") {
  804. // 建立websocket连接
  805. webHandle("mypage", "wx");
  806. } else {
  807. if (workerFlag) { //有配送人员的角色
  808. if (!user.user.online) {
  809. this.online = false;
  810. } else {
  811. this.online = true;
  812. // 建立websocket连接
  813. webHandle("receiptpage", "wx");
  814. }
  815. } else { //只有药房橘色
  816. webHandle("pharmacy", "wx");
  817. }
  818. }
  819. },
  820. //微信
  821. subm() {
  822. uni.showLoading({
  823. title: "登录中",
  824. mask: true,
  825. });
  826. var href = location.href; //获取链接地址
  827. console.log(href, "href");
  828. var href_wenhao = href.indexOf("?code="); //判断有没有问号,没有是-1
  829. var wenhaohoumian = location.href.split("?code="); //截取问号地址数组
  830. this.arr_last = wenhaohoumian[1]; //地址数组赋值
  831. if (href_wenhao == -1) {
  832. post("/auth/wxlogin").then((res) => {
  833. this.url = res.url;
  834. this.state = res.status;
  835. uni.setStorageSync("type", this.type); //存储来源type
  836. uni.hideLoading();
  837. if (this.state == "200") {
  838. //获取角色信息
  839. let role = res.user.user.role;
  840. let workerFlag = role.some((item) => item.rolecode === "worker");
  841. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  842. this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
  843. } else if (this.state == "501") {
  844. uni.showModal({
  845. title: '提示',
  846. content: res.remarks,
  847. showCancel: false,
  848. confirmColor: '#49b856',
  849. success: function(res) {
  850. if (res.confirm) {
  851. console.log('用户点击确定');
  852. } else if (res.cancel) {
  853. console.log('用户点击取消');
  854. }
  855. }
  856. });
  857. } else if (this.state == "555") {
  858. // 如果需要绑定账号 并且 没有微信号
  859. if (this.type) {
  860. uni.redirectTo({
  861. url: `../bindUser/bindUser?type=${this.type}`
  862. })
  863. } else {
  864. uni.redirectTo({
  865. url: `../bindUser/bindUser`
  866. })
  867. }
  868. } else {
  869. console.log(this.url, "url");
  870. // 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
  871. location.assign(this.url);
  872. }
  873. });
  874. } else if (href_wenhao != -1) {
  875. this.arr_last = this.arr_last.split("&");
  876. this.arr_last = this.arr_last[0];
  877. post("/auth/wxlogina", {
  878. code: this.arr_last,
  879. }).then((res) => {
  880. this.state = res.status;
  881. uni.hideLoading();
  882. if (this.state == "200") {
  883. this.type = uni.getStorageSync("type"); //刷新页面后获取type
  884. console.log(this.type);
  885. //获取角色信息
  886. let role = res.user.user.role;
  887. let workerFlag = role.some((item) => item.rolecode === "worker");
  888. let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
  889. this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
  890. } else if (this.state == "501") {
  891. uni.showModal({
  892. title: '提示',
  893. content: res.remarks,
  894. showCancel: false,
  895. confirmColor: '#49b856',
  896. success: function(res) {
  897. if (res.confirm) {
  898. console.log('用户点击确定');
  899. } else if (res.cancel) {
  900. console.log('用户点击取消');
  901. }
  902. }
  903. });
  904. } else if (this.state == "555") {
  905. this.type = uni.getStorageSync("type"); //刷新页面后获取type
  906. // 如果需要绑定账号 并且 没有微信号
  907. if (this.type) {
  908. uni.redirectTo({
  909. url: `../bindUser/bindUser?type=${this.type}`
  910. })
  911. } else {
  912. uni.redirectTo({
  913. url: `../bindUser/bindUser`
  914. })
  915. }
  916. } else {
  917. uni.showToast({
  918. icon: "none",
  919. title: "请求失败",
  920. });
  921. }
  922. });
  923. }
  924. },
  925. // 获取工作组合列表
  926. getCombinationById(idx, type) {
  927. console.log(this.type);
  928. if (this.zxzData.length == this.totalNum && !type) {
  929. uni.showToast({
  930. icon: "none",
  931. title: "没有更多数据了!",
  932. });
  933. this.freshing = true;
  934. return;
  935. }
  936. let data = {
  937. workAllocationQuickConfig: {
  938. workSchemeId: this.workSchemeId,
  939. },
  940. idx: idx,
  941. sum: 20,
  942. };
  943. uni.showLoading({
  944. title: "加载中",
  945. mask: true,
  946. });
  947. // 请求列表数据
  948. post("/configuration/fetchDataList/workAllocationQuickConfig", data).then(
  949. (res) => {
  950. uni.hideLoading();
  951. if (res.status == 200) {
  952. this.triggered = false;
  953. this.freshing = true;
  954. this.totalNum = res.totalNum;
  955. if (idx === 0) {
  956. res.list.forEach((item) => {
  957. let o = JSON.parse(JSON.stringify(item));
  958. item.str = JSON.stringify(o);
  959. item.checked = false;
  960. });
  961. this.zxzData = res.list;
  962. } else {
  963. res.list.forEach((item) => {
  964. let o = JSON.parse(JSON.stringify(item));
  965. item.str = JSON.stringify(o);
  966. item.checked = false;
  967. });
  968. this.zxzData.push(...res.list);
  969. }
  970. } else {
  971. uni.showToast({
  972. icon: "none",
  973. title: "请求失败!",
  974. });
  975. }
  976. }
  977. );
  978. },
  979. //刷新
  980. refresherrefresh() {
  981. if (this.triggered) {
  982. return;
  983. }
  984. console.log("下拉刷新");
  985. this.triggered = true;
  986. this.idx = 0;
  987. this.totalNum = -1;
  988. this.getCombinationById(0);
  989. },
  990. // 下拉刷新复位
  991. refresherrestore() {
  992. this.triggered = false;
  993. console.log("下拉刷新复位");
  994. },
  995. //下拉刷新中止
  996. refresherabort() {
  997. this.triggered = false;
  998. console.log("下拉刷新中止");
  999. },
  1000. //分页,上拉加载
  1001. scrolltolower() {
  1002. if (this.freshing) {
  1003. console.log("上拉加载");
  1004. this.freshing = false;
  1005. this.getCombinationById(++this.idx);
  1006. }
  1007. },
  1008. // 滚动
  1009. scroll(e) {
  1010. if (e.detail.scrollTop < 20) {
  1011. this.scroll_refresher_enabled = true;
  1012. } else {
  1013. this.scroll_refresher_enabled = false;
  1014. }
  1015. },
  1016. // 获取启动中的工作分配方案
  1017. getWorkScheme(type, hosId) {
  1018. let postData = {
  1019. idx: 0,
  1020. workScheme: {
  1021. status: 1,
  1022. hosId
  1023. },
  1024. sum: 1,
  1025. };
  1026. post("/simple/data/fetchDataList/workScheme", postData).then((res) => {
  1027. if (res.status == 200) {
  1028. if(Array.isArray(res.list) && res.list.length){
  1029. this.workSchemeId = res.list[0].id;
  1030. this.workSchemeType = res.list[0].workType;
  1031. if (type) {
  1032. if (this.workSchemeType == 2) {
  1033. this.getCombinationById(0, "no");
  1034. } else if (this.workSchemeType == 1) {
  1035. if (uni.getStorageSync("setDeptConfg")) {
  1036. uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
  1037. }
  1038. }
  1039. } else {
  1040. this.getCombinationById(0);
  1041. }
  1042. }
  1043. } else {
  1044. uni.showToast({
  1045. icon: "none",
  1046. title: "请求失败!",
  1047. });
  1048. }
  1049. });
  1050. },
  1051. // 阻止浏览器滑动
  1052. stop(e) {
  1053. e.preventDefault();
  1054. },
  1055. //获取查询参数
  1056. GetQueryString(name) {
  1057. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  1058. var r = location.search.substr(1).match(reg);
  1059. if (r != null) {
  1060. return unescape(r[2]);
  1061. }
  1062. return null;
  1063. }
  1064. },
  1065. onHide() {
  1066. this.zxzData = [];
  1067. this.historys = [];
  1068. // #ifdef H5
  1069. document.body.removeEventListener("touchmove", this.stop, {
  1070. passive: false,
  1071. });
  1072. // #endif
  1073. },
  1074. onShow() {
  1075. console.log('onShow');
  1076. // let flag = true;
  1077. if (uni.getStorageSync("userData")) {
  1078. this.online = uni.getStorageSync("userData").user.online;
  1079. }
  1080. if (!this.workSchemeType) {
  1081. return;
  1082. }
  1083. // if (this.workSchemeType == 2 && !this.online) {
  1084. // let userId = uni.getStorageSync('userData').user.id;
  1085. // this.getCombinationById(this.idx, 'no');
  1086. // this.getHistorys(userId); //获取上班历史记录
  1087. // }
  1088. let userId = uni.getStorageSync("userData").user.id;
  1089. this.getWorkScheme(true, uni.getStorageSync("userData").user.currentHospital.id);
  1090. this.getHistorys(userId); //获取上班历史记录
  1091. // #ifdef APP-PLUS
  1092. uni.closeSocket();
  1093. // #endif
  1094. // #ifdef H5
  1095. document.body.addEventListener("touchmove", this.stop, {
  1096. passive: false,
  1097. });
  1098. // #endif
  1099. },
  1100. onLoad(options) {
  1101. if (uni.getStorageSync("setDepts")) {
  1102. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  1103. }
  1104. console.log(options);
  1105. console.log(typeof uni.getStorageSync("savePasswordTime"));
  1106. if (Date.now() - uni.getStorageSync("savePasswordTime") < 10 * 24 * 60 * 60 * 1000) {
  1107. //记住密码,10天内有效
  1108. this.ip = uni.getStorageSync("ip") || this.ip;
  1109. if (uni.getStorageSync("username")) {
  1110. this.username = this.encryptByDeAES(uni.getStorageSync("username"));
  1111. }
  1112. if (uni.getStorageSync("password")) {
  1113. this.password = this.encryptByDeAES(uni.getStorageSync("password"));
  1114. }
  1115. }
  1116. //#ifdef H5
  1117. this.isApp = false;
  1118. this.type = options.type || "";
  1119. console.log(this.type);
  1120. if (this.GetQueryString('login') === '1') {
  1121. //H5页面账号密码登录
  1122. this.isH5AndPwd = true;
  1123. this.ip = location.origin;
  1124. } else {
  1125. this.isH5AndPwd = false;
  1126. this.subm();
  1127. }
  1128. //#endif
  1129. // #ifdef APP-PLUS
  1130. this.isApp = true;
  1131. // 通知权限 start
  1132. // var main = plus.android.runtimeMainActivity();
  1133. // var pkName = main.getPackageName();
  1134. // var NotificationManagerCompat = plus.android.importClass(
  1135. // "android.support.v4.app.NotificationManagerCompat"
  1136. // );
  1137. // var packageNames = NotificationManagerCompat.from(main);
  1138. // console.log(JSON.stringify(packageNames));
  1139. // if (packageNames.areNotificationsEnabled()) {
  1140. // console.log("已开启通知权限");
  1141. // } else {
  1142. // uni.showModal({
  1143. // title: "提示",
  1144. // content: "请先打开APP通知权限",
  1145. // showCancel: true,
  1146. // success: function(res) {
  1147. // if (res.confirm) {
  1148. // var Intent = plus.android.importClass("android.content.Intent");
  1149. // var intent = new Intent(
  1150. // "android.settings.APP_NOTIFICATION_SETTINGS"
  1151. // ); //可设置表中所有Action字段
  1152. // intent.putExtra("android.provider.extra.APP_PACKAGE", pkName);
  1153. // main.startActivity(intent);
  1154. // }
  1155. // },
  1156. // });
  1157. // }
  1158. // 通知权限 end
  1159. // #endif
  1160. },
  1161. };
  1162. </script>
  1163. <style lang="less" scoped>
  1164. .HomeItem {
  1165. height: 100vh;
  1166. .login {
  1167. height: 420rpx;
  1168. padding: 0 32rpx;
  1169. padding-top: 164rpx;
  1170. position: relative;
  1171. z-index: 999;
  1172. .savePassword {
  1173. margin-top: 32rpx;
  1174. }
  1175. /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  1176. border-color: #42b983 !important;
  1177. }
  1178. .login_input {
  1179. margin-top: 32rpx;
  1180. background-color: #ffffff;
  1181. height: 72rpx;
  1182. box-sizing: border-box;
  1183. padding: 16rpx;
  1184. }
  1185. .title {
  1186. font-size: 36rpx;
  1187. color: #42b983;
  1188. text-align: center;
  1189. }
  1190. .tips {
  1191. font-size: 28rpx;
  1192. color: red;
  1193. margin-top: 16rpx;
  1194. }
  1195. .page_item_btn {
  1196. height: 88rpx;
  1197. background-image: linear-gradient(to right, #72c172, #3bb197);
  1198. border-radius: 8rpx;
  1199. line-height: 88rpx;
  1200. color: #fff;
  1201. font-size: 36rpx;
  1202. font-weight: 700;
  1203. margin-top: 64rpx;
  1204. text-align: center;
  1205. }
  1206. }
  1207. //上班页面
  1208. .goWorkAll {
  1209. height: 100%;
  1210. display: flex;
  1211. flex-direction: column;
  1212. justify-content: space-between;
  1213. /deep/ .uni-radio-input-checked {
  1214. background-color: #42b983 !important;
  1215. border-color: #42b983 !important;
  1216. }
  1217. .goWorkSelect {
  1218. &.history {
  1219. height: 356rpx;
  1220. padding-bottom: 16rpx;
  1221. }
  1222. &.combination {
  1223. .goWorkSelect-head {
  1224. position: fixed;
  1225. top: 0;
  1226. left: 0;
  1227. width: 100%;
  1228. }
  1229. .goWorkSelect-list {
  1230. margin-top: 82rpx;
  1231. }
  1232. }
  1233. .goWorkSelect-head {
  1234. font-size: 36rpx;
  1235. padding: 16rpx 0;
  1236. color: #42b983;
  1237. border-bottom: 2rpx solid #42b983;
  1238. text-align: center;
  1239. }
  1240. .goWorkSelect-list {
  1241. &.scroll {
  1242. height: calc(100vh - 356rpx - 82rpx);
  1243. // height: calc(100vh - 82rpx);
  1244. }
  1245. .goWorkSelect-item {
  1246. height: 52rpx;
  1247. display: flex;
  1248. align-items: center;
  1249. border-bottom: 2rpx solid #e5e9ed;
  1250. padding: 16rpx;
  1251. &.relative {
  1252. position: relative;
  1253. .picker {
  1254. position: absolute;
  1255. width: 100%;
  1256. padding-left: 64rpx;
  1257. }
  1258. }
  1259. button {
  1260. font-size: 32rpx;
  1261. height: 52rpx;
  1262. line-height: 52rpx;
  1263. margin: 0;
  1264. margin-left: 16rpx;
  1265. color: rgb(7, 134, 60);
  1266. font-weight: 700;
  1267. }
  1268. }
  1269. }
  1270. }
  1271. }
  1272. .goWork {
  1273. margin: 0 auto 48rpx;
  1274. width: 240rpx;
  1275. height: 240rpx;
  1276. .goWork_btn_E {
  1277. width: 100%;
  1278. height: 100%;
  1279. background: #bee1a7;
  1280. border-radius: 30%;
  1281. .goWork_btn_W {
  1282. width: 75%;
  1283. height: 75%;
  1284. background-image: linear-gradient(to right, #72c172, #3bb197);
  1285. border-radius: 30%;
  1286. margin: 0 auto;
  1287. position: relative;
  1288. top: 12.5%;
  1289. line-height: 180rpx;
  1290. color: #fff;
  1291. font-size: 36rpx;
  1292. text-align: center;
  1293. }
  1294. }
  1295. }
  1296. .goWork_text {
  1297. width: 100%;
  1298. view {
  1299. text-align: center;
  1300. }
  1301. .goWork_text-p {
  1302. font-size: 36rpx;
  1303. margin-bottom: 48rpx;
  1304. }
  1305. }
  1306. .botImg {
  1307. height: 600rpx;
  1308. width: 100%;
  1309. position: fixed;
  1310. bottom: 0;
  1311. .img {
  1312. height: 100%;
  1313. background: url("../../static/img/BG.png") no-repeat center center;
  1314. background-size: 100% 100%;
  1315. }
  1316. }
  1317. }
  1318. </style>