checkNumberPage.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <template>
  2. <view class="checkNumberPage">
  3. <view class="title">请填写本次您送达的标本数量!</view>
  4. <view class="page_item_wrap">
  5. <view class="changeSpeNum__article">
  6. <view class="uni-list-cell">
  7. <view class="uni-list-cell-left">
  8. 标本数量:
  9. </view>
  10. <view class="uni-list-cell-db">
  11. <uni-number-box v-model="speNum"></uni-number-box>
  12. </view>
  13. </view>
  14. <view class="uni-list-cell" v-if="speNum != num">
  15. <view class="uni-list-cell-left">
  16. 上传图片:
  17. </view>
  18. <view class="uni-list-cell-db">
  19. <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image"
  20. mode="grid" @select="selectFile" @delete="deleteFile"></uni-file-picker>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="foot_btn2">
  26. <view class="btn2" @click="createOrder">确认数量</view>
  27. <view class="btn2" @click="goto()">查看标本</view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import {
  33. get,
  34. post,
  35. webHandle
  36. } from "../../http/http.js";
  37. export default {
  38. data() {
  39. return {
  40. options: {},
  41. imageValue: [], //图片列表
  42. speNum: 0, //修改后的数量
  43. num: 0,
  44. reason: undefined, //修改原因
  45. msg: {}, //页面展示信息
  46. };
  47. },
  48. methods: {
  49. // 获取上传状态
  50. selectFile(e) {
  51. console.log('选择文件:', e)
  52. this.imageValue = this.imageValue.concat(e.tempFiles);
  53. },
  54. // 移除
  55. deleteFile(e) {
  56. console.log('移除:', e);
  57. this.imageValue = this.imageValue.filter(v => v.uuid != e.tempFile.uuid);
  58. },
  59. // 获取信息
  60. getInfo() {
  61. uni.showLoading({
  62. mask: true,
  63. title: '加载中'
  64. })
  65. let postData = {
  66. deptId: this.options.deptId,
  67. gdId: this.msg.id
  68. };
  69. post(`/api/getStartDeptSpecimensNum`, postData).then((res) => {
  70. uni.hideLoading();
  71. if (res.status == 200) {
  72. this.speNum = res.deptSpecimensNum;
  73. } else {
  74. uni.showToast({
  75. icon: "none",
  76. title: "请求失败!",
  77. });
  78. }
  79. });
  80. },
  81. // 查看标本
  82. goto() {
  83. uni.navigateTo({
  84. url: `../../pages/checkNumberDetail/checkNumberDetail?startDeptId=${this.msg.startDept.id}&deptId=${this.options.deptId}`,
  85. });
  86. },
  87. // 确认数量并建单
  88. createOrder() {
  89. uni.showModal({
  90. title: '提示',
  91. content: "您确认建单吗?",
  92. success: (res) => {
  93. if (res.confirm) {
  94. console.log('用户点击确定');
  95. uni.showLoading({
  96. mask: true,
  97. title: '加载中'
  98. })
  99. get(`/workerOrder/createQuickOrder/${this.msg.id}`, {}).then((res) => {
  100. console.log(res)
  101. uni.hideLoading();
  102. if (res.status == 200) {
  103. if (res.type === 'plan-spe-ddd-2') {
  104. //需要扫描标本
  105. uni.navigateTo({
  106. url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined`,
  107. });
  108. } else {
  109. uni.navigateTo({
  110. url: "../receiptpage/receiptpage",
  111. });
  112. }
  113. } else {
  114. uni.showToast({
  115. icon: "none",
  116. title: "请求失败!",
  117. });
  118. }
  119. });
  120. } else if (res.cancel) {
  121. console.log('用户点击取消');
  122. }
  123. }
  124. });
  125. },
  126. },
  127. onLoad(options) {
  128. console.log(options, "快捷建单");
  129. this.options = options;
  130. this.msg = JSON.parse(options.infoDATA);
  131. this.getInfo();
  132. // #ifdef APP-PLUS
  133. webHandle("no", "app");
  134. // #endif
  135. // #ifdef H5
  136. webHandle("no", "wx");
  137. // #endif
  138. },
  139. };
  140. </script>
  141. <style lang="less" scoped>
  142. .checkNumberPage {
  143. padding-bottom: 100rpx;
  144. .title {
  145. font-size: 48rpx;
  146. margin-top: 24rpx;
  147. margin-bottom: 24rpx;
  148. text-align: center;
  149. }
  150. .page_item_wrap {
  151. width: 100%;
  152. height: auto;
  153. box-sizing: border-box;
  154. position: relative;
  155. margin-bottom: 16rpx;
  156. .uni-list-cell {
  157. width: 94%;
  158. display: flex;
  159. flex-direction: row;
  160. justify-content: space-evenly;
  161. align-items: center;
  162. text-align: center;
  163. margin-top: 32rpx;
  164. .uni-list-cell-left {
  165. flex: 2;
  166. font-size: 32rpx;
  167. color: #666;
  168. }
  169. .uni-list-cell-db {
  170. padding: 16rpx 0;
  171. flex: 5;
  172. }
  173. .uni-list-cell-db-text {
  174. border: 1px solid #e5e9ed;
  175. background-color: #fff;
  176. flex: 5;
  177. text-align: left;
  178. textarea {
  179. width: 100%;
  180. box-sizing: border-box;
  181. padding: 0 8rpx;
  182. max-height: 150rpx;
  183. }
  184. }
  185. }
  186. }
  187. .foot_btn2 {
  188. position: fixed;
  189. bottom: 0;
  190. width: 100vw;
  191. padding: 0 20rpx;
  192. box-sizing: border-box;
  193. line-height: 66rpx;
  194. height: 100rpx;
  195. border-top: 2rpx solid #e5e9ed;
  196. background: #f9fafb;
  197. text-align: center;
  198. display: flex;
  199. justify-content: center;
  200. align-items: center;
  201. .btn2 {
  202. height: 66rpx;
  203. flex: 1;
  204. margin: 16rpx 16rpx 0;
  205. background-image: linear-gradient(to right, #72c172, #3bb197);
  206. color: #fff;
  207. border-radius: 8rpx;
  208. font-size: 32rpx;
  209. }
  210. }
  211. }
  212. </style>