Agreement.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <TuiModal :show="privacyShow" :custom="true" :fadein="true">
  3. <view class="Put-box1">
  4. <view class="text-align fs34 fs-bold">
  5. 协议与隐私政策
  6. </view>
  7. <p class="mar-top-20">欢迎来到shop!我们根据最新的法律、法规、监管政策要求,更新了shop隐私政策。</p>
  8. <view class="flex-display flex-sp-between">
  9. <view class="btn submit" @click="privacyShow = false">
  10. 同意
  11. </view>
  12. </view>
  13. </view>
  14. </TuiModal>
  15. </template>
  16. <script>
  17. import TuiModal from '@/components/modal/modal'
  18. import { J_STORAGE_KEY } from '../../../../config/constant'
  19. export default {
  20. name: 'Agreement',
  21. components: { TuiModal },
  22. data() {
  23. return {
  24. privacyShow: false
  25. }
  26. },
  27. created() {
  28. // this.privacyShow = true
  29. if (!uni.getStorageSync(J_STORAGE_KEY)) {
  30. // #ifdef APP
  31. this.privacyShow = true
  32. // #endif
  33. }
  34. },
  35. methods: {}
  36. }
  37. </script>
  38. <style
  39. lang="scss"
  40. scoped
  41. >
  42. .Put-box1 {
  43. .btn {
  44. text-align: center;
  45. margin-top: 40rpx;
  46. border: 1px solid #333333;
  47. height: 80upx;
  48. line-height: 80upx;
  49. width: 100%;
  50. color: #333333;
  51. }
  52. .submit {
  53. background-color: #333333;
  54. color: #FFEBC4;
  55. }
  56. }
  57. </style>