formManagementWechat.vue 10 KB

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