transportationProcessRemarks.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <view class="transportationProcessRemarks">
  3. <view class="uni-list-cell">
  4. <view class="uni-list-cell-left">
  5. 备注:
  6. </view>
  7. <view class="uni-list-cell-db">
  8. <textarea maxlength="100" class="textarea" v-model="logRemarks" :placeholder="logPrompts" />
  9. </view>
  10. </view>
  11. <view class="uni-list-cell" v-if="customRemarks.length">
  12. <view class="uni-list-cell-left">
  13. 快捷输入:
  14. </view>
  15. <view class="uni-list-cell-db">
  16. <span class="addRemarks" v-for="(item, i) of customRemarks" :key="i" @click="addRemarks(item)">【{{ item }}】</span>
  17. </view>
  18. </view>
  19. <view class="foot_btn_spe">
  20. <view class="btn1" @click="postWorkerOrder()">完成工单</view>
  21. <view class="btn3" @click="goBack">返回</view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import * as commonFun from '../../tools/commonFun.js';
  27. import {
  28. get,
  29. post,
  30. webHandle
  31. } from "../../http/http.js";
  32. export default {
  33. data() {
  34. return {
  35. currentCode: '', //当前拍照使用的科室二维码
  36. options: {},
  37. logRemarks: '',
  38. logPrompts: '',
  39. customRemarks: [],
  40. //动作列表
  41. actions: [],
  42. //图片列表
  43. imageValue: [],
  44. };
  45. },
  46. methods:{
  47. // 返回
  48. goBack() {
  49. uni.navigateBack();
  50. },
  51. // 添加备注
  52. addRemarks(item) {
  53. this.logRemarks += item;
  54. },
  55. // 完成工单
  56. postWorkerOrder(){
  57. if(!this.logRemarks.trim()){
  58. uni.showToast({
  59. icon: "none",
  60. title: "请填写备注!",
  61. });
  62. return;
  63. }
  64. let data = this.options.data;
  65. let accountObj = this.options.accountObj;
  66. console.log(commonFun)
  67. commonFun[this.options.funName](this, this.options.data, this.options.accountObj);
  68. },
  69. },
  70. onLoad(options) {
  71. uni.hideLoading();
  72. options.data && (options.data = JSON.parse(options.data));
  73. options.accountObj && (options.accountObj = JSON.parse(options.accountObj));
  74. options.actions && (options.actions = JSON.parse(options.actions));
  75. options.imageValue && (options.imageValue = JSON.parse(options.imageValue));
  76. this.options = options;
  77. console.log(options);
  78. // 待送达
  79. if(options.data.taskType.associationType.value == 'other' && options.data.gdState.value == 5){
  80. let carryingCourses = options.data.taskType.carryingCourses[1];
  81. this.logPrompts = carryingCourses.logPrompts || "请填写备注,不超过100个字符";
  82. this.customRemarks = carryingCourses.logRemarks ? carryingCourses.logRemarks.split("$") : [];
  83. this.currentCode = options.currentCode;
  84. this.actions = options.actions;
  85. this.imageValue = options.imageValue;
  86. }
  87. }
  88. }
  89. </script>
  90. <style lang="less" scoped>
  91. .transportationProcessRemarks{
  92. padding: 16rpx;
  93. .textarea{
  94. width: 100%;
  95. border: 2rpx solid #d9d9d9;
  96. }
  97. .foot_btn_spe {
  98. width: 100%;
  99. position: fixed;
  100. bottom: 30rpx;
  101. left: 0;
  102. line-height: 88rpx;
  103. height: 88rpx;
  104. text-align: center;
  105. display: flex;
  106. justify-content: space-between;
  107. flex-wrap: wrap;
  108. &::after {
  109. content: '';
  110. flex: 1;
  111. }
  112. view {
  113. height: 88rpx;
  114. width: 48%;
  115. margin: 0 1%;
  116. background-image: linear-gradient(to right, #72c172, #3bb197);
  117. color: #fff;
  118. border-radius: 8rpx;
  119. font-size: 32rpx;
  120. margin-top: 16rpx;
  121. }
  122. }
  123. }
  124. </style>