开始做登录

This commit is contained in:
2024-03-15 17:20:54 +08:00
parent b9335b4ff8
commit 633cff358d
1423 changed files with 35817 additions and 19 deletions

1
node_modules/@vant/weapp/dist/radio-group/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export {};

22
node_modules/@vant/weapp/dist/radio-group/index.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
import { VantComponent } from '../common/component';
import { useChildren } from '../common/relation';
VantComponent({
field: true,
relation: useChildren('radio'),
props: {
value: {
type: null,
observer: 'updateChildren',
},
direction: String,
disabled: {
type: Boolean,
observer: 'updateChildren',
},
},
methods: {
updateChildren() {
this.children.forEach((child) => child.updateFromParent());
},
},
});

3
node_modules/@vant/weapp/dist/radio-group/index.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"component": true
}

5
node_modules/@vant/weapp/dist/radio-group/index.wxml generated vendored Normal file
View File

@@ -0,0 +1,5 @@
<wxs src="../wxs/utils.wxs" module="utils" />
<view class="{{ utils.bem('radio-group', [direction]) }}">
<slot></slot>
</view>

1
node_modules/@vant/weapp/dist/radio-group/index.wxss generated vendored Normal file
View File

@@ -0,0 +1 @@
@import '../common/index.wxss';.van-radio-group--horizontal{display:flex;flex-wrap:wrap}