policy.vue 502 B

123456789101112131415161718192021222324252627
  1. <!-- 用户协议政策 -->
  2. <template>
  3. <view class="main_width">
  4. <view class="article_title">用户协议及隐私政策</view>
  5. <view class="article_text"> 百度众测兼职平台是一个由百度官方开发的在线众测兼职平台,为什么叫众测平台呢,主要就是利用广大网民的测试能力 ...</view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. },
  16. components: {},
  17. onLoad() {
  18. },
  19. }
  20. </script>
  21. <style>
  22. </style>