uniapp的loadding

2020-08-31  本文已影响0人  宏_4491
image.png
methods: {
    fangfa(){
        var that = this;
        uni.showLoading({title: '加载中',mask:true});
        uni.request({
          url:'',
          data: {},
          method: 'POST',
          header: '',
          dataType: 'json',
          success: function (res) {
            //关闭加载中
            setTimeout(function () {uni.hideLoading();}, 100);
          }
        })
    },
}
上一篇 下一篇

猜你喜欢

热点阅读