setDept.vue 14 KB

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