3.1_表单组件_button

Posted luwei0915

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.1_表单组件_button相关的知识,希望对你有一定的参考价值。

img:
技术图片

 

code:
<template>
    <view>
        <page-head :title="title"></page-head>
        <view class="uni-padding-wrap uni-common-mt">
            <button type="primary">页面主操作 Normal</button>
            <button type="primary" :loading="loading">页面主操作 Loading</button>
            <button type="primary" disabled="true">页面主操作 Disabled</button>

 

            <button type="default">页面次要操作 Normal</button>
            <button type="default" disabled="true">页面次要操作 Disabled</button>

 

            <button type="warn">警告类操作 Normal</button>
            <button type="warn" disabled="true">警告类操作 Disabled</button>

 

            <view class="button-sp-area">
                <!-- plain 空心 -->
                <button type="primary" plain="true">按钮</button>
                <button type="primary" disabled="true" plain="true">不可点击的按钮</button>
                <button type="default" plain="true">按钮</button>
                <button type="default" disabled="true" plain="true">按钮</button>
                <button class="mini-btn" type="primary" size="mini">按钮</button>
                <button class="mini-btn" type="default" size="mini">按钮</button>
                <button class="mini-btn" type="warn" size="mini">按钮</button>
            </view>
            <!-- #ifdef MP-WEIXIN || MP-QQ -->
            <button open-type="launchApp" app-parameter="uni-app" @error="openTypeError">打开APP</button>
            <button open-type="feedback">意见反馈</button>
            <!-- #endif -->
        </view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                title: ‘button‘,
                loading: false
            }
        },
        onLoad() {
            this._timer = null;
        },
        onShow() {
            this.clearTimer();
            this._timer = setTimeout(() => {
                this.loading = true;
            }, 300)
        },
        onUnload() {
            this.clearTimer();
            this.loading = false;
        },
        methods: {
            openTypeError(error) {
                console.error(‘open-type error:‘, error);
            },
            clearTimer() {
                if (this._timer != null) {
                    clearTimeout(this._timer);
                }
            }
        }
    }
</script>

 

<style>
    button {
        margin-top: 30rpx;
        margin-bottom: 30rpx;
    }

 

    .button-sp-area {
        margin: 0 auto;
        width: 60%;
    }

 

    .mini-btn {
        margin-right: 10rpx;
    }
</style>

以上是关于3.1_表单组件_button的主要内容,如果未能解决你的问题,请参考以下文章

3.4_表单组件_input

如何在 joomla 3.1 中将表单从模块传递到组件

python---django中form组件自定制属性以及表单的各种验证

no.3_表单与组件-《VueJs+elementUI+node+es6开发点菜应用》

Kubernetes组件_Scheduler_02_二次调度

Kubernetes组件_Scheduler_02_二次调度