调整分包,完成隐私协议(样式待优化)

This commit is contained in:
2024-07-18 14:18:05 +08:00
parent 765b3ad111
commit 00384d7382
1045 changed files with 34254 additions and 98 deletions

1
node_modules/@vant/weapp/lib/panel/index.d.ts generated vendored Normal file
View File

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

11
node_modules/@vant/weapp/lib/panel/index.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component");
(0, component_1.VantComponent)({
classes: ['header-class', 'footer-class'],
props: {
desc: String,
title: String,
status: String,
},
});

6
node_modules/@vant/weapp/lib/panel/index.json generated vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"component": true,
"usingComponents": {
"van-cell": "../cell/index"
}
}

19
node_modules/@vant/weapp/lib/panel/index.wxml generated vendored Normal file
View File

@@ -0,0 +1,19 @@
<view class="van-panel van-hairline--top-bottom custom-class">
<van-cell
wx:if="{{ title || desc || status }}"
title="{{ title }}"
label="{{ desc }}"
value="{{ status }}"
custom-class="header-class"
value-class="van-panel__header-value"
/>
<slot wx:else name="header" />
<view class="van-panel__content">
<slot />
</view>
<view class="van-panel__footer van-hairline--top footer-class">
<slot name="footer" />
</view>
</view>

1
node_modules/@vant/weapp/lib/panel/index.wxss generated vendored Normal file
View File

@@ -0,0 +1 @@
@import '../common/index.wxss';.van-panel{background:var(--panel-background-color,#fff)}.van-panel__header-value{color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:var(--panel-footer-padding,8px 16px)}.van-panel__footer:empty{display:none}