vue給按鈕加lodding

2021-10-25 22:16:13 字數 820 閱讀 5855

在方法的最前面呼叫:

const loading = this.$loading();
關閉:

close方法:一定要介面返回資料就呼叫,把load關了,不管報沒報錯,都要關

loading.close();
如:

//修改訂單狀態

submitreceive(state, row) );

let params = ;

put("/sys/order/receive", params).then((res) => );

} else if (state == 4) );

}this.$emit("getontopguide", "1");

this.getdata();

} else catch

}});

},

lodding一定要寫到校驗後面

如果你loading開啟了但是校驗沒通過,下面的**就不執行了

//部分訂單退款

todrawbackpart()

if (!this.textareapart)

const loading = this.$loading();

let prams = ;

this.suo = false;

put("/sys/order/reject", prams).then(res => else catch

}this.suo = true;

});},

CSS樣式給按鈕加陰影

這個功能我們的css是無法實現的,不過現在的css3還是可以的,通過box shadow這個屬性來設定,他的引數有 陰影型別 此引數可選。如不設值,預設投影方式是外陰影 如取其唯一值 inset 其投影為內陰影 x offset 陰影水平偏移量 其值可以是正負值。如果值為正值,則陰影在物件的右邊,其...

給console加樣式

剛剛發現乙個比較好玩的東西 在console裡邊加,然後試了一下果然可以,先放下源 console.log c background url no repeat font size 130px line height 50px 其實要說也不難,只是在console裡邊加了一些css樣式.注意 需要用...

iOS給UIview 加陰影加圓角 加邊框

1.加陰影,oc 要匯入框架 import self.view.layer.shadowopacity 0.5 陰影透明度 self.view.layer.shadowcolor uicolor graycolor cgcolor 陰影的顏色 self.view.layer.shadowradius...