outpatientEndTaskType.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <image mode="widthFix" class="icon_service" src="../../../static/img/icon_service.png"></image>
  6. <view class="text1"> 追加服务 </view>
  7. </view>
  8. <view class="Scanning_top_text">
  9. 您已完成<strong class="red">{{taskNames}}</strong>,请继续完成以下追加服务
  10. </view>
  11. </view>
  12. <view class="Scanning_cont">
  13. <view class="Scanning_cont_list">
  14. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
  15. <checkbox-group @change="checkboxChange">
  16. <label class="Scanning_cont_list_item" v-for="item in addServiceTasks" :key="item.id">
  17. <view class="name">
  18. {{item.taskName}}
  19. </view>
  20. <view class="value">
  21. <checkbox :value="item.id" :checked="item.checked" />
  22. </view>
  23. </label>
  24. </checkbox-group>
  25. </scroll-view>
  26. </view>
  27. </view>
  28. <view class="foot_btn">
  29. <view class="btn" @click="ok()" v-if="addServiceTasks.length"> 确认追加 </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import {
  35. get,
  36. post,
  37. SM,
  38. webHandle
  39. } from "../../../http/http.js";
  40. export default {
  41. data() {
  42. return {
  43. taskNames: '',
  44. infoData: {},
  45. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  46. queryObj: {}, //路由传递过来的数据
  47. orderList: [],
  48. taskTypeConfig: {},
  49. addServiceTasks: [],
  50. };
  51. },
  52. methods: {
  53. // 追加服务
  54. ok(){
  55. console.log(this.addServiceTasks);
  56. uni.showLoading({
  57. title: "加载中",
  58. mask: true,
  59. });
  60. let postData = {workOrders: []};
  61. this.addServiceTasks.forEach(v => {
  62. postData.workOrders.push({
  63. "sourceId": 4,
  64. "taskType": {
  65. "id": v.id
  66. },
  67. "patient": {
  68. "patientCode": this.infoData.patientCode
  69. },
  70. "isRemand": 0,
  71. "isAccompany": 0
  72. });
  73. })
  74. post("/api/startOrder", postData).then((result) => {
  75. uni.hideLoading();
  76. if (result.status == 200) {
  77. uni.navigateTo({
  78. url: `/pages/outpatient/outpatientEndTaskTypeSuccess/outpatientEndTaskTypeSuccess?model=${encodeURIComponent(JSON.stringify(result))}`,
  79. });
  80. } else {
  81. uni.showToast({
  82. icon: "none",
  83. title: result.msg || "接口获取数据失败!",
  84. });
  85. }
  86. });
  87. },
  88. checkboxChange: function (e) {
  89. let items = this.addServiceTasks,
  90. values = e.detail.value;
  91. for (var i = 0, lenI = items.length; i < lenI; ++i) {
  92. const item = items[i]
  93. if(values.includes(item.value)){
  94. this.$set(item,'checked',true)
  95. }else{
  96. this.$set(item,'checked',false)
  97. }
  98. }
  99. },
  100. // 获取检查页面控制
  101. getTaskTypeConfig(){
  102. uni.showLoading({
  103. title: "加载中",
  104. mask: true,
  105. });
  106. post("/simple/data/fetchDataList/taskTypeConfig", {
  107. "idx": 0,
  108. "sum": 10,
  109. "taskTypeConfig": {
  110. "taskTypeDTO": {
  111. "hosId": {
  112. "id": this.hosId
  113. },
  114. "associationType": {
  115. "key": "association_types",
  116. "value": "inspect"
  117. }
  118. }
  119. }
  120. }).then((result) => {
  121. uni.hideLoading();
  122. if (result.status == 200) {
  123. let configs = result.list || [];
  124. if(configs.length){
  125. this.taskTypeConfig = configs[0];
  126. this.addServiceTasks = this.taskTypeConfig.addServiceTasks || [];
  127. }else{
  128. this.taskTypeConfig = {};
  129. this.addServiceTasks = [];
  130. }
  131. } else {
  132. uni.showToast({
  133. icon: "none",
  134. title: result.msg || "接口获取数据失败!",
  135. });
  136. }
  137. });
  138. },
  139. },
  140. onLoad(options) {
  141. console.log(options, "result");
  142. this.queryObj = options;
  143. if(options.model){
  144. this.infoData = JSON.parse(options.model);
  145. this.orderList = this.infoData.orderList || [];
  146. this.taskNames = this.infoData.taskNames;
  147. console.log(this.infoData);
  148. }
  149. this.getTaskTypeConfig();
  150. // #ifdef APP-PLUS
  151. webHandle("no", "app");
  152. // #endif
  153. // #ifdef H5
  154. webHandle("no", "wx");
  155. // #endif
  156. },
  157. };
  158. </script>
  159. <style lang="less" scoped>
  160. .Scanning_Result {
  161. height: 100vh;
  162. display: flex;
  163. flex-direction: column;
  164. background-color: #fff;
  165. /deep/ uni-checkbox .uni-checkbox-input{
  166. color: #35b34a!important;
  167. width: 30rpx!important;
  168. height: 30rpx!important;
  169. }
  170. .Scanning_top {
  171. flex-shrink: 0;
  172. .Scanning_top_icon {
  173. padding-top: 26rpx;
  174. display: flex;
  175. flex-direction: column;
  176. justify-content: center;
  177. align-items: center;
  178. .icon_service{
  179. width: 115rpx;
  180. }
  181. .cubeic-ok {
  182. font-size: 140rpx;
  183. color: #35b34a;
  184. }
  185. .text1 {
  186. margin-top: 30rpx;
  187. font-size: 40rpx;
  188. font-weight: bold;
  189. }
  190. }
  191. .Scanning_top_text{
  192. text-align: center;
  193. font-size: 30rpx;
  194. font-weight: bold;
  195. padding: 8rpx 0 23rpx 0;
  196. }
  197. }
  198. .Scanning_cont {
  199. flex: 1;
  200. min-height: 0;
  201. display: flex;
  202. flex-direction: column;
  203. margin: 0 45rpx;
  204. .Scanning_cont_head{
  205. flex-shrink: 0;
  206. height: 78rpx;
  207. display: flex;
  208. border-top: 1rpx solid #EEEEEE;
  209. border-bottom: 1rpx solid #EEEEEE;
  210. .Scanning_cont_head_item{
  211. flex: 1;
  212. font-size: 32rpx;
  213. font-weight: bold;
  214. display: flex;
  215. justify-content: center;
  216. align-items: center;
  217. position: relative;
  218. &.active{
  219. color: #49B856;
  220. &::before{
  221. content: '';
  222. width: 70rpx;
  223. height: 10rpx;
  224. background-color: #49B856;
  225. position: absolute;
  226. left: 50%;
  227. bottom: 0;
  228. transform: translateX(-50%);
  229. border-radius: 6rpx;
  230. }
  231. }
  232. &::after{
  233. content: '';
  234. width: 2rpx;
  235. height: 44rpx;
  236. background-color: #D1D1D1;
  237. position: absolute;
  238. right: 0;
  239. top: 50%;
  240. transform: translateY(-50%);
  241. }
  242. &:last-of-type::after{
  243. opacity: 0;
  244. }
  245. }
  246. }
  247. .Scanning_cont_list{
  248. flex: 1;
  249. min-height: 0;
  250. display: flex;
  251. flex-direction: column;
  252. .Scanning_cont_list_scroll{
  253. flex: 1;
  254. min-height: 0;
  255. border: 1rpx solid #E9E9E9;
  256. }
  257. .Scanning_cont_list_item{
  258. height: 63rpx;
  259. display: flex;
  260. align-items: center;
  261. font-size: 30rpx;
  262. border-bottom: 2rpx dashed #D3D3D3;
  263. border-top: none;
  264. margin: 0 18rpx;
  265. &:last-of-type{
  266. border-bottom: 1rpx dashed #E9E9E9;
  267. }
  268. &.Scanning_cont_list_head{
  269. font-weight: bold;
  270. font-size: 28rpx;
  271. border-top: 1rpx solid #272727;
  272. flex-shrink: 0;
  273. }
  274. .name,
  275. .value{
  276. flex: 1;
  277. display: flex;
  278. align-items: center;
  279. height: 100%;
  280. font-weight: bold;
  281. line-height: 1;
  282. }
  283. .value {
  284. justify-content: flex-end;
  285. }
  286. }
  287. }
  288. }
  289. .foot_btn {
  290. margin: 30rpx;
  291. flex-shrink: 0;
  292. line-height: 88rpx;
  293. display: flex;
  294. justify-content: center;
  295. .btn {
  296. height: 88rpx;
  297. flex: 1;
  298. margin-right: 1%;
  299. background-image: linear-gradient(to right, #72c172, #3bb197);
  300. color: #fff;
  301. border-radius: 8rpx;
  302. font-size: 34rpx;
  303. font-weight: bold;
  304. text-align: center;
  305. &:last-of-type{
  306. margin-right: 0;
  307. }
  308. }
  309. }
  310. }
  311. </style>