homePage.vue 44 KB

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