changeSpeNum.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. <template>
  2. <view class="changeSpeNum" v-show="disjunctor">
  3. <view class="changeSpeNum__wrap">
  4. <view class="changeSpeNum__header" v-if="title">
  5. {{ title }}
  6. </view>
  7. <view class="changeSpeNum__article">
  8. <view class="tips" v-html="content" v-if="content"></view>
  9. <view class="uni-list-cell">
  10. <view class="uni-list-cell-left">
  11. 标本数量:
  12. </view>
  13. <view class="uni-list-cell-db">
  14. <uni-number-box v-model="speNum"></uni-number-box>
  15. </view>
  16. </view>
  17. <view class="uni-list-cell" v-if="speNum != num">
  18. <view class="uni-list-cell-left">
  19. 修改原因:
  20. </view>
  21. <view class="uni-list-cell-db-text">
  22. <textarea placeholder="请填写修改原因" v-model="reason" />
  23. </view>
  24. </view>
  25. <view class="uni-list-cell" v-if="speNum != num">
  26. <view class="uni-list-cell-left">
  27. 上传图片:
  28. </view>
  29. <view class="uni-list-cell-db">
  30. <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image" mode="grid"
  31. @select="selectFile" @delete="deleteFile"></uni-file-picker>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="changeSpeNum__footer">
  36. <view v-if="operate.ok" class="changeSpeNum__ok" @click="ok" hover-class="seimin-btn-hover">
  37. {{ operate.ok || "" }}
  38. </view>
  39. <view v-if="operate.check" class="changeSpeNum__ok" @click="check" hover-class="seimin-btn-hover">
  40. {{ operate.check || "" }}
  41. </view>
  42. <view v-if="operate.cancel" class="changeSpeNum__cancel" @click="cancel" hover-class="seimin-btn-hover">
  43. {{ operate.cancel || "" }}
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. import {
  51. post
  52. } from "../../http/http.js";
  53. export default {
  54. data() {
  55. return {
  56. imageValue: [], //图片列表
  57. speNum: 0, //修改后的数量
  58. reason: undefined, //修改原因
  59. loading: false,
  60. userData: null,
  61. hosId: null,
  62. timer: null,
  63. };
  64. },
  65. watch: {
  66. disjunctor(newValue) {
  67. if (newValue && this.operate.know == "知道了") {
  68. this.time = 5;
  69. this.timer = setInterval(() => {
  70. this.time--;
  71. if (this.time <= 0) {
  72. clearInterval(this.timer);
  73. this.know();
  74. }
  75. }, 1000);
  76. }
  77. },
  78. },
  79. props: {
  80. // 显示隐藏
  81. disjunctor: {
  82. type: Boolean,
  83. default: false,
  84. },
  85. // 标题
  86. title: {
  87. type: String,
  88. default: "提示",
  89. },
  90. // 提示
  91. content: {
  92. type: String,
  93. default: "",
  94. },
  95. // 操作按钮文字
  96. operate: {
  97. type: Object,
  98. default: () => {
  99. return {
  100. ok: "确认数量",
  101. check: "",
  102. cancel: "取消",
  103. };
  104. },
  105. },
  106. num: {
  107. type: Number,
  108. default: 0
  109. }
  110. },
  111. methods: {
  112. // 获取上传状态
  113. selectFile(e) {
  114. console.log('选择文件:', e)
  115. this.imageValue = this.imageValue.concat(e.tempFiles);
  116. },
  117. // 移除
  118. deleteFile(e) {
  119. console.log('移除:', e);
  120. this.imageValue = this.imageValue.filter(v=>v.uuid != e.tempFile.uuid);
  121. },
  122. // 确定
  123. ok() {
  124. this.$emit("ok", {
  125. speNum: this.speNum,
  126. reason: this.reason,
  127. imageValue: this.imageValue,
  128. });
  129. },
  130. // 详细核对
  131. check() {
  132. this.$emit("check");
  133. },
  134. // 取消
  135. cancel() {
  136. this.$emit("cancel");
  137. },
  138. },
  139. created() {
  140. this.speNum = this.num;
  141. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  142. }
  143. };
  144. </script>
  145. <style lang="less" scoped>
  146. .changeSpeNum {
  147. position: fixed;
  148. left: 0;
  149. right: 0;
  150. top: 0;
  151. bottom: 0;
  152. background-color: rgba(0, 0, 0, 0.2);
  153. z-index: 999;
  154. .tips{}
  155. .uni-list-cell {
  156. width: 94%;
  157. display: flex;
  158. flex-direction: row;
  159. justify-content: space-evenly;
  160. align-items: center;
  161. text-align: center;
  162. margin-top: 32rpx;
  163. .uni-list-cell-left {
  164. flex: 2;
  165. font-size: 32rpx;
  166. color: #666;
  167. }
  168. .uni-list-cell-db {
  169. padding: 16rpx 0;
  170. flex: 5;
  171. }
  172. .uni-list-cell-db-text {
  173. border: 1px solid #e5e9ed;
  174. background-color: #fff;
  175. flex: 5;
  176. text-align: left;
  177. textarea {
  178. width: 100%;
  179. box-sizing: border-box;
  180. padding: 0 8rpx;
  181. max-height: 150rpx;
  182. }
  183. }
  184. }
  185. .changeSpeNum__wrap {
  186. width: 90vw;
  187. position: absolute;
  188. left: 50%;
  189. top: 50%;
  190. transform: translate(-50%, -50%);
  191. background-color: #fff;
  192. border-radius: 12rpx;
  193. color: #666;
  194. .changeSpeNum__header {
  195. font-size: 36rpx;
  196. color: #000;
  197. height: 84rpx;
  198. display: flex;
  199. justify-content: center;
  200. align-items: center;
  201. }
  202. .changeSpeNum__article {
  203. width: 90%;
  204. margin: 0 auto 25rpx;
  205. padding: 48rpx 0;
  206. background-color: rgb(249, 250, 251);
  207. border: 2rpx solid rgb(229, 233, 237);
  208. border-radius: 12rpx;
  209. box-sizing: border-box;
  210. display: flex;
  211. flex-direction: column;
  212. justify-content: center;
  213. align-items: center;
  214. &.p0 {
  215. padding: 0;
  216. }
  217. .changeSpeNum__icon {
  218. font-size: 138rpx;
  219. margin-bottom: 32rpx;
  220. &.changeSpeNum__icon--success {
  221. color: rgb(52, 179, 73);
  222. }
  223. &.changeSpeNum__icon--warn {
  224. color: rgb(245, 165, 35);
  225. }
  226. &.changeSpeNum__icon--error {
  227. color: rgb(255, 58, 82);
  228. }
  229. }
  230. .changeSpeNum__content {
  231. font-size: 36rpx;
  232. }
  233. .changeSpeNum__info {
  234. font-size: 32rpx;
  235. color: rgb(102, 102, 102);
  236. }
  237. .specialCloseFlag {
  238. width: 90%;
  239. height: 100%;
  240. padding: 16rpx;
  241. }
  242. .radio-wrap {
  243. .radio-item {
  244. margin-top: 16rpx;
  245. /deep/ .uni-radio-input-checked {
  246. background-color: #49b856 !important;
  247. border-color: #49b856 !important;
  248. }
  249. }
  250. }
  251. }
  252. .changeSpeNum__footer {
  253. box-sizing: border-box;
  254. height: 100rpx;
  255. border-top: 2rpx solid rgb(229, 233, 237);
  256. display: flex;
  257. align-items: center;
  258. view {
  259. height: 100%;
  260. display: flex;
  261. align-items: center;
  262. justify-content: center;
  263. font-size: 36rpx;
  264. color: rgb(102, 102, 102);
  265. position: relative;
  266. &::before {
  267. content: "";
  268. position: absolute;
  269. left: 0;
  270. bottom: 0;
  271. width: 2rpx;
  272. height: 87rpx;
  273. background-color: rgb(229, 233, 237);
  274. }
  275. &:first-of-type::before {
  276. display: none;
  277. }
  278. }
  279. .changeSpeNum__ok {
  280. flex: 1;
  281. color: rgb(73, 184, 86);
  282. }
  283. .changeSpeNum__cancel {
  284. flex: 1;
  285. }
  286. .changeSpeNum__know {
  287. flex: 1;
  288. color: rgb(73, 184, 86);
  289. }
  290. }
  291. }
  292. }
  293. </style>