setDept.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. <template>
  2. <view class="setDept">
  3. <view class="page_tab">
  4. <view class="page_tab_bar active">
  5. <view class="tab_dept">
  6. {{ configName}}
  7. <button type="default" size="mini" class="addDept" @click="addDeptClick">
  8. 添加科室
  9. </button>
  10. <button type="default" size="mini" class="addBuilding" @click="addBuildingClick">
  11. 楼栋选择
  12. </button>
  13. </view>
  14. </view>
  15. </view>
  16. <view v-if="zxzData.length == 0" class="zwsj">
  17. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  18. <view class="zwsj-txt">暂无数据</view>
  19. </view>
  20. <view v-if="zxzData.length" class="page_items">
  21. <view class="page_items_scroll">
  22. <block v-for="row in zxzData" :key="row.id">
  23. <view class="keyword-entry" hover-class="keyword-entry-tap">
  24. <view class="keyword-text">
  25. <rich-text :nodes="row.dept"></rich-text>
  26. </view>
  27. <view class="keyword-img" @tap.stop="deleteDept(row.id)">
  28. 删除科室
  29. </view>
  30. </view>
  31. </block>
  32. </view>
  33. </view>
  34. <!-- 底部确认负责科室 -->
  35. <view class="toolbar" @click="determine()" hover-class="seimin-btn-hover">
  36. <text class="toolbar-sao">确认负责科室</text>
  37. </view>
  38. <!-- 弹窗 -->
  39. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  40. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate" :phone="models.phone"></showModel>
  41. <!-- 提示下班弹窗 -->
  42. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  43. @know="know1" :operate="models1.operate"></showModel>
  44. </view>
  45. </template>
  46. <script>
  47. import {
  48. post,
  49. get
  50. } from "../../http/http.js";
  51. export default {
  52. data() {
  53. return {
  54. configName: "", //快捷组合名称
  55. id: "", //快速组合的id
  56. changedept: 0, //是否是从切换负责科室过来的
  57. zxzData: [], //已选择的科室
  58. // 弹窗model
  59. models: {
  60. disjunctor: false,
  61. },
  62. // 下班弹窗model
  63. models1: {
  64. disjunctor: false,
  65. },
  66. delId: "", //科室删除的id
  67. userId: uni.getStorageSync("userData").user.id, //当前用户的id
  68. };
  69. },
  70. methods: {
  71. //知道了(下班弹窗)
  72. know1() {
  73. this.models1.disjunctor = false;
  74. uni.redirectTo({
  75. url: "../homePage/homePage",
  76. });
  77. },
  78. //知道了
  79. know() {
  80. this.models.disjunctor = false;
  81. },
  82. //确定
  83. ok() {
  84. this.models.disjunctor = false;
  85. let i = this.zxzData.findIndex((item) => item.id == this.delId);
  86. this.zxzData.splice(i, 1);
  87. uni.setStorageSync("setDepts", this.zxzData);
  88. },
  89. //取消
  90. cancel() {
  91. this.models.disjunctor = false;
  92. },
  93. // 添加科室
  94. addDeptClick() {
  95. uni.navigateTo({
  96. url: `../search/search?type=setDept&configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,
  97. });
  98. },
  99. // 楼栋选择
  100. addBuildingClick() {
  101. uni.navigateTo({
  102. url: `../searchMuti/searchMuti?type=setBuilding&configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,
  103. });
  104. },
  105. // 删除科室
  106. deleteDept(id) {
  107. this.delId = id;
  108. this.models = {
  109. disjunctor: true,
  110. title: "提示",
  111. content: "您确定要删除该科室吗?",
  112. icon: "warn",
  113. operate: {
  114. ok: "确定",
  115. cancel: "取消",
  116. },
  117. };
  118. },
  119. // 确认负责科室
  120. determine() {
  121. if (this.zxzData.length === 0) {
  122. this.models = {
  123. disjunctor: true,
  124. title: "提示",
  125. content: "请选择至少一个科室",
  126. icon: "warn",
  127. operate: {
  128. know: "知道了",
  129. },
  130. };
  131. } else {
  132. let setDeptConfg = uni.getStorageSync("setDeptConfg");
  133. let ids1 = this.zxzData.map((item) => item.id);
  134. let ids2 = this.zxzData.map((item) => {
  135. return {
  136. id: item.id,
  137. };
  138. });
  139. let postData1 = {
  140. quickId: this.id,
  141. deptIds: ids1.join(),
  142. userId: this.userId,
  143. changeDept: 1,
  144. classId: setDeptConfg.classesId,
  145. };
  146. if (setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 4 && this.changedept == 1) {
  147. //自选排班,科室绑定分组
  148. console.log(setDeptConfg)
  149. postData1.groupIds = setDeptConfg.selectGroupId.toString();
  150. postData1.isManager = true;
  151. }
  152. let postData2 = {
  153. workConfigHistory: {
  154. user: {
  155. id: this.userId,
  156. },
  157. workAllocationQuick: {
  158. id: this.id,
  159. },
  160. deptList: ids2,
  161. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  162. classId: setDeptConfg.classesId,
  163. },
  164. };
  165. uni.showLoading({
  166. title: "加载中",
  167. mask: true,
  168. });
  169. if (this.changedept == 1) {
  170. //单纯切换科室!!!!
  171. //切换负责科室,不重新上班
  172. post("/auth/customOnline", postData1).then((res) => {
  173. if (res.status == 200) {
  174. post("/configuration/addData/workConfigHistory", postData2).then(
  175. (result) => {
  176. uni.hideLoading();
  177. if (result.status == 200) {
  178. uni.redirectTo({
  179. url: "../receiptpage/receiptpage",
  180. });
  181. } else {
  182. uni.showToast({
  183. icon: "none",
  184. title: "请求失败!",
  185. });
  186. }
  187. }
  188. );
  189. } else if (res.status == 504) {
  190. uni.hideLoading();
  191. let dept = res.department.dept;
  192. let user = res.user.name;
  193. let phone = res.user.phone;
  194. this.models = {
  195. disjunctor: true,
  196. title: "提示",
  197. content: `您选择的科室已经被使用,请换个科室,或者联系:科室[${dept}]人员[${user}]号码[${phone}] 切换科室解决`,
  198. icon: "warn",
  199. phone,
  200. operate: {
  201. know: "知道了",
  202. },
  203. };
  204. } else if (res.status == 505) {
  205. uni.hideLoading();
  206. this.models1 = {
  207. disjunctor: true,
  208. title: "提示",
  209. content: res.msg, //baba
  210. icon: "warn",
  211. operate: {
  212. know: "知道了",
  213. },
  214. };
  215. }
  216. });
  217. } else {
  218. let postData = {
  219. type: "on",
  220. customWorking: "on",
  221. quickId: this.id,
  222. deptIds: ids1.join(),
  223. userId: this.userId,
  224. classId: setDeptConfg.classesId,
  225. };
  226. if (setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 4) {
  227. //自选排班,科室绑定分组
  228. console.log(setDeptConfg)
  229. postData.groupIds = setDeptConfg.selectGroupId.toString();
  230. postData.isManager = true;
  231. }
  232. post("/auth/onOrOffLine", postData).then((res) => {
  233. if (res.status == 200) {
  234. post("/configuration/addData/workConfigHistory", postData2).then(
  235. (result) => {
  236. uni.hideLoading();
  237. if (result.status == 200) {
  238. let obj = uni.getStorageSync("userData");
  239. obj.user.online = true;
  240. uni.setStorageSync("userData", obj);
  241. uni.redirectTo({
  242. url: "../receiptpage/receiptpage",
  243. });
  244. } else {
  245. uni.showToast({
  246. icon: "none",
  247. title: "请求失败!",
  248. });
  249. }
  250. }
  251. );
  252. } else if (res.status == 504) {
  253. uni.hideLoading();
  254. let dept = res.department.dept;
  255. let user = res.user.name;
  256. let phone = res.user.phone;
  257. this.models = {
  258. disjunctor: true,
  259. title: "提示",
  260. content: `您选择的科室已经被使用,请换个科室,或者联系:科室[${dept}]人员[${user}]号码[${phone}] 切换科室解决`,
  261. icon: "warn",
  262. phone,
  263. operate: {
  264. know: "知道了",
  265. },
  266. };
  267. }
  268. });
  269. }
  270. }
  271. },
  272. // 获取科室列表
  273. getDeptList() {
  274. uni.showLoading({
  275. title: "加载中",
  276. mask: true,
  277. });
  278. let setDeptConfg = uni.getStorageSync("setDeptConfg");
  279. let postData = {};
  280. if (setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 4 && this.changedept != 1) {
  281. //自选排班,科室绑定分组,切换科室的时候
  282. console.log(setDeptConfg)
  283. postData.quickId = this.id;
  284. postData.groupId = setDeptConfg.selectGroupId.toString();
  285. }
  286. if (setDeptConfg.workSchemeType == 2 && setDeptConfg.ruleType == 3 && this.changedept != 1) {
  287. //自选排班,科室绑定人员,切换科室的时候
  288. postData.quickId = this.id;
  289. }
  290. post("/auth/getUserWorkDept", postData).then((res) => {
  291. uni.hideLoading();
  292. if (res.status == 200) {
  293. this.zxzData = res.data;
  294. if (res.settings) {
  295. if (res.settings.groupManager && this.changedept == 1) {
  296. setDeptConfg.selectGroupId = res.settings.groupManager.id;
  297. uni.setStorageSync('setDeptConfg', setDeptConfg);
  298. }
  299. }
  300. uni.setStorageSync("setDepts", this.zxzData); //存科室列表
  301. }
  302. });
  303. },
  304. },
  305. onLoad(options) {
  306. console.log(options);
  307. this.configName = options.configName;
  308. this.id = options.id;
  309. this.changedept = options.changedept;
  310. if (uni.getStorageSync("setDepts")) {
  311. this.zxzData = uni.getStorageSync("setDepts");
  312. } else {
  313. this.getDeptList();
  314. }
  315. },
  316. };
  317. </script>
  318. <style lang="less">
  319. .setDept {
  320. width: 100%;
  321. height: 100%;
  322. position: relative;
  323. .page_tab {
  324. width: 100%;
  325. height: 96rpx;
  326. display: flex;
  327. position: fixed;
  328. left: 0;
  329. top: 0;
  330. z-index: 999;
  331. .page_tab_bar {
  332. flex: 1;
  333. font-size: 36rpx;
  334. background: #fff;
  335. display: flex;
  336. justify-content: center;
  337. align-items: center;
  338. position: relative;
  339. &:after {
  340. content: "";
  341. position: absolute;
  342. left: 0;
  343. bottom: 0;
  344. height: 2rpx;
  345. width: 100%;
  346. background-color: transparent;
  347. }
  348. .tab_dept {
  349. position: relative;
  350. .addDept {
  351. white-space: nowrap;
  352. margin: 0;
  353. position: absolute;
  354. right: 0;
  355. top: 50%;
  356. transform: translate(105%, -50%);
  357. padding: 0 0.5em;
  358. line-height: 2;
  359. }
  360. .addBuilding{
  361. white-space: nowrap;
  362. margin: 0;
  363. position: absolute;
  364. top: 50%;
  365. transform: translate(105%, -50%);
  366. padding: 0 0.5em;
  367. line-height: 2;
  368. }
  369. }
  370. &.active {
  371. color: #49b856;
  372. &:after {
  373. background-color: #49b856;
  374. }
  375. }
  376. }
  377. }
  378. .zwsj {
  379. position: absolute;
  380. left: 50%;
  381. top: 180rpx;
  382. transform: translateX(-50%);
  383. .zwsj-img {
  384. width: 560rpx;
  385. }
  386. .zwsj-txt {
  387. font-size: 36rpx;
  388. font-weight: 700;
  389. margin-top: 20rpx;
  390. text-align: center;
  391. }
  392. }
  393. .page_items {
  394. height: calc(100vh - 184rpx);
  395. padding-top: 96rpx;
  396. overflow: auto;
  397. .page_items_scroll {
  398. height: 100%;
  399. .keyword-entry-tap {
  400. background-color: #eee;
  401. }
  402. .keyword-entry {
  403. width: 94%;
  404. height: 80upx;
  405. padding: 0 3%;
  406. font-size: 30upx;
  407. color: #333;
  408. display: flex;
  409. justify-content: space-between;
  410. align-items: center;
  411. border-bottom: solid 1upx #e7e7e7;
  412. .keyword-text,
  413. .keyword-img {
  414. height: 80upx;
  415. display: flex;
  416. align-items: center;
  417. }
  418. .keyword-text {
  419. width: 90%;
  420. }
  421. .keyword-img {
  422. width: 20%;
  423. justify-content: center;
  424. color: #49b856;
  425. }
  426. }
  427. }
  428. }
  429. // 底部
  430. .toolbar {
  431. position: fixed;
  432. left: 0;
  433. right: 0;
  434. bottom: 0;
  435. z-index: 9999;
  436. height: 88rpx;
  437. display: flex;
  438. justify-content: center;
  439. align-items: center;
  440. box-sizing: border-box;
  441. border-radius: 4rpx;
  442. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.24);
  443. background-color: #e5e9ed;
  444. .toolbar-sao {
  445. font-size: 36rpx;
  446. color: #49b856;
  447. }
  448. }
  449. }
  450. </style>