formManagementBuilding.vue 11 KB

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