fingerprintSubPagePublic.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <el-form-item class="form-item-min" label="指纹:" prop="searchValue" label-width="120px">
  3. <div class="fingerprint_no" v-if="Quantity==0">
  4. <p>暂未录入指纹</p>
  5. <p>(请在小程序端操作)</p>
  6. </div>
  7. <div class="fingerprint_yes" v-if="Quantity!=0">
  8. <div class="fingerprint_yes_img">
  9. <img src="@/assets/ZDimages/icon_zw_bk.png">
  10. <img src="@/assets/ZDimages/icon_wd_zw.png">
  11. </div>
  12. <p>已录入{{Quantity}}个指纹</p>
  13. </div>
  14. </el-form-item>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'fingerprintSubPagePublic',
  19. props: {
  20. Quantity:{},
  21. },
  22. }
  23. </script>
  24. <style scoped lang="scss">
  25. .fingerprint_no{
  26. >p:nth-of-type(1){
  27. color: #666666;
  28. }
  29. >p:nth-of-type(2){
  30. color: #F56C6C;
  31. }
  32. }
  33. .fingerprint_yes{
  34. .fingerprint_yes_img{
  35. width: 122px;
  36. height: 142px;
  37. position: relative;
  38. >img:nth-of-type(1){
  39. width: 122px;
  40. height: 142px;
  41. position: absolute;
  42. }
  43. >img:nth-of-type(2){
  44. width: 65px;
  45. height: 88px;
  46. position: absolute;
  47. left: 29px;
  48. top: 29px;
  49. }
  50. }
  51. >p{
  52. color: #666;
  53. text-align: center;
  54. }
  55. }
  56. .form-item-min{
  57. margin-top:40px;
  58. }
  59. </style>