12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="box">
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad(opt) {
-
- },
- methods: {
-
- goDetail(){
- uni.navigateTo({
- url:'integralgoodsDetail'
- })
- }
- },
- onPullDownRefresh(){
-
- setTimeout(() => {
- uni.stopPullDownRefresh(); // 关闭下拉刷新
- }, 2000);
- }
- }
- </script>
- <style scoped>
- .box{
- background: #F4F5F7;
- min-height: 100vh;
- }
- </style>
|