formManagementDept.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. <template>
  2. <view class="formManagementWechat">
  3. <view class="page_tab">
  4. <view class="page_tab_bar active">
  5. <view class="tab_dept">科室信息</view>
  6. </view>
  7. </view>
  8. <view v-if="zxzData.length == 0" class="zwsj">
  9. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  10. <view class="zwsj-txt">暂无数据</view>
  11. </view>
  12. <view v-if="zxzData.length" class="page_items">
  13. <scroll-view class="page_items_scroll" scroll-y>
  14. <view class="page_item_wrap" v-for="(item, index) of zxzData" :key="index">
  15. <view class="page_item">
  16. <view class="L"></view>
  17. <view class="R"></view>
  18. <view class="page_item_top">
  19. <view class="page_item_top_L">
  20. {{item.name || '无'}}
  21. </view>
  22. <view class="send_wrap"></view>
  23. </view>
  24. <view class="page_item_cont">
  25. <view class="page_item_conts">
  26. <view v-for="(order, i) of item.orders" :key="i">
  27. {{order[11].slice(-4)}}-{{order[7]}} {{order[8]}}
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="L-l"></view>
  33. <view class="R-l"></view>
  34. </view>
  35. </scroll-view>
  36. </view>
  37. <!-- 底部 -->
  38. <view class="foot_btn2 footerPadding">
  39. <view class="btn2" @click="goBack">返回</view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import {
  45. get,
  46. post,
  47. webHandle
  48. } from "../../http/http.js";
  49. export default {
  50. data() {
  51. return {
  52. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  53. options: {},
  54. //列表数据
  55. zxzData: [],
  56. };
  57. },
  58. methods: {
  59. // 返回
  60. goBack() {
  61. uni.navigateBack();
  62. },
  63. //表单列表获取
  64. getList() {
  65. let data = {
  66. reserveFormId: this.options.id,
  67. taskTypeId: this.options.taskTypeId,
  68. };
  69. uni.showLoading({
  70. title: "加载中",
  71. mask: true,
  72. });
  73. // 请求列表数据
  74. post("/nurse/reserveView", data).then((res) => {
  75. uni.hideLoading();
  76. if (res.state == 200) {
  77. const data = res.data || {};
  78. if(Object.keys(data).length > 0){
  79. // 楼栋-楼层-科室-工单 转成前端可用的 楼栋-科室-工单
  80. let buildings = Object.keys(data)
  81. .map(v => ({
  82. id: v,
  83. name: Object.values(Object.values(data[v])[0])[0][0][3],
  84. departments: (
  85. Object.values(data[v]).map(vv => Object.keys(vv).map(vvv => ({id: vvv, name: vv[vvv][0][6], orders: vv[vvv], checked: false, isDisabled: vv[vvv].every(vvvv => !(vvvv[12] == 2 || (!vvvv[8] && vvvv[12] != 2)))})))
  86. ).flat()
  87. }));
  88. console.log(buildings)
  89. this.zxzData = buildings.find(v => v.id == this.options.buildingId).departments;
  90. }else{
  91. this.zxzData = [];
  92. }
  93. } else {
  94. this.zxzData = [];
  95. uni.showToast({
  96. icon: "none",
  97. title: "请求失败!",
  98. });
  99. }
  100. });
  101. },
  102. // 阻止浏览器滑动
  103. stop(e) {
  104. e.preventDefault();
  105. },
  106. },
  107. onLoad(options) {
  108. console.log(options);
  109. this.options = options;
  110. this.getList();
  111. // #ifdef APP-PLUS
  112. webHandle("no", "app");
  113. // #endif
  114. // #ifdef H5
  115. webHandle("no", "wx");
  116. // #endif
  117. },
  118. onShow() {
  119. // #ifdef H5
  120. document.body.addEventListener("touchmove", this.stop, {
  121. passive: false,
  122. });
  123. // #endif
  124. },
  125. onHide() {
  126. // #ifdef H5
  127. document.body.removeEventListener("touchmove", this.stop, {
  128. passive: false,
  129. });
  130. // #endif
  131. },
  132. };
  133. </script>
  134. <style lang="less" scoped>
  135. .formManagementWechat {
  136. width: 100%;
  137. height: 100%;
  138. position: relative;
  139. .foot_btn2 {
  140. position: fixed;
  141. bottom: 0;
  142. right: 20rpx;
  143. left: 20rpx;
  144. line-height: 66rpx;
  145. height: 100rpx;
  146. border-top: 2rpx solid #e5e9ed;
  147. background: #f9fafb;
  148. display: flex;
  149. justify-content: space-between;
  150. .btn2 {
  151. height: 66rpx;
  152. width: 100%;
  153. margin: 0 1%;
  154. background-image: linear-gradient(to right, #72c172, #3bb197);
  155. color: #fff;
  156. border-radius: 8rpx;
  157. font-size: 32rpx;
  158. margin-top: 16rpx;
  159. text-align: center;
  160. }
  161. .btn3 {
  162. height: 66rpx;
  163. width: 48%;
  164. margin: 0 1%;
  165. background-image: linear-gradient(to right, #72c172, #3bb197);
  166. color: #fff;
  167. border-radius: 8rpx;
  168. font-size: 32rpx;
  169. margin-top: 16rpx;
  170. text-align: center;
  171. }
  172. }
  173. .icon_transport {
  174. color: #49b856;
  175. font-size: 50rpx;
  176. &.colorRed {
  177. color: red;
  178. font-size: 40rpx;
  179. }
  180. }
  181. .page_tab {
  182. width: 100%;
  183. height: 96rpx;
  184. display: flex;
  185. position: fixed;
  186. left: 0;
  187. top: 0;
  188. z-index: 999;
  189. .page_tab_bar {
  190. flex: 1;
  191. font-size: 36rpx;
  192. background: #fff;
  193. display: flex;
  194. justify-content: center;
  195. align-items: center;
  196. position: relative;
  197. &:after {
  198. content: "";
  199. position: absolute;
  200. left: 0;
  201. bottom: 0;
  202. height: 2rpx;
  203. width: 100%;
  204. background-color: transparent;
  205. }
  206. .tab_dept {
  207. position: relative;
  208. .changeDept {
  209. white-space: nowrap;
  210. margin: 0;
  211. position: absolute;
  212. right: 0;
  213. top: 50%;
  214. transform: translate(105%, -50%);
  215. padding: 0 0.5em;
  216. line-height: 2;
  217. }
  218. }
  219. &.active {
  220. color: #49b856;
  221. &:after {
  222. background-color: #49b856;
  223. }
  224. }
  225. }
  226. }
  227. .zwsj {
  228. position: absolute;
  229. left: 50%;
  230. top: 180rpx;
  231. transform: translateX(-50%);
  232. .zwsj-img {
  233. width: 560rpx;
  234. }
  235. .zwsj-txt {
  236. font-size: 36rpx;
  237. font-weight: 700;
  238. margin-top: 20rpx;
  239. text-align: center;
  240. }
  241. }
  242. .page_items {
  243. height: calc(100vh - 284rpx);
  244. padding: 0 20rpx;
  245. padding-top: 96rpx;
  246. .page_items_scroll {
  247. height: 100%;
  248. .page_item_wrap {
  249. position: relative;
  250. margin-bottom: 32rpx;
  251. .page_item {
  252. margin-bottom: 16rpx;
  253. background: #fff;
  254. border-radius: 8rpx;
  255. overflow: hidden;
  256. border: 2rpx solid #e5e9ed;
  257. display: flex;
  258. flex-direction: column;
  259. justify-content: space-between;
  260. .L {
  261. width: 40rpx;
  262. height: 40rpx;
  263. border-radius: 50%;
  264. background: #f9fafb;
  265. position: absolute;
  266. left: -24rpx;
  267. top: 68rpx;
  268. border: 2rpx solid #e5e9ed;
  269. }
  270. .R {
  271. width: 40rpx;
  272. height: 40rpx;
  273. border-radius: 50%;
  274. background: #f9fafb;
  275. position: absolute;
  276. float: right;
  277. right: -24rpx;
  278. top: 68rpx;
  279. border: 2rpx solid #e5e9ed;
  280. }
  281. .page_item_top {
  282. height: 86rpx;
  283. border-bottom: 2rpx dashed #e5e9ed;
  284. padding: 0 16rpx;
  285. display: flex;
  286. align-items: center;
  287. justify-content: space-between;
  288. .send_wrap {
  289. display: flex;
  290. justify-content: space-between;
  291. align-items: center;
  292. }
  293. .sendBack {
  294. button {
  295. font-size: 28rpx;
  296. height: 52rpx;
  297. line-height: 52rpx;
  298. margin: 0;
  299. color: rgb(7, 134, 60);
  300. }
  301. }
  302. .page_item_top_L {
  303. height: 100%;
  304. float: left;
  305. display: flex;
  306. align-items: center;
  307. line-height: 88rpx;
  308. .L_time {
  309. color: #6cc076;
  310. font-size: 32rpx;
  311. }
  312. }
  313. .page_item_top_R {
  314. height: 40rpx;
  315. float: right;
  316. line-height: 40rpx;
  317. font-size: 24rpx;
  318. padding: 0 8rpx;
  319. background-color: red;
  320. color: #fff;
  321. }
  322. }
  323. .page_item_cont {
  324. min-height: 100rpx;
  325. max-height: 344rpx;
  326. padding: 0 16rpx;
  327. text-align: left;
  328. position: relative;
  329. .page_item_conts {
  330. color: rgb(102, 102, 102);
  331. font-size: 28rpx;
  332. min-height: 100rpx;
  333. max-height: 344rpx;
  334. view {
  335. margin-top: 10rpx;
  336. margin-bottom: 10rpx;
  337. &:first-of-type {
  338. margin-left: 0;
  339. }
  340. }
  341. text {
  342. color: #49b856;
  343. }
  344. .num {
  345. float: right;
  346. }
  347. }
  348. }
  349. .page_item_btn {
  350. height: 88rpx;
  351. background-image: linear-gradient(to right, #72c172, #3bb197);
  352. border-radius: 8rpx;
  353. line-height: 88rpx;
  354. color: #fff;
  355. font-size: 36rpx;
  356. font-weight: 700;
  357. text-align: center;
  358. }
  359. }
  360. .L-l {
  361. width: 2rpx;
  362. height: 40rpx;
  363. background: #f9fafb;
  364. position: absolute;
  365. left: 20rpx;
  366. top: 72rpx;
  367. display: none;
  368. }
  369. .R-l {
  370. width: 2rpx;
  371. height: 40rpx;
  372. background: #f9fafb;
  373. position: absolute;
  374. right: 20rpx;
  375. top: 72rpx;
  376. display: none;
  377. }
  378. }
  379. }
  380. }
  381. }
  382. </style>