From 76d4803be9ca88d02928b74e78ddab80e63b42ac Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期四, 18 一月 2024 14:52:23 +0800
Subject: [PATCH] #
---
pages/common/modeSwitch.vue | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/pages/common/modeSwitch.vue b/pages/common/modeSwitch.vue
new file mode 100644
index 0000000..fa9659f
--- /dev/null
+++ b/pages/common/modeSwitch.vue
@@ -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>
--
Gitblit v1.9.1