showCertificat.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <template>
  2. <view class="showModel" v-show="disjunctor">
  3. <view class="showModel__wrap">
  4. <view class="showModel__header">
  5. 领血证二维码
  6. </view>
  7. <view class="showModel__article">
  8. <view class="showModel__content">
  9. <view class="leftIcon" @click="toLeft">
  10. <view class="icon_transport transport-xiala1" :class="{ disable: current === 0 }"></view>
  11. </view>
  12. <swiper class="swiper" :current="current" @change="changeCurrent">
  13. <swiper-item v-for="(qrCode, index) in qrCodes" :key="index">
  14. <image :src="qrCode.base64" mode="widthFix" class="qrCode"></image>
  15. </swiper-item>
  16. </swiper>
  17. <view class="rightIcon" @click="toRight">
  18. <view class="icon_transport transport-xiala1" :class="{ disable: current === qrCodes.length - 1 }"></view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="showModel__footer">
  23. <view class="showModel__know" @click="know" hover-class="seimin-btn-hover">知道了</view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import {
  30. get,
  31. post,
  32. webHandle
  33. } from "../../http/http.js";
  34. export default {
  35. data() {
  36. return {
  37. qrCodes: [],
  38. current: 0,
  39. };
  40. },
  41. props: {
  42. // 显示隐藏
  43. disjunctor: {
  44. type: Boolean,
  45. default: false,
  46. },
  47. // id
  48. id: {
  49. type: Number,
  50. },
  51. },
  52. methods: {
  53. // 左箭头点击
  54. toLeft(){
  55. this.current = Math.max(--this.current, 0);
  56. },
  57. // 右箭头点击
  58. toRight(){
  59. this.current = Math.min(++this.current, this.qrCodes.length - 1);
  60. },
  61. // 滑动二维码
  62. changeCurrent(event){
  63. this.current = event.detail.current;
  64. },
  65. // 关闭
  66. know() {
  67. this.$emit("know");
  68. },
  69. // 获取二维码
  70. getQrCode(){
  71. uni.showLoading({
  72. title: "加载中",
  73. mask: true,
  74. });
  75. post("/transflow/scanInfo", {
  76. type: 'bloodTake',
  77. takeCodeList: 1,
  78. id: 0,
  79. orderIds: this.id.toString(),
  80. }).then((result) => {
  81. uni.hideLoading();
  82. if (result.state == 200) {
  83. this.qrCodes = result.data.data || [];
  84. } else {
  85. uni.showToast({
  86. icon: "none",
  87. title: result.msg || "接口获取数据失败!",
  88. });
  89. }
  90. })
  91. }
  92. },
  93. mounted() {
  94. this.getQrCode();
  95. }
  96. };
  97. </script>
  98. <style lang="less" scoped>
  99. /deep/ uni-swiper .uni-swiper-wrapper{
  100. position: absolute!important;
  101. top: 0!important;
  102. left: 0!important;
  103. width: 100%!important;
  104. height: 100%!important;
  105. }
  106. /deep/ uni-swiper uni-swiper-item{
  107. display: flex!important;
  108. align-items: center!important;
  109. }
  110. .showModel {
  111. position: fixed;
  112. left: 0;
  113. right: 0;
  114. top: 0;
  115. bottom: 0;
  116. background-color: rgba(0, 0, 0, 0.2);
  117. z-index: 999999;
  118. .showModel__wrap {
  119. width: 560rpx;
  120. position: absolute;
  121. left: 50%;
  122. top: 50%;
  123. transform: translate(-50%, -50%);
  124. background-color: #fff;
  125. border-radius: 12rpx;
  126. .showModel__header {
  127. font-size: 36rpx;
  128. color: #000;
  129. height: 84rpx;
  130. display: flex;
  131. justify-content: center;
  132. align-items: center;
  133. }
  134. .showModel__article {
  135. color: #000;
  136. margin: 0 auto 25rpx;
  137. width: 488rpx;
  138. background-color: rgb(249, 250, 251);
  139. border: 2rpx solid rgb(229, 233, 237);
  140. border-radius: 12rpx;
  141. box-sizing: border-box;
  142. display: flex;
  143. flex-direction: column;
  144. justify-content: center;
  145. align-items: center;
  146. &.p0 {
  147. padding: 0;
  148. }
  149. &.p1 {
  150. text-align: left;
  151. }
  152. .showModel__icon {
  153. font-size: 138rpx;
  154. margin-bottom: 32rpx;
  155. &.showModel__icon--success {
  156. color: rgb(52, 179, 73);
  157. }
  158. &.showModel__icon--warn {
  159. color: rgb(245, 165, 35);
  160. }
  161. &.showModel__icon--error {
  162. color: rgb(255, 58, 82);
  163. }
  164. }
  165. .showModel__content {
  166. font-size: 36rpx;
  167. word-break: break-all;
  168. width: 100%;
  169. display: flex;
  170. .leftIcon{
  171. width: 40rpx;
  172. display: flex;
  173. align-items: center;
  174. justify-content: center;
  175. view{
  176. transform: rotateZ(90deg);
  177. &.disable{
  178. color: #dbdbdb;
  179. }
  180. }
  181. }
  182. .rightIcon{
  183. width: 40rpx;
  184. display: flex;
  185. align-items: center;
  186. justify-content: center;
  187. view{
  188. transform: rotateZ(-90deg);
  189. &.disable{
  190. color: #dbdbdb;
  191. }
  192. }
  193. }
  194. .swiper{
  195. flex: 1;
  196. padding-top: 100%;
  197. position: relative;
  198. height: 0;
  199. .qrCode{
  200. width: 100%;
  201. }
  202. }
  203. }
  204. .showModel__info {
  205. font-size: 32rpx;
  206. color: rgb(102, 102, 102);
  207. }
  208. .specialCloseFlag {
  209. width: 90%;
  210. height: 100%;
  211. padding: 16rpx;
  212. }
  213. .radio-wrap {
  214. .radio-item {
  215. margin-top: 16rpx;
  216. /deep/ .uni-radio-input-checked {
  217. background-color: #49b856 !important;
  218. border-color: #49b856 !important;
  219. }
  220. }
  221. }
  222. }
  223. .showModel__footer {
  224. box-sizing: border-box;
  225. height: 100rpx;
  226. border-top: 2rpx solid rgb(229, 233, 237);
  227. display: flex;
  228. align-items: center;
  229. view {
  230. height: 100%;
  231. display: flex;
  232. align-items: center;
  233. justify-content: center;
  234. font-size: 36rpx;
  235. color: rgb(102, 102, 102);
  236. position: relative;
  237. &:nth-of-type(2)::before {
  238. content: "";
  239. position: absolute;
  240. left: 0;
  241. bottom: 0;
  242. width: 2rpx;
  243. height: 87rpx;
  244. background-color: rgb(229, 233, 237);
  245. }
  246. }
  247. .showModel__ok {
  248. flex: 1;
  249. color: rgb(73, 184, 86);
  250. }
  251. .showModel__cancel {
  252. flex: 1;
  253. }
  254. .showModel__know {
  255. flex: 1;
  256. color: rgb(73, 184, 86);
  257. }
  258. }
  259. }
  260. }
  261. </style>