agreement.vue 556 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view>
  3. <view>
  4. </view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. onLoad(){
  14. uni.showModal({
  15. title: '提示',
  16. content: '暂无协议',
  17. success: function (res) {
  18. if (res.confirm) {//这里是点击了确定以后
  19. uni.navigateTo({
  20. url:'./setting'
  21. })
  22. } else {//这里是点击了取消以后
  23. }
  24. }
  25. })
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>