setDept.vue 12 KB

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