shortcutbuildOrders.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. <template>
  2. <view class="Receipt_infopage">
  3. <view class="title">工单信息</view>
  4. <view class="page_item_wrap">
  5. <view class="page_item">
  6. <view class="page_item_top">
  7. <view class="page_item_top-inner">
  8. <view class="page_item_top_L">
  9. <view class="L_text">创建人:{{ msg.createUserName }}</view>
  10. </view>
  11. <view class="page_item_top_R">
  12. <view class="L_iocn">{{ msg.taskTypeShow }}</view>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="page_item_cont">
  17. <view class="page_item_cont_T">
  18. <view class="page_item_cont_title">
  19. <view>
  20. <view class="starting">起</view> 起点科室
  21. </view>
  22. <view class="text_big">{{ msg.startDeptShow }}</view>
  23. </view>
  24. </view>
  25. <view class="line"></view>
  26. <view class="page_item_cont_B">
  27. <view class="page_item_cont_title">
  28. <view>
  29. <view class="End">终</view> 终点科室
  30. </view>
  31. <view class="text_big">
  32. <view v-for="(item, i) in targetDeptShow" :key="i">{{
  33. item
  34. }}</view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="L"></view>
  40. <view class="R"></view>
  41. </view>
  42. <view class="L-l"></view>
  43. <view class="R-l"></view>
  44. </view>
  45. <view class="foot_btn2">
  46. <view class="btn2" @click="createOrder">新建工单并签到</view>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. import {
  52. get,
  53. post,
  54. webHandle
  55. } from "../../http/http.js";
  56. export default {
  57. data() {
  58. return {
  59. msg: {}, //页面展示信息
  60. targetDeptShow: [], //目标科室
  61. };
  62. },
  63. methods: {
  64. // 新建工单并签到
  65. createOrder() {
  66. uni.showModal({
  67. title: '提示',
  68. content: "您确认建单吗?",
  69. success: (res) => {
  70. if (res.confirm) {
  71. console.log('用户点击确定');
  72. uni.showLoading({
  73. mask: true,
  74. title: '加载中'
  75. })
  76. post(`/workerOrder/createQuickOrder`, {
  77. id: this.msg.id
  78. }).then((res) => {
  79. console.log(res)
  80. uni.hideLoading();
  81. if (res.status == 200) {
  82. if (res.type === 'plan-spe-ddd-2') {
  83. //需要扫描标本
  84. uni.navigateTo({
  85. url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined`,
  86. });
  87. } else {
  88. uni.navigateTo({
  89. url: "../receiptpage/receiptpage",
  90. });
  91. }
  92. } else {
  93. uni.showToast({
  94. icon: "none",
  95. title: res.msg || "接口获取数据失败!",
  96. });
  97. }
  98. });
  99. } else if (res.cancel) {
  100. console.log('用户点击取消');
  101. }
  102. }
  103. });
  104. },
  105. },
  106. onLoad(options) {
  107. console.log(options, "快捷建单");
  108. this.msg = JSON.parse(options.infoDATA);
  109. this.targetDeptShow = this.msg.targetDeptShow.split(",");
  110. // #ifdef APP-PLUS
  111. webHandle("no", "app");
  112. // #endif
  113. // #ifdef H5
  114. webHandle("no", "wx");
  115. // #endif
  116. },
  117. };
  118. </script>
  119. <style lang="less">
  120. .Receipt_infopage {
  121. .title {
  122. font-size: 48rpx;
  123. margin-top: 24rpx;
  124. margin-bottom: 24rpx;
  125. text-align: center;
  126. }
  127. .page_item_wrap {
  128. width: 100%;
  129. height: auto;
  130. box-sizing: border-box;
  131. position: absolute;
  132. .page_item {
  133. margin-top: 16rpx;
  134. margin-bottom: 124rpx;
  135. background: #fff;
  136. border-radius: 8rpx;
  137. margin: 0 20rpx;
  138. border: 2rpx solid #e5e9ed;
  139. position: relative;
  140. overflow: hidden;
  141. padding: 0 16rpx;
  142. .L {
  143. width: 40rpx;
  144. height: 40rpx;
  145. border-radius: 50%;
  146. background: #f9fafb;
  147. position: absolute;
  148. left: -20rpx;
  149. top: 68rpx;
  150. border: 2rpx solid #e5e9ed;
  151. }
  152. .R {
  153. width: 40rpx;
  154. height: 40rpx;
  155. border-radius: 50%;
  156. background: #f9fafb;
  157. position: absolute;
  158. float: right;
  159. right: -20rpx;
  160. top: 68rpx;
  161. border: 2rpx solid #e5e9ed;
  162. }
  163. .starting {
  164. width: 50rpx;
  165. height: 50rpx;
  166. color: #fff;
  167. background: #49b856;
  168. display: inline-block;
  169. border-radius: 50%;
  170. text-align: center;
  171. line-height: 46rpx;
  172. font-size: 32rpx;
  173. margin-right: 6rpx;
  174. }
  175. .End {
  176. width: 50rpx;
  177. height: 50rpx;
  178. color: #fff;
  179. background: #39b199;
  180. display: inline-block;
  181. border-radius: 50%;
  182. text-align: center;
  183. line-height: 46rpx;
  184. font-size: 32rpx;
  185. margin-right: 6rpx;
  186. }
  187. .page_item_top {
  188. height: 88rpx;
  189. border-bottom: 2rpx dashed #e5e9ed;
  190. padding: 0 16rpx;
  191. .page_item_top-inner {
  192. display: flex;
  193. justify-content: space-between;
  194. align-items: center;
  195. height: 100%;
  196. .page_item_top_L {
  197. .emergencys {
  198. background: #ff3b53 !important;
  199. width: 124rpx !important;
  200. }
  201. .emergency {
  202. background: #ff3b53 !important;
  203. }
  204. .emergency1 {
  205. background: #49b856 !important;
  206. }
  207. .page_item_cont_start {
  208. text-align: center;
  209. height: 44rpx;
  210. width: 104rpx;
  211. line-height: 44rpx;
  212. border-radius: 8rpx;
  213. background: #49b856;
  214. color: #fff;
  215. display: inline-block;
  216. }
  217. .L_time {
  218. color: #6cc076;
  219. font-size: 32rpx;
  220. }
  221. .L_text {
  222. font-size: 32rpx;
  223. font-weight: 700;
  224. }
  225. }
  226. .page_item_top_R {
  227. font-size: 32rpx;
  228. .L_iocn {
  229. color: rgb(7, 134, 60);
  230. font-size: 36rpx;
  231. font-weight: 700;
  232. }
  233. }
  234. }
  235. }
  236. .page_item_cont {
  237. min-height: 180rpx;
  238. // max-height: 424rpx;
  239. padding: 0 16rpx;
  240. text-align: left;
  241. position: relative;
  242. .text_big {
  243. font-size: 32rpx;
  244. font-weight: 700;
  245. margin-top: 10rpx;
  246. p {
  247. font-weight: 700;
  248. line-height: 1.5;
  249. }
  250. }
  251. .line {
  252. height: 20rpx;
  253. width: 2rpx;
  254. border-left: 2rpx solid #e5e9ed;
  255. position: absolute;
  256. top: 82rpx;
  257. left: 40rpx;
  258. }
  259. .lines {
  260. height: 40%;
  261. width: 2rpx;
  262. border-left: 2rpx solid #e5e9ed;
  263. position: absolute;
  264. top: 23%;
  265. left: 36rpx;
  266. }
  267. .page_item_cont_T {
  268. padding-top: 28rpx;
  269. font-size: 28rpx;
  270. .page_item_cont_title {
  271. height: 100%;
  272. font-size: 32rpx;
  273. display: flex;
  274. justify-content: space-between;
  275. }
  276. }
  277. .page_item_cont_B {
  278. padding-top: 28rpx;
  279. margin-bottom: 28rpx;
  280. .page_item_cont_title {
  281. font-size: 32rpx;
  282. display: flex;
  283. justify-content: space-between;
  284. }
  285. .page_item_cont_title1 {
  286. height: 60rpx;
  287. line-height: 60rpx;
  288. font-size: 32rpx;
  289. padding-left: 64rpx;
  290. }
  291. }
  292. }
  293. .page_item_foot {
  294. border-top: 2rpx dashed #e5e9ed;
  295. border-bottom: 2rpx dashed #e5e9ed;
  296. padding: 28rpx 16rpx;
  297. text-align: left;
  298. .page_item_foot_text {
  299. font-size: 32rpx;
  300. margin-bottom: 20rpx;
  301. .text1 {
  302. color: rgb(102, 102, 102);
  303. }
  304. .text2 {
  305. float: right;
  306. font-weight: 700;
  307. }
  308. }
  309. }
  310. #infos {
  311. display: none;
  312. }
  313. .page_item_infos {
  314. padding-bottom: 20rpx;
  315. border-bottom: 2rpx dashed #e5e9ed;
  316. .page_item_info2 {
  317. text-align: left;
  318. line-height: 60rpx;
  319. font-size: 32rpx;
  320. padding-left: 16rpx;
  321. .page_item_foot_text {
  322. font-size: 32rpx;
  323. margin-bottom: 20rpx;
  324. .text1 {
  325. color: rgb(102, 102, 102);
  326. }
  327. .text2 {
  328. float: right;
  329. font-weight: 700;
  330. }
  331. }
  332. }
  333. }
  334. }
  335. .L-l {
  336. width: 2rpx;
  337. height: 40rpx;
  338. background: #f9fafb;
  339. position: absolute;
  340. left: 20rpx;
  341. top: 72rpx;
  342. }
  343. .R-l {
  344. width: 2rpx;
  345. height: 40rpx;
  346. background: #f9fafb;
  347. position: absolute;
  348. right: 20rpx;
  349. top: 72rpx;
  350. }
  351. }
  352. .foot_btn2 {
  353. position: fixed;
  354. bottom: 0;
  355. width: 100vw;
  356. padding: 0 20rpx;
  357. box-sizing: border-box;
  358. line-height: 66rpx;
  359. height: 100rpx;
  360. border-top: 2rpx solid #e5e9ed;
  361. background: #f9fafb;
  362. text-align: center;
  363. .btn2 {
  364. height: 66rpx;
  365. width: 100%;
  366. background-image: linear-gradient(to right, #72c172, #3bb197);
  367. color: #fff;
  368. border-radius: 8rpx;
  369. font-size: 32rpx;
  370. margin-top: 16rpx;
  371. }
  372. }
  373. }
  374. </style>