MProtocol.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <div class="mProtocol" id="mProtocol">
  3. <m-header :backUrl="backUrlProtocol" name="协议信息" />
  4. <div v-html="protocolHTML" style="margin-bottom: 1rem;"></div>
  5. <div class="btn-style">
  6. <van-button v-if="!tenantId" class="protocol-btn" @click="onPopupSure" type="info">确认</van-button>
  7. <van-button v-else class="protocol-btn" round :disabled="disabled" @click="onPopupSure" type="info">
  8. {{ disabled ? '请认真阅读协议内容' : '我已完全阅读并同意协议内容' }}
  9. <van-count-down
  10. ref="countDown"
  11. v-show="disabled"
  12. :time="6000"
  13. style="font-size: .18rem;display: inline-block;color: #fff;"
  14. format="ss"
  15. @finish="finish"
  16. />
  17. </van-button>
  18. </div>
  19. </div>
  20. </template>
  21. <script>
  22. import MHeader from '@/components/MHeader'
  23. // import { browser } from '@/common/util'
  24. export default {
  25. name: 'mProtocol',
  26. components: { MHeader },
  27. props: {
  28. protocolHTML: String,
  29. tenantId: {
  30. type: [String, Number]
  31. },
  32. checked: Boolean,
  33. popupStatus: Boolean
  34. },
  35. data() {
  36. let that = this
  37. return {
  38. disabled: true, // 按钮是否禁用
  39. headerStatus: false,
  40. // protocolHTML: null,
  41. backUrlProtocol: {
  42. callBack() {
  43. that.callBack()
  44. }
  45. }
  46. }
  47. },
  48. mounted() {
  49. // if(!browser().android && !browser().iPhone) {
  50. // this.headerStatus = true
  51. // }
  52. if(this.checked) { // 默认选中时
  53. this.disabled = false
  54. }
  55. },
  56. methods: {
  57. finish() {
  58. this.disabled = false
  59. },
  60. onPopupSure() {
  61. document.querySelector('#mProtocol').scrollTop = 0
  62. // 协议确定
  63. this.$emit('onPopupSure')
  64. },
  65. callBack() {
  66. document.querySelector('#mProtocol').scrollTop = 0
  67. this.$emit('onClose')
  68. }
  69. },
  70. watch: {
  71. popupStatus(newValue) {
  72. if(newValue && !this.checked) {
  73. this.disabled = true
  74. this.$refs.countDown.reset();
  75. this.$refs.countDown.start();
  76. } else {
  77. this.disabled = false
  78. }
  79. }
  80. }
  81. }
  82. </script>
  83. <style lang="less">
  84. .protocol-btn {
  85. // margin: 0.35rem 0;
  86. background: #01C1B5;
  87. color: #fff;
  88. font-size: 0.18rem;
  89. border-radius: 0.5rem;
  90. text-align: center;
  91. width: 100%;
  92. }
  93. .btn-style {
  94. padding: 0.15rem 4% .2rem;
  95. position: fixed;
  96. z-index: 99;
  97. bottom: 0;
  98. left: 0;
  99. width: 92%;
  100. background: #fff;
  101. }
  102. </style>