| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view>
- <view>
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad(){
- uni.showModal({
-
- title: '提示',
-
- content: '暂无协议',
-
- success: function (res) {
-
- if (res.confirm) {//这里是点击了确定以后
-
- uni.navigateTo({
- url:'./setting'
- })
-
- } else {//这里是点击了取消以后
-
- }
- }
- })
-
- }
- }
- </script>
- <style>
- </style>
|