弹框代码:
let toast = this.toastCtrl.create({
message: '输入不能为空',
duration: 3000,
position: 'middle', //位置居中
cssClass: "success" //弹框样式
});
toast.present();
css样式:
.success {
.toast-message {
font-size: 5px;
padding-top: 8px;
}
.toast-wrapper {
text-align: center;
width: 90px;
height:30px;
background: #098a6a;
border-radius:2px;
@extend .box;
}
}