#
whycq
2024-01-18 76d4803be9ca88d02928b74e78ddab80e63b42ac
#
1个文件已添加
41 ■■■■■ 已修改文件
pages/common/modeSwitch.vue 41 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/common/modeSwitch.vue
New file
@@ -0,0 +1,41 @@
<template>
    <view>
        <view class="mode-card">
            当前模式: {{modeText}}
        </view>
        <view class="buttom">
            <button type="primary" size="mini">模式切换</button>
        </view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                modeText: '默认'
            }
        },
        methods: {
        }
    }
</script>
<style>
    @import url('../../static/css/wms.css/wms.css');
    .mode-card {
        min-height: 100rpx;
        margin: 16rpx;
        background-color: #999;
        border-radius: 16rpx;
        display: flex;
        align-items: center;
        text-indent: 1em;
        color: #FFF
    }
</style>