createOrder.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok newicon newicon-duigou"></text>
  6. </view>
  7. </view>
  8. <view class="Scanning_cont">
  9. <scroll-view scroll-y class="scrollContent">
  10. <view class="column">
  11. <view class="name">单号:</view>
  12. <view class="value">{{drugsBag.batchNo}}</view>
  13. </view>
  14. <view class="column">
  15. <view class="name">申请科室:</view>
  16. <view class="value">{{drugsBag.target ? drugsBag.target.dept : ''}}</view>
  17. </view>
  18. <view class="column">
  19. <view class="name">发药科室:</view>
  20. <view class="value">{{drugsBag.launch ? drugsBag.launch.dept : ''}}</view>
  21. </view>
  22. <view class="column">
  23. <view class="name">种类数:</view>
  24. <view class="value">{{drugsBag.drugsTypeCount}}</view>
  25. </view>
  26. <view class="column">
  27. <view class="name">药品数:</view>
  28. <view class="value">{{drugsBag.drugsCount}}</view>
  29. </view>
  30. </scroll-view>
  31. </view>
  32. <view class="foot_btn_spe">
  33. <view class="column">
  34. <view class="btn" @click="goIndex()">知道了</view>
  35. <view class="btn" @click="createOrBuildOrder()" v-if="!orderId && config.drugsCreateSign === 1">建单并签到</view>
  36. <view class="btn" @click="createOrBuildOrder(orderId)" v-if="orderId && config.drugsReceiveSign === 1">接单并签到</view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. import {
  43. get,
  44. post,
  45. SM,
  46. webHandle
  47. } from "@/http/http.js";
  48. export default {
  49. data() {
  50. return {
  51. queryObj: {}, //路由传递过来的数据
  52. drugsBag: {}, //药包信息
  53. config: {}, //药品的业务流程配置
  54. orderId: undefined, //根据药包查询到的工单ID
  55. };
  56. },
  57. methods: {
  58. // 知道了
  59. goIndex(){
  60. uni.redirectTo({
  61. url: `/pages/receiptpage/receiptpage`,
  62. });
  63. },
  64. // 根据配置跳转页面
  65. pageNavigateByConfig(config, responseData, queryObj){
  66. let drugsBagType = queryObj.drugsBagType;
  67. let orderId = responseData.orderId;
  68. let drugsBagId = queryObj.drugsBagId;
  69. let orderStateValue = responseData.orderStateValue;
  70. if(config.drugsModel === 1){
  71. // 一单一码
  72. if(responseData.orderStateValue == 4){
  73. // 待到达
  74. if(config.drugsStartCheck === 1){
  75. // 起点科室支持核对
  76. uni.navigateTo({
  77. url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  78. });
  79. }else{
  80. // 起点科室不支持核对
  81. if(config.drugsStartPhoto === 1){
  82. // 起点科室支持拍照留存
  83. uni.navigateTo({
  84. url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  85. });
  86. }else{
  87. // 起点科室不支持拍照留存
  88. this.completeOrder(responseData, queryObj);
  89. }
  90. }
  91. }else if(responseData.orderStateValue == 5){
  92. // 待送达
  93. if(config.drugsEndCheck === 1){
  94. // 起点科室支持核对
  95. uni.navigateTo({
  96. url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  97. });
  98. }else{
  99. // 起点科室不支持核对
  100. if(config.drugsEndPhoto === 1){
  101. // 起点科室支持拍照留存
  102. uni.navigateTo({
  103. url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  104. });
  105. }else{
  106. // 起点科室不支持拍照留存
  107. this.completeOrder(responseData, queryObj);
  108. }
  109. }
  110. }
  111. }else if(config.drugsModel === 2){
  112. // 一单多码
  113. uni.navigateTo({
  114. url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${drugsBagType}&orderId=${orderId}&drugsBagId=${drugsBagId}&orderStateValue=${orderStateValue}`,
  115. });
  116. }
  117. },
  118. // 工单完成
  119. completeOrder(responseData, queryObj){
  120. uni.showLoading({
  121. title: "加载中",
  122. mask: true,
  123. });
  124. let postData = {
  125. "type": queryObj.drugsBagType,
  126. "orderId": responseData.orderId,
  127. };
  128. post('/transflow/checkComplete', postData).then(res => {
  129. uni.hideLoading();
  130. if(res.state == 200){
  131. uni.showToast({
  132. icon: "none",
  133. title: responseData.orderStateValue == 4 ? "交接成功,请尽快送达科室!" : (responseData.orderStateValue == 5 ? "交接成功,完成配送!" : ""),
  134. duration: 60000,
  135. mask: true,
  136. complete(){
  137. setTimeout(() => {
  138. uni.hideToast();
  139. uni.redirectTo({
  140. url: `/pages/receiptpage/receiptpage`,
  141. });
  142. }, 2000)
  143. }
  144. });
  145. }else{
  146. uni.showToast({
  147. icon: "none",
  148. title: res.msg || "接口获取数据失败!",
  149. });
  150. }
  151. })
  152. },
  153. // 建单并签到/接单并签到-orderId
  154. createOrBuildOrder(orderId){
  155. uni.showModal({
  156. title: "提示",
  157. content: `请确认是否${orderId ? '接' : '建'}单并签到?`,
  158. success: (result) => {
  159. if (result.confirm) {
  160. console.log("用户点击确定");
  161. let postData = {
  162. type: this.queryObj.drugsBagType,
  163. id: +this.queryObj.drugsBagId,
  164. orderId,
  165. };
  166. uni.showLoading({
  167. title: "加载中",
  168. mask: true,
  169. });
  170. post(`/transflow/createOrTakeOrder`, postData).then((ress) => {
  171. uni.hideLoading();
  172. if (ress.state == 200) {
  173. this.pageNavigateByConfig(this.config, ress.data, this.queryObj);
  174. } else {
  175. uni.showToast({
  176. icon: "none",
  177. title: ress.msg || "接口获取数据失败!",
  178. });
  179. }
  180. });
  181. } else if (result.cancel) {
  182. console.log("用户点击取消");
  183. }
  184. },
  185. });
  186. },
  187. //获取页面信息
  188. getInfo(){
  189. uni.showLoading({
  190. title: "加载中",
  191. mask: true,
  192. });
  193. post(`/transflow/scanInfo`, {type: this.queryObj.drugsBagType, id: +this.queryObj.drugsBagId, orderStateValue: '4'}).then(res => {
  194. uni.hideLoading();
  195. if(res.state == 200){
  196. if(res.data){
  197. this.drugsBag = res.data.dto || {};
  198. this.orderId = this.queryObj.orderId;
  199. this.config = res.data.taskTypeConfig || {};
  200. }
  201. }else{
  202. uni.showToast({
  203. icon: "none",
  204. title: res.msg || "接口获取数据失败!",
  205. });
  206. }
  207. })
  208. },
  209. },
  210. onLoad(options) {
  211. console.log(options, "options");
  212. this.queryObj = options;
  213. this.getInfo();
  214. // #ifdef APP-PLUS
  215. webHandle("no", "app");
  216. // #endif
  217. // #ifdef H5
  218. webHandle("no", "wx");
  219. // #endif
  220. },
  221. };
  222. </script>
  223. <style lang="less" scoped>
  224. .Scanning_Result {
  225. background: #FAFBFD;
  226. padding: 0 24rpx;
  227. display: flex;
  228. flex-direction: column;
  229. height: 100vh;
  230. .Scanning_top {
  231. margin: 50rpx auto 64rpx;
  232. .Scanning_top_icon {
  233. width: 128rpx;
  234. height: 128rpx;
  235. border-radius: 50%;
  236. .cubeic-ok {
  237. font-size: 128rpx;
  238. color: #35b34a;
  239. }
  240. }
  241. }
  242. .Scanning_cont {
  243. flex: 1;
  244. min-height: 0;
  245. display: flex;
  246. flex-direction: column;
  247. .scrollContent{
  248. flex: 1;
  249. min-height: 0;
  250. }
  251. .column{
  252. display: flex;
  253. justify-content: center;
  254. align-items: center;
  255. font-size: 30rpx;
  256. margin-bottom: 32rpx;
  257. .name{
  258. font-weight: bold;
  259. word-break: break-all;
  260. flex-shrink: 0;
  261. }
  262. .value{
  263. word-break: break-all;
  264. }
  265. }
  266. }
  267. .foot_btn_spe {
  268. margin: 24rpx 0;
  269. display: flex;
  270. flex-direction: column;
  271. align-items: center;
  272. gap: 24rpx;
  273. font-weight: bold;
  274. .column{
  275. width: 100%;
  276. height: 78rpx;
  277. display: flex;
  278. align-items: center;
  279. justify-content: space-between;
  280. gap: 24rpx;
  281. .btn {
  282. height: 100%;
  283. flex: 1;
  284. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  285. color: #fff;
  286. border-radius: 4rpx;
  287. font-size: 30rpx;
  288. display: flex;
  289. justify-content: center;
  290. align-items: center;
  291. }
  292. }
  293. }
  294. }
  295. </style>