outpatientEndTaskType.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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.filter(v => v.checked).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.id)){
  94. this.$set(item,'checked',true)
  95. }else{
  96. this.$set(item,'checked',false)
  97. }
  98. }
  99. console.log(e, this.addServiceTasks);
  100. },
  101. // 获取检查页面控制
  102. getTaskTypeConfig(){
  103. uni.showLoading({
  104. title: "加载中",
  105. mask: true,
  106. });
  107. post("/simple/data/fetchDataList/taskTypeConfig", {
  108. "idx": 0,
  109. "sum": 10,
  110. "taskTypeConfig": {
  111. "taskTypeDTO": {
  112. "hosId": {
  113. "id": this.hosId
  114. },
  115. "associationType": {
  116. "key": "association_types",
  117. "value": "inspect"
  118. }
  119. }
  120. }
  121. }).then((result) => {
  122. uni.hideLoading();
  123. if (result.status == 200) {
  124. let configs = result.list || [];
  125. if(configs.length){
  126. this.taskTypeConfig = configs[0];
  127. this.addServiceTasks = this.taskTypeConfig.addServiceTasks || [];
  128. }else{
  129. this.taskTypeConfig = {};
  130. this.addServiceTasks = [];
  131. }
  132. } else {
  133. uni.showToast({
  134. icon: "none",
  135. title: result.msg || "接口获取数据失败!",
  136. });
  137. }
  138. });
  139. },
  140. },
  141. onLoad(options) {
  142. console.log(options, "result");
  143. this.queryObj = options;
  144. if(options.model){
  145. this.infoData = JSON.parse(options.model);
  146. this.orderList = this.infoData.orderList || [];
  147. this.taskNames = this.infoData.taskNames;
  148. console.log(this.infoData);
  149. }
  150. this.getTaskTypeConfig();
  151. // #ifdef APP-PLUS
  152. webHandle("no", "app");
  153. // #endif
  154. // #ifdef H5
  155. webHandle("no", "wx");
  156. // #endif
  157. },
  158. };
  159. </script>
  160. <style lang="less" scoped>
  161. .Scanning_Result {
  162. height: 100vh;
  163. display: flex;
  164. flex-direction: column;
  165. background-color: #fff;
  166. /deep/ uni-checkbox .uni-checkbox-input{
  167. color: #35b34a!important;
  168. width: 30rpx!important;
  169. height: 30rpx!important;
  170. }
  171. .Scanning_top {
  172. flex-shrink: 0;
  173. .Scanning_top_icon {
  174. padding-top: 26rpx;
  175. display: flex;
  176. flex-direction: column;
  177. justify-content: center;
  178. align-items: center;
  179. .icon_service{
  180. width: 115rpx;
  181. }
  182. .cubeic-ok {
  183. font-size: 140rpx;
  184. color: #35b34a;
  185. }
  186. .text1 {
  187. margin-top: 30rpx;
  188. font-size: 40rpx;
  189. font-weight: bold;
  190. }
  191. }
  192. .Scanning_top_text{
  193. text-align: center;
  194. font-size: 30rpx;
  195. font-weight: bold;
  196. padding: 8rpx 0 23rpx 0;
  197. }
  198. }
  199. .Scanning_cont {
  200. flex: 1;
  201. min-height: 0;
  202. display: flex;
  203. flex-direction: column;
  204. margin: 0 45rpx;
  205. .Scanning_cont_head{
  206. flex-shrink: 0;
  207. height: 78rpx;
  208. display: flex;
  209. border-top: 1rpx solid #EEEEEE;
  210. border-bottom: 1rpx solid #EEEEEE;
  211. .Scanning_cont_head_item{
  212. flex: 1;
  213. font-size: 32rpx;
  214. font-weight: bold;
  215. display: flex;
  216. justify-content: center;
  217. align-items: center;
  218. position: relative;
  219. &.active{
  220. color: #49B856;
  221. &::before{
  222. content: '';
  223. width: 70rpx;
  224. height: 10rpx;
  225. background-color: #49B856;
  226. position: absolute;
  227. left: 50%;
  228. bottom: 0;
  229. transform: translateX(-50%);
  230. border-radius: 6rpx;
  231. }
  232. }
  233. &::after{
  234. content: '';
  235. width: 2rpx;
  236. height: 44rpx;
  237. background-color: #D1D1D1;
  238. position: absolute;
  239. right: 0;
  240. top: 50%;
  241. transform: translateY(-50%);
  242. }
  243. &:last-of-type::after{
  244. opacity: 0;
  245. }
  246. }
  247. }
  248. .Scanning_cont_list{
  249. flex: 1;
  250. min-height: 0;
  251. display: flex;
  252. flex-direction: column;
  253. .Scanning_cont_list_scroll{
  254. flex: 1;
  255. min-height: 0;
  256. border: 1rpx solid #E9E9E9;
  257. }
  258. .Scanning_cont_list_item{
  259. height: 63rpx;
  260. display: flex;
  261. align-items: center;
  262. font-size: 30rpx;
  263. border-bottom: 2rpx dashed #D3D3D3;
  264. border-top: none;
  265. margin: 0 18rpx;
  266. &:last-of-type{
  267. border-bottom: 1rpx dashed #E9E9E9;
  268. }
  269. &.Scanning_cont_list_head{
  270. font-weight: bold;
  271. font-size: 28rpx;
  272. border-top: 1rpx solid #272727;
  273. flex-shrink: 0;
  274. }
  275. .name,
  276. .value{
  277. display: flex;
  278. align-items: center;
  279. height: 100%;
  280. font-weight: bold;
  281. line-height: 1;
  282. }
  283. .name{
  284. flex: 1;
  285. }
  286. .value {
  287. justify-content: flex-end;
  288. }
  289. }
  290. }
  291. }
  292. .foot_btn {
  293. margin: 30rpx;
  294. flex-shrink: 0;
  295. line-height: 88rpx;
  296. display: flex;
  297. justify-content: center;
  298. .btn {
  299. height: 88rpx;
  300. flex: 1;
  301. margin-right: 1%;
  302. background-image: linear-gradient(to right, #72c172, #3bb197);
  303. color: #fff;
  304. border-radius: 8rpx;
  305. font-size: 34rpx;
  306. font-weight: bold;
  307. text-align: center;
  308. &:last-of-type{
  309. margin-right: 0;
  310. }
  311. }
  312. }
  313. }
  314. </style>