quickOrderAcceptanceWx.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. <template>
  2. <view class="formManagementWechat">
  3. <view class="page_tab">
  4. <view class="page_tab_bar active">
  5. <view class="tab_dept">快捷接单</view>
  6. </view>
  7. </view>
  8. <view v-if="zxzData.length == 0" class="zwsj">
  9. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  10. <view class="zwsj-txt">暂无数据</view>
  11. </view>
  12. <view v-if="zxzData.length" class="page_items">
  13. <scroll-view class="page_items_scroll" scroll-y>
  14. <checkbox-group @change="checkboxChange">
  15. <label class="goWorkSelect-item relative" v-for="item in zxzData" :key="item.id">
  16. <checkbox :value="item.id" :checked="item.checked" />
  17. <view>{{ item.name }}</view>
  18. </label>
  19. </checkbox-group>
  20. </scroll-view>
  21. </view>
  22. <!-- 底部 -->
  23. <view class="foot_btn2 footerPadding">
  24. <view class="btn2" @click="confirm">确认接单</view>
  25. <view class="btn2" @click="goBack">返回</view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import {
  31. get,
  32. post,
  33. webHandle
  34. } from "../../http/http.js";
  35. export default {
  36. data() {
  37. return {
  38. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  39. options: {},
  40. //列表数据
  41. zxzData: [],
  42. };
  43. },
  44. methods: {
  45. // 确认接单
  46. confirm(){
  47. let ids = this.zxzData.filter(v => v.checked).map(v => v.id).toString();
  48. if(!ids){
  49. uni.showToast({
  50. icon: "none",
  51. title: "请至少选择一项!",
  52. });
  53. return;
  54. }
  55. uni.showLoading({
  56. title: "加载中",
  57. mask: true,
  58. });
  59. post("/workerOrder/getReceiveOrderIds", {ids}).then((res) => {
  60. uni.hideLoading();
  61. if (res.status == 200) {
  62. uni.showModal({
  63. title: "提示",
  64. content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
  65. success: function(result) {
  66. if (result.confirm) {
  67. uni.showLoading({
  68. title: "加载中",
  69. mask: true,
  70. });
  71. post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
  72. uni.hideLoading();
  73. if (result.status == 200) {
  74. uni.showModal({
  75. title: "提示",
  76. content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
  77. showCancel: false,
  78. success: function(res) {
  79. if (res.confirm) {
  80. console.log("用户点击确定");
  81. uni.navigateTo({
  82. url: "../receiptpage/receiptpage",
  83. });
  84. } else if (res.cancel) {
  85. console.log("用户点击取消");
  86. }
  87. },
  88. });
  89. } else {
  90. uni.showToast({
  91. icon: "none",
  92. title: result.msg || "接口获取数据失败!",
  93. });
  94. }
  95. });
  96. } else if (result.cancel) {
  97. console.log("用户点击取消");
  98. }
  99. },
  100. });
  101. } else {
  102. uni.showToast({
  103. icon: "none",
  104. title: res.msg || "接口获取数据失败!",
  105. });
  106. }
  107. });
  108. },
  109. // 选择多选框
  110. checkboxChange: function(e) {
  111. let items = this.zxzData,
  112. values = e.detail.value;
  113. for (let i = 0, lenI = items.length; i < lenI; ++i) {
  114. const item = items[i]
  115. if (values.includes(item.id)) {
  116. this.$set(item, 'checked', true)
  117. } else {
  118. this.$set(item, 'checked', false)
  119. }
  120. }
  121. },
  122. // 返回
  123. goBack() {
  124. uni.navigateBack();
  125. },
  126. //获取快捷接单类型
  127. getReceiveRuleType() {
  128. let postData = {
  129. "type": "list",
  130. "key": "receiveRuleType"
  131. };
  132. uni.showLoading({
  133. title: "加载中",
  134. mask: true,
  135. });
  136. // 请求列表数据
  137. post("/common/common/getDictionary", postData).then((res) => {
  138. let type = res.find(v => v.value == 1);
  139. this.getList(type);
  140. });
  141. },
  142. //表单列表获取
  143. getList(type) {
  144. let postData = {
  145. "idx": 0,
  146. "sum": 9999,
  147. "receiveOrderRule": {
  148. "hosId": this.hosId,
  149. type,
  150. }
  151. };
  152. uni.showLoading({
  153. title: "加载中",
  154. mask: true,
  155. });
  156. // 请求列表数据
  157. post("/simple/data/fetchDataList/receiveOrderRule", postData).then((res) => {
  158. uni.hideLoading();
  159. if (res.status == 200) {
  160. res.list = res.list || [];
  161. this.zxzData = res.list.map(v => ({
  162. id: v.id,
  163. name: v.title,
  164. checked: false,
  165. }))
  166. } else {
  167. this.zxzData = [];
  168. uni.showToast({
  169. icon: "none",
  170. title: res.msg || "接口获取数据失败!",
  171. });
  172. }
  173. });
  174. },
  175. // 阻止浏览器滑动
  176. stop(e) {
  177. e.preventDefault();
  178. },
  179. },
  180. onLoad(options) {
  181. console.log(options);
  182. this.options = options;
  183. this.getReceiveRuleType();
  184. // #ifdef APP-PLUS
  185. webHandle("no", "app");
  186. // #endif
  187. // #ifdef H5
  188. webHandle("no", "wx");
  189. // #endif
  190. },
  191. onShow() {
  192. // #ifdef H5
  193. document.body.addEventListener("touchmove", this.stop, {
  194. passive: false,
  195. });
  196. // #endif
  197. },
  198. onHide() {
  199. // #ifdef H5
  200. document.body.removeEventListener("touchmove", this.stop, {
  201. passive: false,
  202. });
  203. // #endif
  204. },
  205. };
  206. </script>
  207. <style lang="less" scoped>
  208. .formManagementWechat {
  209. width: 100%;
  210. height: 100%;
  211. position: relative;
  212. .foot_btn2 {
  213. position: fixed;
  214. bottom: 0;
  215. right: 20rpx;
  216. left: 20rpx;
  217. line-height: 66rpx;
  218. height: 100rpx;
  219. border-top: 2rpx solid #e5e9ed;
  220. background: #f9fafb;
  221. display: flex;
  222. justify-content: space-between;
  223. .btn2 {
  224. height: 66rpx;
  225. width: 100%;
  226. margin: 0 1%;
  227. background-image: linear-gradient(to right, #72c172, #3bb197);
  228. color: #fff;
  229. border-radius: 8rpx;
  230. font-size: 32rpx;
  231. margin-top: 16rpx;
  232. text-align: center;
  233. }
  234. .btn3 {
  235. height: 66rpx;
  236. width: 48%;
  237. margin: 0 1%;
  238. background-image: linear-gradient(to right, #72c172, #3bb197);
  239. color: #fff;
  240. border-radius: 8rpx;
  241. font-size: 32rpx;
  242. margin-top: 16rpx;
  243. text-align: center;
  244. }
  245. }
  246. .newicon {
  247. color: #49b856;
  248. font-size: 50rpx;
  249. &.colorRed {
  250. color: red;
  251. font-size: 40rpx;
  252. }
  253. }
  254. .page_tab {
  255. width: 100%;
  256. height: 96rpx;
  257. display: flex;
  258. position: fixed;
  259. left: 0;
  260. top: 0;
  261. z-index: 999;
  262. .page_tab_bar {
  263. flex: 1;
  264. font-size: 36rpx;
  265. background: #fff;
  266. display: flex;
  267. justify-content: center;
  268. align-items: center;
  269. position: relative;
  270. &:after {
  271. content: "";
  272. position: absolute;
  273. left: 0;
  274. bottom: 0;
  275. height: 2rpx;
  276. width: 100%;
  277. background-color: transparent;
  278. }
  279. .tab_dept {
  280. position: relative;
  281. .changeDept {
  282. white-space: nowrap;
  283. margin: 0;
  284. position: absolute;
  285. right: 0;
  286. top: 50%;
  287. transform: translate(105%, -50%);
  288. padding: 0 0.5em;
  289. line-height: 2;
  290. }
  291. }
  292. &.active {
  293. color: #49b856;
  294. &:after {
  295. background-color: #49b856;
  296. }
  297. }
  298. }
  299. }
  300. .zwsj {
  301. position: absolute;
  302. left: 50%;
  303. top: 180rpx;
  304. transform: translateX(-50%);
  305. .zwsj-img {
  306. width: 560rpx;
  307. }
  308. .zwsj-txt {
  309. font-size: 36rpx;
  310. font-weight: 700;
  311. margin-top: 20rpx;
  312. text-align: center;
  313. }
  314. }
  315. .page_items {
  316. height: calc(100vh - 284rpx);
  317. padding: 0 20rpx;
  318. padding-top: 96rpx;
  319. .page_items_scroll {
  320. height: 100%;
  321. .goWorkSelect-item {
  322. height: 52rpx;
  323. display: flex;
  324. align-items: center;
  325. border-bottom: 2rpx solid #e5e9ed;
  326. padding: 16rpx;
  327. &.relative {
  328. position: relative;
  329. .picker {
  330. position: absolute;
  331. width: 100%;
  332. padding-left: 64rpx;
  333. }
  334. }
  335. button {
  336. font-size: 32rpx;
  337. height: 52rpx;
  338. line-height: 52rpx;
  339. margin: 0;
  340. margin-left: 16rpx;
  341. color: rgb(7, 134, 60);
  342. font-weight: 700;
  343. }
  344. }
  345. }
  346. }
  347. }
  348. </style>