backModel.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <template>
  2. <view class="changeHospital" v-show="disjunctor">
  3. <view class="changeHospital__wrap">
  4. <view class="changeHospital__header" v-if="title">
  5. {{ title }}
  6. </view>
  7. <view class="changeHospital__article">
  8. <view class="uni-list-cell">
  9. <view class="uni-list-cell-left">
  10. 退回原因:
  11. </view>
  12. <view class="uni-list-cell-db">
  13. <picker @change="bindPickerChange" :value="index" :range="list" class="pickerBack" range-key="name">
  14. <view class="uni-input">{{list[index]?list[index].name:''}}</view>
  15. </picker>
  16. </view>
  17. </view>
  18. <view class="uni-list-cell">
  19. <view class="uni-list-cell-left">
  20. 备注:
  21. </view>
  22. <view class="uni-list-cell-db">
  23. <textarea class="textarea" v-model="remarks" placeholder="请填写备注" />
  24. </view>
  25. </view>
  26. </view>
  27. <view class="changeHospital__footer">
  28. <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
  29. {{ operate.ok || "" }}
  30. </view>
  31. <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
  32. {{ operate.cancel || "" }}
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. import {
  40. post
  41. } from "../../http/http.js";
  42. export default {
  43. data() {
  44. return {
  45. index: -1,
  46. list: [],
  47. remarks: '',
  48. loading: false,
  49. timer: null,
  50. };
  51. },
  52. watch: {
  53. disjunctor(newValue) {
  54. if (newValue && this.operate.know == "知道了") {
  55. this.time = 5;
  56. this.timer = setInterval(() => {
  57. this.time--;
  58. if (this.time <= 0) {
  59. clearInterval(this.timer);
  60. this.know();
  61. }
  62. }, 1000);
  63. }
  64. },
  65. },
  66. props: {
  67. // 显示隐藏
  68. disjunctor: {
  69. type: Boolean,
  70. default: false,
  71. },
  72. // 标题
  73. title: {
  74. type: String,
  75. default: "提示",
  76. },
  77. // 操作按钮文字
  78. operate: {
  79. type: Object,
  80. default: () => {
  81. return {
  82. ok: "确认",
  83. cancel: "取消",
  84. };
  85. },
  86. },
  87. },
  88. methods: {
  89. // 获取退回原因
  90. getReasonForReturn() {
  91. post('/common/common/getDictionary', {
  92. "type": "list",
  93. "key": "reason_for_return"
  94. }).then(res => {
  95. this.list = res;
  96. })
  97. },
  98. // 修改退回原因
  99. bindPickerChange: function(e) {
  100. this.index = e.detail.value;
  101. },
  102. // 确定
  103. ok() {
  104. if (!this.list[this.index]) {
  105. uni.showToast({
  106. icon: 'none',
  107. title: '请选择退回原因!'
  108. })
  109. return;
  110. }
  111. this.$emit("ok", {
  112. reasonForReturn: this.list[this.index].id,
  113. remarks: this.remarks.trim()
  114. });
  115. },
  116. // 取消
  117. cancel() {
  118. this.$emit("cancel");
  119. },
  120. },
  121. created() {
  122. this.getReasonForReturn();
  123. }
  124. };
  125. </script>
  126. <style lang="less" scoped>
  127. .changeHospital {
  128. position: fixed;
  129. left: 0;
  130. right: 0;
  131. top: 0;
  132. bottom: 0;
  133. background-color: rgba(0, 0, 0, 0.2);
  134. z-index: 999;
  135. .uni-list-cell {
  136. width: 90%;
  137. display: flex;
  138. flex-direction: row;
  139. justify-content: space-evenly;
  140. align-items: center;
  141. text-align: center;
  142. margin-top: 32rpx;
  143. .uni-list-cell-left {
  144. flex: 3;
  145. font-size: 32rpx;
  146. color: #666;
  147. }
  148. .uni-list-cell-db {
  149. border: 1px solid #e5e9ed;
  150. background-color: #fff;
  151. padding: 16rpx 0;
  152. flex: 5;
  153. .textarea {
  154. text-align: left;
  155. width: 100%;
  156. padding: 0 16rpx;
  157. }
  158. .pickerBack {
  159. height: 36rpx;
  160. }
  161. }
  162. .uni-list-cell-db-text {
  163. flex: 5;
  164. text-align: left;
  165. }
  166. }
  167. .changeHospital__wrap {
  168. width: 90vw;
  169. position: absolute;
  170. left: 50%;
  171. top: 50%;
  172. transform: translate(-50%, -50%);
  173. background-color: #fff;
  174. border-radius: 12rpx;
  175. color: #666;
  176. .changeHospital__header {
  177. font-size: 36rpx;
  178. color: #000;
  179. height: 84rpx;
  180. display: flex;
  181. justify-content: center;
  182. align-items: center;
  183. }
  184. .changeHospital__article {
  185. width: 90%;
  186. margin: 0 auto 25rpx;
  187. padding: 48rpx 0;
  188. background-color: rgb(249, 250, 251);
  189. border: 2rpx solid rgb(229, 233, 237);
  190. border-radius: 12rpx;
  191. box-sizing: border-box;
  192. display: flex;
  193. flex-direction: column;
  194. justify-content: center;
  195. align-items: center;
  196. &.p0 {
  197. padding: 0;
  198. }
  199. .changeHospital__icon {
  200. font-size: 138rpx;
  201. margin-bottom: 32rpx;
  202. &.changeHospital__icon--success {
  203. color: rgb(52, 179, 73);
  204. }
  205. &.changeHospital__icon--warn {
  206. color: rgb(245, 165, 35);
  207. }
  208. &.changeHospital__icon--error {
  209. color: rgb(255, 58, 82);
  210. }
  211. }
  212. .changeHospital__content {
  213. font-size: 36rpx;
  214. }
  215. .changeHospital__info {
  216. font-size: 32rpx;
  217. color: rgb(102, 102, 102);
  218. }
  219. .specialCloseFlag {
  220. width: 90%;
  221. height: 100%;
  222. padding: 16rpx;
  223. }
  224. .radio-wrap {
  225. .radio-item {
  226. margin-top: 16rpx;
  227. /deep/ .uni-radio-input-checked {
  228. background-color: #49b856 !important;
  229. border-color: #49b856 !important;
  230. }
  231. }
  232. }
  233. }
  234. .changeHospital__footer {
  235. box-sizing: border-box;
  236. height: 100rpx;
  237. border-top: 2rpx solid rgb(229, 233, 237);
  238. display: flex;
  239. align-items: center;
  240. view {
  241. height: 100%;
  242. display: flex;
  243. align-items: center;
  244. justify-content: center;
  245. font-size: 36rpx;
  246. color: rgb(102, 102, 102);
  247. position: relative;
  248. &:nth-of-type(2)::before {
  249. content: "";
  250. position: absolute;
  251. left: 0;
  252. bottom: 0;
  253. width: 2rpx;
  254. height: 87rpx;
  255. background-color: rgb(229, 233, 237);
  256. }
  257. }
  258. .changeHospital__ok {
  259. flex: 1;
  260. color: rgb(73, 184, 86);
  261. }
  262. .changeHospital__cancel {
  263. flex: 1;
  264. }
  265. .changeHospital__know {
  266. flex: 1;
  267. color: rgb(73, 184, 86);
  268. }
  269. }
  270. }
  271. }
  272. </style>