inspectRemoveModel.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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. <text v-if="icon" class="changeHospital__icon icon_transport" :class="[
  9. 'changeHospital__icon--' + icon,
  10. { 'transport-duigou': icon === 'success' },
  11. { 'transport-shibai': icon === 'error' },
  12. { 'transport-wenhao': icon === 'warn' },
  13. ]"></text>
  14. <view v-if="content" class="changeHospital__content" v-html="content"></view>
  15. <view class="uni-list-cell" v-show="remove">
  16. <view class="uni-list-cell-left">
  17. 移除原因:
  18. </view>
  19. <view class="uni-list-cell-db-text">
  20. <radio-group @change="radioChange">
  21. <label class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in removeReasons"
  22. :key="item.value">
  23. <view>
  24. <radio :value="item.value" :checked="index === current" />
  25. </view>
  26. <view>{{item.name}}</view>
  27. </label>
  28. </radio-group>
  29. </view>
  30. </view>
  31. <view class="uni-list-cell" v-show="current === 1 || !remove">
  32. <view class="uni-list-cell-left">
  33. 预约时间:
  34. </view>
  35. <view class="uni-list-cell-db-text">
  36. <uni-datetime-picker v-model="yyTime" returnType="date" :start="startTimestamp" />
  37. </view>
  38. </view>
  39. </view>
  40. <view class="changeHospital__footer">
  41. <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
  42. {{ operate.ok || "" }}
  43. </view>
  44. <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel"
  45. hover-class="seimin-btn-hover">
  46. {{ operate.cancel || "" }}
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. import {
  54. post
  55. } from "../../http/http.js";
  56. export default {
  57. data() {
  58. return {
  59. startTimestamp: Date.now(),
  60. removeReasons: [{
  61. value: '1',
  62. name: '检查已做',
  63. },
  64. {
  65. value: '2',
  66. name: '修改检查时间',
  67. },
  68. ],
  69. current: -1,
  70. userData: null,
  71. hosId: null,
  72. timer: null,
  73. yyTime: '', //预约时间
  74. };
  75. },
  76. watch: {
  77. disjunctor(newValue) {
  78. console.log(newValue)
  79. if(newValue){
  80. this.startTimestamp = Date.now();
  81. this.current = -1;
  82. this.yyTime = '';
  83. }
  84. if (newValue && this.operate.know == "知道了") {
  85. this.time = 5;
  86. this.timer = setInterval(() => {
  87. this.time--;
  88. if (this.time <= 0) {
  89. clearInterval(this.timer);
  90. this.know();
  91. }
  92. }, 1000);
  93. }
  94. },
  95. },
  96. props: {
  97. // 是否移除检查
  98. remove: {
  99. type: Boolean,
  100. default: false,
  101. },
  102. // 显示隐藏
  103. disjunctor: {
  104. type: Boolean,
  105. default: false,
  106. },
  107. // 标题
  108. title: {
  109. type: String,
  110. default: "提示",
  111. },
  112. // 图标
  113. icon: {
  114. type: String,
  115. default: "success",
  116. },
  117. // 内容
  118. content: {
  119. type: String,
  120. default: "",
  121. },
  122. // 操作按钮文字
  123. operate: {
  124. type: Object,
  125. default: () => {
  126. return {
  127. ok: "确认",
  128. cancel: "取消",
  129. };
  130. },
  131. },
  132. name: {
  133. type: String,
  134. default: '交接人'
  135. }
  136. },
  137. methods: {
  138. radioChange: function(evt) {
  139. this.yyTime = '';
  140. this.startTimestamp = Date.now();
  141. for (let i = 0; i < this.removeReasons.length; i++) {
  142. if (this.removeReasons[i].value === evt.detail.value) {
  143. this.current = i;
  144. break;
  145. }
  146. }
  147. },
  148. // 确定
  149. ok() {
  150. let e = {};
  151. if (this.current > -1) {
  152. e.value = this.removeReasons[this.current].value;
  153. }
  154. if (this.yyTime) {
  155. e.yyTime = this.yyTime.Format("yyyy-MM-dd hh:mm:ss");
  156. }
  157. this.$emit("ok", e);
  158. },
  159. // 取消
  160. cancel() {
  161. this.$emit("cancel");
  162. },
  163. },
  164. created() {
  165. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  166. }
  167. };
  168. </script>
  169. <style lang="less" scoped>
  170. .changeHospital {
  171. position: fixed;
  172. left: 0;
  173. right: 0;
  174. top: 0;
  175. bottom: 0;
  176. background-color: rgba(0, 0, 0, 0.2);
  177. z-index: 999;
  178. .uni-list-cell {
  179. width: 95%;
  180. display: flex;
  181. flex-direction: row;
  182. // justify-content: space-evenly;
  183. align-items: center;
  184. text-align: center;
  185. margin-top: 32rpx;
  186. .uni-list-cell-left {
  187. flex: 2;
  188. font-size: 32rpx;
  189. color: #666;
  190. }
  191. .uni-list-cell-db {
  192. border: 1px solid #e5e9ed;
  193. background-color: #fff;
  194. padding: 16rpx 0;
  195. flex: 5;
  196. }
  197. .uni-list-cell-db-text {
  198. flex: 5;
  199. text-align: left;
  200. }
  201. }
  202. .changeHospital__wrap {
  203. width: 90vw;
  204. position: absolute;
  205. left: 50%;
  206. top: 50%;
  207. transform: translate(-50%, -50%);
  208. background-color: #fff;
  209. border-radius: 12rpx;
  210. color: #666;
  211. .changeHospital__header {
  212. font-size: 36rpx;
  213. color: #000;
  214. height: 84rpx;
  215. display: flex;
  216. justify-content: center;
  217. align-items: center;
  218. }
  219. .changeHospital__article {
  220. width: 90%;
  221. margin: 0 auto 25rpx;
  222. padding: 48rpx 0;
  223. background-color: rgb(249, 250, 251);
  224. border: 2rpx solid rgb(229, 233, 237);
  225. border-radius: 12rpx;
  226. box-sizing: border-box;
  227. display: flex;
  228. flex-direction: column;
  229. justify-content: center;
  230. align-items: center;
  231. &.p0 {
  232. padding: 0;
  233. }
  234. .changeHospital__icon {
  235. font-size: 138rpx;
  236. margin-bottom: 32rpx;
  237. &.changeHospital__icon--success {
  238. color: rgb(52, 179, 73);
  239. }
  240. &.changeHospital__icon--warn {
  241. color: rgb(245, 165, 35);
  242. }
  243. &.changeHospital__icon--error {
  244. color: rgb(255, 58, 82);
  245. }
  246. }
  247. .changeHospital__content {
  248. font-size: 36rpx;
  249. }
  250. .changeHospital__info {
  251. font-size: 32rpx;
  252. color: rgb(102, 102, 102);
  253. }
  254. .specialCloseFlag {
  255. width: 90%;
  256. height: 100%;
  257. padding: 16rpx;
  258. }
  259. .radio-wrap {
  260. .radio-item {
  261. margin-top: 16rpx;
  262. /deep/ .uni-radio-input-checked {
  263. background-color: #49b856 !important;
  264. border-color: #49b856 !important;
  265. }
  266. }
  267. }
  268. }
  269. .changeHospital__footer {
  270. box-sizing: border-box;
  271. height: 100rpx;
  272. border-top: 2rpx solid rgb(229, 233, 237);
  273. display: flex;
  274. align-items: center;
  275. view {
  276. height: 100%;
  277. display: flex;
  278. align-items: center;
  279. justify-content: center;
  280. font-size: 36rpx;
  281. color: rgb(102, 102, 102);
  282. position: relative;
  283. &:nth-of-type(2)::before {
  284. content: "";
  285. position: absolute;
  286. left: 0;
  287. bottom: 0;
  288. width: 2rpx;
  289. height: 87rpx;
  290. background-color: rgb(229, 233, 237);
  291. }
  292. }
  293. .changeHospital__ok {
  294. flex: 1;
  295. color: rgb(73, 184, 86);
  296. }
  297. .changeHospital__cancel {
  298. flex: 1;
  299. }
  300. .changeHospital__know {
  301. flex: 1;
  302. color: rgb(73, 184, 86);
  303. }
  304. }
  305. }
  306. }
  307. </style>