createOrder.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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="queryObj.type === 'build' && config.drugsCreateSign === 1">建单并签到</view>
  36. <view class="btn" @click="createOrBuildOrder(orderId)" v-if="queryObj.type === 'receive' && 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. if(ress.data.msg){
  174. uni.showToast({
  175. icon: "none",
  176. title: ress.data.msg || "接口获取数据失败!",
  177. });
  178. }else{
  179. this.pageNavigateByConfig(this.config, ress.data, this.queryObj);
  180. }
  181. } else {
  182. uni.showToast({
  183. icon: "none",
  184. title: ress.msg || "接口获取数据失败!",
  185. });
  186. }
  187. });
  188. } else if (result.cancel) {
  189. console.log("用户点击取消");
  190. }
  191. },
  192. });
  193. },
  194. //获取页面信息
  195. getInfo(){
  196. uni.showLoading({
  197. title: "加载中",
  198. mask: true,
  199. });
  200. post(`/transflow/scanInfo`, {type: this.queryObj.drugsBagType, id: +this.queryObj.drugsBagId, orderStateValue: '4'}).then(res => {
  201. uni.hideLoading();
  202. if(res.state == 200){
  203. if(res.data){
  204. this.drugsBag = res.data.dto || {};
  205. this.orderId = this.queryObj.orderId;
  206. this.config = res.data.taskTypeConfig || {};
  207. }
  208. }else{
  209. uni.showToast({
  210. icon: "none",
  211. title: res.msg || "接口获取数据失败!",
  212. });
  213. }
  214. })
  215. },
  216. },
  217. onLoad(options) {
  218. console.log(options, "options");
  219. this.queryObj = options;
  220. this.getInfo();
  221. // #ifdef APP-PLUS
  222. webHandle("no", "app");
  223. // #endif
  224. // #ifdef H5
  225. webHandle("no", "wx");
  226. // #endif
  227. },
  228. };
  229. </script>
  230. <style lang="less" scoped>
  231. .Scanning_Result {
  232. background: #FAFBFD;
  233. padding: 0 24rpx;
  234. display: flex;
  235. flex-direction: column;
  236. height: 100vh;
  237. .Scanning_top {
  238. margin: 50rpx auto 64rpx;
  239. .Scanning_top_icon {
  240. width: 128rpx;
  241. height: 128rpx;
  242. border-radius: 50%;
  243. .cubeic-ok {
  244. font-size: 128rpx;
  245. color: #35b34a;
  246. }
  247. }
  248. }
  249. .Scanning_cont {
  250. flex: 1;
  251. min-height: 0;
  252. display: flex;
  253. flex-direction: column;
  254. .scrollContent{
  255. flex: 1;
  256. min-height: 0;
  257. }
  258. .column{
  259. display: flex;
  260. justify-content: center;
  261. align-items: center;
  262. font-size: 30rpx;
  263. margin-bottom: 32rpx;
  264. .name{
  265. font-weight: bold;
  266. word-break: break-all;
  267. flex-shrink: 0;
  268. }
  269. .value{
  270. word-break: break-all;
  271. }
  272. }
  273. }
  274. .foot_btn_spe {
  275. margin: 24rpx 0;
  276. display: flex;
  277. flex-direction: column;
  278. align-items: center;
  279. gap: 24rpx;
  280. font-weight: bold;
  281. .column{
  282. width: 100%;
  283. height: 78rpx;
  284. display: flex;
  285. align-items: center;
  286. justify-content: space-between;
  287. gap: 24rpx;
  288. .btn {
  289. height: 100%;
  290. flex: 1;
  291. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  292. color: #fff;
  293. border-radius: 4rpx;
  294. font-size: 30rpx;
  295. display: flex;
  296. justify-content: center;
  297. align-items: center;
  298. }
  299. }
  300. }
  301. }
  302. </style>