changeSpeNum.vue 7.9 KB

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