1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- <template>
- <view class="HomeItem">
- <view v-if="!online && online !== undefined && workSchemeType == 1">
- <view class="goWork" @click="GoWork()">
- <view class="goWork_btn_E">
- <view class="goWork_btn_W"> 上班 </view>
- </view>
- </view>
- <view class="goWork_text">
- <view class="goWork_text-p">上班提醒</view>
- <view>请点击" 上班 "开始抢单!</view>
- </view>
- </view>
- <view v-if="!online && online !== undefined && workSchemeType == 2" class="goWorkAll">
- <view class="goWorkSelect combination">
- <view class="goWorkSelect-head">上班选择工作组合</view>
- <scroll-view class="goWorkSelect-list scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
- :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
- @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort" @scroll="scroll">
- <radio-group @change="radioChange1">
- <label class="goWorkSelect-item" v-for="item in zxzData" :key="item.str">
- <radio :value="item.str" :checked="item.checked" />
- <view>{{ item.configName }}</view>
- </label>
- </radio-group>
- </scroll-view>
- </view>
- <view class="goWorkSelect history">
- <view class="goWorkSelect-head"> 历史上班记录 </view>
- <view class="goWorkSelect-list">
- <radio-group @change="radioChange2">
- <label class="goWorkSelect-item" v-for="(item, index) in historys" :key="index">
- <radio :value="item.str" :checked="item.checked" />
- <view>{{ item.useTime }}上班记录快捷上班</view>
- <button @click="lock(item)">
- {{ item.locking == 1 ? "解锁" : "锁定" }}
- </button>
- </label>
- </radio-group>
- </view>
- </view>
- </view>
- <!-- APP或H5账号密码登录页面 start -->
- <view class="login" v-if="!workSchemeType && (isApp||isH5AndPwd)">
- <view class="title"> 转运系统登录 </view>
- <input class="login_input" v-model="username" placeholder="请输入用户名" />
- <input class="login_input" password v-model="password" placeholder="请输入密码" />
- <input class="login_input" v-show="!isH5AndPwd" v-model="ip" placeholder="请输入域名或IP地址,如:http(s)://192.168.3.108" />
- <view class="page_item_btn" @click="login()"> 登录 </view>
- </view>
- <!-- APP或H5账号密码登录页面 end -->
- <view class="botImg" v-if="online || (!online && online !== undefined && workSchemeType == 1)">
- <view class="img"></view>
- </view>
- <!-- 弹窗 -->
- <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
- @ok="ok" @cancel="cancel" :operate="models.operate" :phone="models.phone" @know="know"></showModel>
- <!-- 锁定-弹窗 -->
- <showModel :title="modelsLock.title" :icon="modelsLock.icon" :disjunctor="modelsLock.disjunctor"
- :content="modelsLock.content" @ok="okLock" @cancel="cancelLock" :operate="modelsLock.operate" @know="knowLock">
- </showModel>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- changeIP,
- webHandle
- } from "../../http/http.js";
- import showModel from "../../components/showModel/showModel.vue";
- export default {
- data() {
- return {
- //#ifdef H5
- type: "",
- //#endif
- // 是否上班了
- online: undefined,
- // 是否是app
- isApp: false,
- // 是否是H5,账号密码登录
- isH5AndPwd: false,
- // 用户名
- username: "",
- // 密码
- password: "",
- //ip地址或域名
- ip: "hsms.dashitech.com",
- scroll_refresher_enabled: true, //是否开启自定义下拉刷新
- triggered: false, //下拉刷新状态
- freshing: false, //上拉加载开关
- scroll_top: 0, //距离顶部的距离
- //分页页码
- idx: 0,
- // 列表项总数
- totalNum: -1,
- // 上班选择工作组合列表
- zxzData: [],
- workSchemeId: "", //启动中工作分配方案id
- workSchemeType: "", //启动中工作分配方案类型
- ruleType: "", //工作分配方案规则、、例如自由抢单等
- // 上班历史记录列表
- historys: [],
- // 弹窗model
- models: {
- disjunctor: false,
- },
- //锁定的选项
- itemLock: {},
- // 弹窗model--锁定
- modelsLock: {
- disjunctor: false,
- },
- };
- },
- methods: {
- // 锁定
- lock(data) {
- console.log(data);
- this.itemLock = data;
- this.modelsLock = {
- disjunctor: true,
- title: "提示",
- content: `是否${
- this.itemLock.locking == 1 ? "解锁" : "锁定"
- }该上班记录`,
- icon: "warn",
- operate: {
- ok: "确定",
- cancel: "取消",
- },
- };
- },
- //知道了
- knowLock() {
- this.modelsLock.disjunctor = false;
- let userId = uni.getStorageSync("userData").user.id;
- this.getHistorys(userId); //获取上班历史记录
- },
- //确定
- okLock() {
- this.modelsLock.disjunctor = false;
- let postData = {
- workConfigHistory: {
- id: this.itemLock.id,
- locking: this.itemLock.locking == 1 ? 0 : 1,
- },
- };
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/configuration/updData/workConfigHistory", postData).then(
- (result) => {
- uni.hideLoading();
- if (result.status == 200) {
- this.modelsLock = {
- disjunctor: true,
- title: "提示",
- content: `${this.itemLock.locking == 0 ? "锁定" : "解锁"}成功`,
- icon: "success",
- operate: {
- know: "知道了",
- },
- };
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败",
- });
- }
- }
- );
- },
- //取消
- cancelLock() {
- this.modelsLock.disjunctor = false;
- },
- // 选择历史上班记录
- radioChange2(value) {
- this.objHistory = JSON.parse(value.target.value);
- let depts = this.objHistory.deptList.map((item) => item.dept).join();
- this.models = {
- disjunctor: true,
- title: "提示",
- content: `组合名称是【${this.objHistory.workAllocationQuick.configName}】;选择的科室是【${depts}】`,
- icon: "warn",
- operate: {
- ok: "快捷上班",
- cancel: "取消",
- },
- };
- },
- //知道了
- know() {
- this.models.disjunctor = false;
- },
- //确定
- ok() {
- this.models.disjunctor = false;
- this.ruleType = 3;
- uni.setStorageSync("setDepts", this.objHistory.deptList); //存科室列表
- uni.setStorageSync("setDeptConfg", {
- //存设置科室的配置信息
- configName: this.objHistory.workAllocationQuick.configName, //组合名称
- workSchemeType: 2, //方案类型
- ruleType: 3, //方案规则,科室绑定人员
- id: this.objHistory.workAllocationQuick.id, //组合id
- classesId: this.objHistory.classId,
- });
- this.GoWork();
- },
- //取消
- cancel() {
- this.models.disjunctor = false;
- let userId = uni.getStorageSync("userData").user.id;
- this.historys = [];
- this.getHistorys(userId); //获取上班历史记录
- },
- // 获取上班历史记录
- getHistorys(id) {
- let postData = {
- idx: 0,
- sum: 3,
- workConfigHistory: {
- hosId: uni.getStorageSync("userData").user.currentHospital.id,
- user: {
- id: id,
- },
- },
- };
- post("/configuration/fetchDataList/workConfigHistory", postData).then(
- (res) => {
- if (res.status == 200) {
- this.historys = res.list;
- this.historys.forEach((item) => {
- let d = new Date(item.useTime);
- let month = (d.getMonth() + 1 + "").padStart(2, "0");
- let day = (d.getDate() + "").padStart(2, "0");
- item.useTime = `${month}月${day}日`;
- let o = JSON.parse(JSON.stringify(item));
- item.str = JSON.stringify(o);
- item.checked = false;
- });
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败",
- });
- }
- }
- );
- },
- // 选择上班快捷组合
- radioChange1(value) {
- let obj = JSON.parse(value.target.value);
- console.log(obj);
- this.ruleType = obj.ruleType;
- if (obj.ruleType == 1) {
- //自由抢单,直接上班
- if (uni.getStorageSync("setDeptConfg")) {
- uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
- }
- this.GoWork();
- } else if (obj.ruleType == 3) {
- //科室绑定人员,进入设置科室界面
- uni.setStorageSync("setDeptConfg", {
- //存设置科室的配置信息
- configName: obj.configName,
- workSchemeType: this.workSchemeType,
- ruleType: obj.ruleType,
- id: obj.id,
- classesId: obj.classes.id,
- });
- uni.navigateTo({
- url: `../setDept/setDept?configName=${obj.configName}&id=${obj.id}`,
- });
- }
- },
- // 连接上下班的websocket baba type如果是wx则是微信,app则是app;有app必有ip
- offWork(type, ip) {
- let ipp, wws;
- if (type == "wx") {
- wws = document.location.protocol === "http:" ? "ws" : "wss"; //ws协议
- ipp = document.domain;
- } else if (type == "app") {
- wws = ip.split(":")[0] === "http" ? "ws" : "wss"; //ws协议
- ipp = ip.split(":")[1];
- }
- console.log(ipp, wws);
- uni.connectSocket({
- url: `${wws}://${ipp}:8080/webSocket/message/onlineStatus`,
- // url: `${wws}://192.168.3.74:8080/webSocket/message/onlineStatus`,
- });
- uni.onSocketOpen(function(res) {
- console.log("WebSocket连接已打开!");
- let userid = uni.getStorageSync("userData").user.id;
- uni.sendSocketMessage({
- data: JSON.stringify({
- userid,
- }),
- success: function(res) {
- console.log(res, "传参");
- },
- fail: function(err) {
- console.log(err, "传参错误");
- },
- });
- });
- uni.onSocketError(function(res) {
- console.log("WebSocket连接打开失败,请检查!");
- });
- uni.onSocketMessage((res) => {
- console.log("收到服务器内容:" + res.data);
- if (res.data == "ok") {
- this.goOffWork();
- }
- });
- },
- // 下班
- goOffWork() {
- let setDeptConfg = uni.getStorageSync("setDeptConfg");
- if (setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 3) {
- post("/auth/onOrOffLine", {
- type: "off",
- customWorking: "off",
- classId: uni.getStorageSync("setDeptConfg").classesId
- }).then((res) => {
- if (res.status == 200) {
- if (uni.getStorageSync("setDeptConfg")) {
- uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
- }
- uni.showToast({
- icon: "none",
- title: "您已被强制下班!",
- mask: true,
- duration: 5000,
- });
- setTimeout(() => {
- uni.redirectTo({
- url: "../mypage/mypage",
- });
- }, 5000);
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败",
- });
- }
- });
- } else {
- post("/auth/onOrOffLine", {
- type: "off",
- classId: uni.getStorageSync("setDeptConfg").classesId
- }).then((res) => {
- if (res.status == 200) {
- if (uni.getStorageSync("setDeptConfg")) {
- uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
- }
- uni.showToast({
- icon: "none",
- title: "您已被强制下班!",
- mask: true,
- duration: 5000,
- });
- setTimeout(() => {
- uni.redirectTo({
- url: "../mypage/mypage",
- });
- }, 5000);
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败",
- });
- }
- });
- }
- },
- // 上班
- GoWork() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- if (this.workSchemeType == 2 && this.ruleType == 3) {
- let obj = uni.getStorageSync("setDeptConfg");
- let depts = this.objHistory.deptList.map((item) => item.id).join();
- let userId = uni.getStorageSync("userData").user.id;
- post("/auth/onOrOffLine", {
- type: "on",
- customWorking: "on",
- quickId: obj.id,
- deptIds: depts,
- userId: userId,
- classId: uni.getStorageSync("setDeptConfg").classesId
- }).then((result) => {
- uni.hideLoading();
- if (result.status == 200) {
- let obj = uni.getStorageSync("userData");
- obj.user.online = true;
- uni.setStorageSync("userData", obj);
- uni.redirectTo({
- url: "../receiptpage/receiptpage",
- });
- } else if (result.status == 504) {
- let dept = result.department.dept;
- let user = result.user.name;
- let phone = result.user.phone;
- this.models = {
- disjunctor: true,
- title: "提示",
- content: `您选择的科室已经被使用,请换个科室,或者联系:科室[${dept}]人员[${user}]号码[${phone}] 切换科室解决`,
- icon: "warn",
- phone,
- operate: {
- know: "知道了",
- },
- };
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败",
- });
- }
- });
- } else {
- post("/auth/onOrOffLine", {
- type: "on",
- classId: uni.getStorageSync("setDeptConfg").classesId
- }).then((res) => {
- uni.hideLoading();
- if (res.status == 200) {
- let obj = uni.getStorageSync("userData");
- obj.user.online = true;
- uni.setStorageSync("userData", obj);
- uni.redirectTo({
- url: "../receiptpage/receiptpage",
- });
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败",
- });
- }
- });
- }
- },
- // 登录
- login() {
- // 用户名,密码,域名(ip)不能为空
- if (
- this.username.trim() === "" ||
- this.password.trim() === "" ||
- this.ip.trim() === ""
- ) {
- uni.showToast({
- icon: "none",
- title: "请输入用户名,密码,域名或IP",
- });
- return;
- }
- // 域名ip正则验证
- let regUrl =
- /^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]))?$/;
- let regIp =
- /^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]))?$/;
- if (!regUrl.test(this.ip.trim()) && !regIp.test(this.ip.trim())) {
- uni.showToast({
- icon: "none",
- title: "请输入正确的域名或IP",
- });
- return;
- }
- uni.setStorageSync("ip", this.ip);
- changeIP(this.ip);
- uni.showLoading({
- title: "登录中",
- mask: true,
- });
- let data = {
- username: this.username.trim(),
- password: this.password.trim(),
- type: 'APP'
- };
- post("/auth/login", data).then((res) => {
- uni.hideLoading();
- if (res.status == 200) {
- //获取角色信息
- let role = res.user.user.role;
- // 配药师和支助人员才能登录
- let workerFlag = role.some((item) => item.rolecode === "worker");
- let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
- if (!workerFlag && !pharmacistFlag) {
- uni.showToast({
- icon: "none",
- title: "暂无权限登录!",
- });
- return;
- }
- uni.setStorageSync("userData", res.user);
- uni.setStorageSync("username", this.username); //存储用户名
- uni.setStorageSync("password", this.password); //存储密码
- this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
- this.getHistorys(res.user.user.id); //获取上班历史记录
- this.offWork("app", this.ip);
- if (workerFlag) { //有配药师角色
- if (!res.user.user.online) {
- this.online = false;
- } else {
- this.online = true;
- // 建立websocket连接
- webHandle("receiptpage", "app", this.ip);
- }
- } else {
- webHandle("pharmacy", "app", this.ip);
- }
- } else if (!res.status && !res.remarks) {
- //如果乱填写域名或ip
- uni.showToast({
- icon: "none",
- title: "服务器连接失败!请检查输入的域名(IP)及端口号",
- });
- } else {
- uni.showToast({
- icon: "none",
- title: res.remarks ? res.remarks : "请求失败",
- });
- }
- });
- },
- // 微信登录公用方法
- // user:当前登录用户对象
- // type:有值的话则是从菜单访问的
- // workerFlag:是否有支助人员角色
- // pharmacistFlag:是否有配药师角色
- submCommon(user, type, workerFlag, pharmacistFlag) {
- //从药房菜单过来的
- if (type === "pharmacy") {
- //药房来
- // 药房才能登录
- if (!pharmacistFlag) {
- uni.showToast({
- icon: "none",
- title: "暂无权限登录!",
- });
- return;
- }
- } else if (type === "mypage") { //从我的菜单过来的
- if (!workerFlag) {
- uni.showToast({
- icon: "none",
- title: "暂无权限登录!",
- });
- return;
- }
- } else {
- //正常进入
- if (!workerFlag && !pharmacistFlag) {
- uni.showToast({
- icon: "none",
- title: "暂无权限登录!",
- });
- return;
- }
- }
- uni.setStorageSync("userData", user);
- this.getWorkScheme(false, user.user.currentHospital.id); //获取当前启动中的工作分配方案
- this.getHistorys(user.user.id); //获取上班历史记录
- this.offWork("wx");
- // uni.setStorageSync('type', '')
- if (type === "pharmacy") {
- // 建立websocket连接
- webHandle("pharmacy", "wx");
- } else if (type === "mypage") {
- // 建立websocket连接
- webHandle("mypage", "wx");
- } else {
- if (workerFlag) { //有支助人员的角色
- if (!user.user.online) {
- this.online = false;
- } else {
- this.online = true;
- // 建立websocket连接
- webHandle("receiptpage", "wx");
- }
- } else { //只有药房橘色
- webHandle("pharmacy", "wx");
- }
- }
- },
- //微信
- subm() {
- uni.showLoading({
- title: "登录中",
- mask: true,
- });
- var href = location.href; //获取链接地址
- console.log(href, "href");
- var href_wenhao = href.indexOf("?code="); //判断有没有问号,没有是-1
- var wenhaohoumian = location.href.split("?code="); //截取问号地址数组
- this.arr_last = wenhaohoumian[1]; //地址数组赋值
- if (href_wenhao == -1) {
- post("/auth/wxlogin").then((res) => {
- this.url = res.url;
- this.state = res.status;
- uni.setStorageSync("type", this.type); //存储来源type
- uni.hideLoading();
- if (this.state == "200") {
- //获取角色信息
- let role = res.user.user.role;
- let workerFlag = role.some((item) => item.rolecode === "worker");
- let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
- this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
- } else {
- console.log(this.url, "url");
- // 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
- location.assign(this.url);
- }
- });
- } else if (href_wenhao != -1) {
- this.arr_last = this.arr_last.split("&");
- this.arr_last = this.arr_last[0];
- post("/auth/wxlogina", {
- code: this.arr_last,
- }).then((res) => {
- this.state = res.status;
- uni.hideLoading();
- if (this.state == "200") {
- this.type = uni.getStorageSync("type"); //刷新页面后获取type
- console.log(this.type);
- //获取角色信息
- let role = res.user.user.role;
- let workerFlag = role.some((item) => item.rolecode === "worker");
- let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
- this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败",
- });
- }
- });
- }
- },
- // 获取工作组合列表
- getCombinationById(idx, type) {
- console.log(this.type);
- if (this.zxzData.length == this.totalNum && !type) {
- uni.showToast({
- icon: "none",
- title: "没有更多数据了!",
- });
- this.freshing = true;
- return;
- }
- let data = {
- workAllocationQuickConfig: {
- workSchemeId: this.workSchemeId,
- },
- idx: idx,
- sum: 20,
- };
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- // 请求列表数据
- post("/configuration/fetchDataList/workAllocationQuickConfig", data).then(
- (res) => {
- uni.hideLoading();
- if (res.status == 200) {
- this.triggered = false;
- this.freshing = true;
- this.totalNum = res.totalNum;
- if (idx === 0) {
- res.list.forEach((item) => {
- let o = JSON.parse(JSON.stringify(item));
- item.str = JSON.stringify(o);
- item.checked = false;
- });
- this.zxzData = res.list;
- } else {
- res.list.forEach((item) => {
- let o = JSON.parse(JSON.stringify(item));
- item.str = JSON.stringify(o);
- item.checked = false;
- });
- this.zxzData.push(...res.list);
- }
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败!",
- });
- }
- }
- );
- },
- //刷新
- refresherrefresh() {
- if (this.triggered) {
- return;
- }
- console.log("下拉刷新");
- this.triggered = true;
- this.idx = 0;
- this.totalNum = -1;
- this.getCombinationById(0);
- },
- // 下拉刷新复位
- refresherrestore() {
- this.triggered = false;
- console.log("下拉刷新复位");
- },
- //下拉刷新中止
- refresherabort() {
- this.triggered = false;
- console.log("下拉刷新中止");
- },
- //分页,上拉加载
- scrolltolower() {
- if (this.freshing) {
- console.log("上拉加载");
- this.freshing = false;
- this.getCombinationById(++this.idx);
- }
- },
- // 滚动
- scroll(e) {
- if (e.detail.scrollTop < 20) {
- this.scroll_refresher_enabled = true;
- } else {
- this.scroll_refresher_enabled = false;
- }
- },
- // 获取启动中的工作分配方案
- getWorkScheme(type, hosId) {
- let postData = {
- idx: 0,
- workScheme: {
- status: 1,
- hosId
- },
- sum: 1,
- };
- post("/simple/data/fetchDataList/workScheme", postData).then((res) => {
- if (res.status == 200) {
- this.workSchemeId = res.list[0].id;
- this.workSchemeType = res.list[0].workType;
- if (type) {
- if (this.workSchemeType == 2) {
- this.getCombinationById(0, "no");
- } else if (this.workSchemeType == 1) {
- if (uni.getStorageSync("setDeptConfg")) {
- uni.removeStorageSync("setDeptConfg"); //清空选择的科室配置,初始化
- }
- }
- } else {
- this.getCombinationById(0);
- }
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败!",
- });
- }
- });
- },
- // 阻止浏览器滑动
- stop(e) {
- e.preventDefault();
- },
- //获取查询参数
- GetQueryString(name) {
- var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
- var r = location.search.substr(1).match(reg);
- if (r != null) {
- return unescape(r[2]);
- }
- return null;
- }
- },
- onHide() {
- this.zxzData = [];
- this.historys = [];
- // #ifdef H5
- document.body.removeEventListener("touchmove", this.stop, {
- passive: false,
- });
- // #endif
- },
- onShow() {
- // let flag = true;
- if (uni.getStorageSync("userData")) {
- this.online = uni.getStorageSync("userData").user.online;
- }
- if (!this.workSchemeType) {
- return;
- }
- // if (this.workSchemeType == 2 && !this.online) {
- // let userId = uni.getStorageSync('userData').user.id;
- // this.getCombinationById(this.idx, 'no');
- // this.getHistorys(userId); //获取上班历史记录
- // }
- let userId = uni.getStorageSync("userData").user.id;
- this.getWorkScheme(true, uni.getStorageSync("userData").user.currentHospital.id);
- this.getHistorys(userId); //获取上班历史记录
- // #ifdef APP-PLUS
- uni.closeSocket();
- // #endif
- // #ifdef H5
- document.body.addEventListener("touchmove", this.stop, {
- passive: false,
- });
- // #endif
- },
- onLoad(options) {
- if (uni.getStorageSync("setDepts")) {
- uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
- }
- console.log(options);
- this.ip = uni.getStorageSync("ip") || this.ip;
- this.username = uni.getStorageSync("username") || this.username;
- this.password = uni.getStorageSync("password") || this.password;
- //#ifdef H5
- this.isApp = false;
- this.type = options.type || "";
- console.log(this.type);
- if (this.GetQueryString('login') === '1') {
- //H5页面账号密码登录
- this.isH5AndPwd = true;
- this.ip = location.origin;
- } else {
- this.isH5AndPwd = false;
- this.subm();
- }
- //#endif
- // #ifdef APP-PLUS
- this.isApp = true;
- // 通知权限 start
- // var main = plus.android.runtimeMainActivity();
- // var pkName = main.getPackageName();
- // var NotificationManagerCompat = plus.android.importClass(
- // "android.support.v4.app.NotificationManagerCompat"
- // );
- // var packageNames = NotificationManagerCompat.from(main);
- // console.log(JSON.stringify(packageNames));
- // if (packageNames.areNotificationsEnabled()) {
- // console.log("已开启通知权限");
- // } else {
- // uni.showModal({
- // title: "提示",
- // content: "请先打开APP通知权限",
- // showCancel: true,
- // success: function(res) {
- // if (res.confirm) {
- // var Intent = plus.android.importClass("android.content.Intent");
- // var intent = new Intent(
- // "android.settings.APP_NOTIFICATION_SETTINGS"
- // ); //可设置表中所有Action字段
- // intent.putExtra("android.provider.extra.APP_PACKAGE", pkName);
- // main.startActivity(intent);
- // }
- // },
- // });
- // }
- // 通知权限 end
- // #endif
- },
- };
- </script>
- <style lang="less" scoped>
- .HomeItem {
- height: 100vh;
- .login {
- height: 420rpx;
- padding: 0 32rpx;
- padding-top: 164rpx;
- position: relative;
- z-index: 999;
- .login_input {
- margin-top: 32rpx;
- background-color: #ffffff;
- height: 72rpx;
- box-sizing: border-box;
- padding: 16rpx;
- }
- .title {
- font-size: 36rpx;
- color: #42b983;
- text-align: center;
- }
- .page_item_btn {
- height: 88rpx;
- background-image: linear-gradient(to right, #72c172, #3bb197);
- border-radius: 8rpx;
- line-height: 88rpx;
- color: #fff;
- font-size: 36rpx;
- font-weight: 700;
- margin-top: 64rpx;
- text-align: center;
- }
- }
- //上班页面
- .goWorkAll {
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- /deep/ .uni-radio-input-checked {
- background-color: #42b983 !important;
- border-color: #42b983 !important;
- }
- .goWorkSelect {
- &.history {
- height: 356rpx;
- padding-bottom: 16rpx;
- }
- &.combination {
- .goWorkSelect-head {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- }
- .goWorkSelect-list {
- margin-top: 82rpx;
- }
- }
- .goWorkSelect-head {
- font-size: 36rpx;
- padding: 16rpx 0;
- color: #42b983;
- border-bottom: 2rpx solid #42b983;
- text-align: center;
- }
- .goWorkSelect-list {
- &.scroll {
- height: calc(100vh - 356rpx - 82rpx);
- }
- .goWorkSelect-item {
- height: 52rpx;
- display: flex;
- align-items: center;
- border-bottom: 2rpx solid #e5e9ed;
- padding: 16rpx;
- button {
- font-size: 32rpx;
- height: 52rpx;
- line-height: 52rpx;
- margin: 0;
- margin-left: 16rpx;
- color: rgb(7, 134, 60);
- font-weight: 700;
- }
- }
- }
- }
- }
- .goWork {
- margin: 0 auto 48rpx;
- width: 240rpx;
- height: 240rpx;
- .goWork_btn_E {
- width: 100%;
- height: 100%;
- background: #bee1a7;
- border-radius: 30%;
- .goWork_btn_W {
- width: 75%;
- height: 75%;
- background-image: linear-gradient(to right, #72c172, #3bb197);
- border-radius: 30%;
- margin: 0 auto;
- position: relative;
- top: 12.5%;
- line-height: 180rpx;
- color: #fff;
- font-size: 36rpx;
- text-align: center;
- }
- }
- }
- .goWork_text {
- width: 100%;
- view {
- text-align: center;
- }
- .goWork_text-p {
- font-size: 36rpx;
- margin-bottom: 48rpx;
- }
- }
- .botImg {
- height: 600rpx;
- width: 100%;
- position: fixed;
- bottom: 0;
- .img {
- height: 100%;
- background: url("../../static/img/BG.png") no-repeat center center;
- background-size: 100% 100%;
- }
- }
- }
- </style>
|