sendBackOrder.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. 工单总数量:<text class="green">{{orderList.length}}</text>
  5. </view>
  6. <view class="Scanning_cont">
  7. <scroll-view scroll-y class="scrollContent">
  8. <view class="column" v-for="(item, index) in orderList" :key="item.id">
  9. <view class="top">
  10. <text class="">
  11. <text class="orders green">{{index + 1}}</text>
  12. <text class="gdcode">{{item.gdcode}}</text>
  13. </text>
  14. <text class="taskName">{{item.taskType.taskName}}</text>
  15. </view>
  16. <view class="bottom">
  17. <view class="name">备注:</view>
  18. <view class="value">{{item.workOrderRemark}}</view>
  19. </view>
  20. <view class="bottom">
  21. <view class="name">{{item.patient.patientName}}({{item.patient.residenceNo}})</view>
  22. </view>
  23. </view>
  24. </scroll-view>
  25. </view>
  26. <view class="foot_btn_spe">
  27. <view class="column">
  28. <view class="btn" @click="goBack()">取消</view>
  29. <view class="btn" @click="orderSignAll()" v-if="orderList.length">一键签到</view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import {
  36. get,
  37. post,
  38. SM,
  39. webHandle
  40. } from "@/http/http.js";
  41. export default {
  42. data() {
  43. return {
  44. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  45. orderList: [],//工单列表
  46. queryObj: {}, //路由传递过来的数据
  47. };
  48. },
  49. methods: {
  50. goBack(){
  51. uni.navigateBack();
  52. },
  53. // 一键签到
  54. orderSignAll(){
  55. uni.showModal({
  56. title: "提示",
  57. content: "您确定一键签到吗?",
  58. success: (res) => {
  59. if (res.confirm) {
  60. console.log("用户点击确定");
  61. uni.showLoading({
  62. mask: true,
  63. title: '加载中'
  64. })
  65. let postData = {
  66. "deptCode": this.queryObj.code,
  67. "ids": this.orderList.map(v => v.id),
  68. };
  69. console.log(this.orderList);
  70. post("/workerOrder/handleInsAndTrans", postData).then((res) => {
  71. console.log(res)
  72. uni.hideLoading();
  73. if (res.status == 200) {
  74. uni.showToast({
  75. icon: 'success',
  76. title: '工单签到成功',
  77. duration: 2000,
  78. mask: true,
  79. });
  80. setTimeout(() => {
  81. uni.navigateTo({
  82. url: `/pages/receiptpage/receiptpage`,
  83. });
  84. }, 2000)
  85. } else {
  86. uni.showToast({
  87. icon: "none",
  88. title: res.msg || "接口获取数据失败!",
  89. });
  90. }
  91. })
  92. } else if (res.cancel) {
  93. console.log("用户点击取消");
  94. }
  95. },
  96. });
  97. },
  98. // 获取工单列表
  99. getOrderList(){
  100. uni.showLoading({
  101. mask: true,
  102. title: '加载中'
  103. })
  104. let postData = {
  105. "deptId": +this.queryObj.deptId,
  106. };
  107. post("/workerOrder/patientIntelligentScan", postData).then((res) => {
  108. console.log(res)
  109. uni.hideLoading();
  110. if (res.status == 200) {
  111. this.orderList = res.data || [];
  112. } else {
  113. uni.showToast({
  114. icon: "none",
  115. title: res.msg || "接口获取数据失败!",
  116. });
  117. }
  118. })
  119. }
  120. },
  121. onLoad(options) {
  122. console.log(options, "options");
  123. this.queryObj = options;
  124. this.getOrderList();
  125. // #ifdef APP-PLUS
  126. webHandle("no", "app");
  127. // #endif
  128. // #ifdef H5
  129. webHandle("no", "wx");
  130. // #endif
  131. },
  132. };
  133. </script>
  134. <style lang="less" scoped>
  135. .green{
  136. color:#49b856;
  137. }
  138. .Scanning_Result {
  139. background: #EBEBEB;
  140. display: flex;
  141. flex-direction: column;
  142. height: 100vh;
  143. .Scanning_top {
  144. display: flex;
  145. justify-content: center;
  146. align-items: center;
  147. height: 63rpx;
  148. font-size: 28rpx;
  149. font-weight: bold;
  150. background-color: #fff;
  151. margin-top: 16rpx;
  152. }
  153. .Scanning_cont {
  154. flex: 1;
  155. min-height: 0;
  156. display: flex;
  157. flex-direction: column;
  158. .scrollContent{
  159. flex: 1;
  160. min-height: 0;
  161. }
  162. .column{
  163. padding: 24rpx;
  164. font-size: 26rpx;
  165. margin-top: 16rpx;
  166. background-color: #fff;
  167. .top,.bottom{
  168. display: flex;
  169. align-items: center;
  170. .name{
  171. flex-shrink: 0;
  172. }
  173. .value{
  174. word-break: break-all;
  175. }
  176. }
  177. .top{
  178. .orders{
  179. font-size: 28rpx;
  180. font-weight: bold;
  181. margin-right: 24rpx;
  182. }
  183. .gdcode{
  184. font-weight: bold;
  185. }
  186. .taskName{
  187. flex: 1;
  188. text-align: right;
  189. }
  190. }
  191. .bottom{
  192. margin-top: 16rpx;
  193. }
  194. }
  195. }
  196. .foot_btn_spe {
  197. padding: 24rpx;
  198. display: flex;
  199. flex-direction: column;
  200. align-items: center;
  201. gap: 24rpx;
  202. font-weight: bold;
  203. .column{
  204. width: 100%;
  205. height: 78rpx;
  206. display: flex;
  207. align-items: center;
  208. justify-content: space-between;
  209. gap: 24rpx;
  210. .btn {
  211. height: 100%;
  212. flex: 1;
  213. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  214. color: #fff;
  215. border-radius: 4rpx;
  216. font-size: 30rpx;
  217. display: flex;
  218. justify-content: center;
  219. align-items: center;
  220. }
  221. }
  222. }
  223. }
  224. </style>