nucleicAcidCollection.vue 6.9 KB

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