1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view>
- <van-overlay v-if="mask || forbidClick" :show="show" :z-index="zIndex" :custom-style="mask ? '' : 'background-color: transparent;'" />
- <van-transition :show="show" :custom-style="'z-index: ' + zIndex" custom-class="van-toast__container">
- <view :class="'van-toast van-toast--' + (type === 'text' ? 'text' : 'icon') + ' van-toast--' + position" @touchmove.stop.prevent="noop">
- <!-- text only -->
- <text v-if="type === 'text'">{{ message }}</text>
- <!-- with icon -->
- <block v-else>
- <van-loading v-if="type === 'loading'" color="white" :type="loadingType" custom-class="van-toast__loading" />
- <van-icon v-else class="van-toast__icon" :name="type" />
- <text v-if="message" class="van-toast__text">{{ message }}</text>
- </block>
- <slot />
- </view>
- </van-transition>
- </view>
- </template>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- component_1.VantComponent({
- props: {
- show: Boolean,
- mask: Boolean,
- message: String,
- forbidClick: Boolean,
- zIndex: {
- type: Number,
- value: 1000
- },
- type: {
- type: String,
- value: 'text'
- },
- loadingType: {
- type: String,
- value: 'circular'
- },
- position: {
- type: String,
- value: 'middle'
- }
- },
- methods: {
- // for prevent touchmove
- noop: function () {}
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|