inspectRemoveModel.vue 6.7 KB

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