多租户商城-商户小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.4 KiB

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