first commit

This commit is contained in:
jefferyzhao
2025-07-31 17:44:12 +08:00
commit b9bdc8598b
42390 changed files with 4467935 additions and 0 deletions

1
node_modules/vant/es/panel/index.css generated vendored Normal file
View File

@ -0,0 +1 @@
.van-panel{background:#fff}.van-panel__header-value{color:#ee0a24}.van-panel__footer{padding:8px 16px}

46
node_modules/vant/es/panel/index.js generated vendored Normal file
View File

@ -0,0 +1,46 @@
import _mergeJSXProps from "@vue/babel-helper-vue-jsx-merge-props";
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';
import { BORDER_TOP } from '../utils/constant'; // Components
import Cell from '../cell';
import CellGroup from '../cell-group'; // Types
var _createNamespace = createNamespace('panel'),
createComponent = _createNamespace[0],
bem = _createNamespace[1];
function Panel(h, props, slots, ctx) {
var Content = function Content() {
return [slots.header ? slots.header() : h(Cell, {
"attrs": {
"icon": props.icon,
"label": props.desc,
"title": props.title,
"value": props.status,
"valueClass": bem('header-value')
},
"class": bem('header')
}), h("div", {
"class": bem('content')
}, [slots.default && slots.default()]), slots.footer && h("div", {
"class": [bem('footer'), BORDER_TOP]
}, [slots.footer()])];
};
return h(CellGroup, _mergeJSXProps([{
"class": bem(),
"scopedSlots": {
default: Content
}
}, inherit(ctx, true)]));
}
Panel.props = {
icon: String,
desc: String,
title: String,
status: String
};
export default createComponent(Panel);

13
node_modules/vant/es/panel/index.less generated vendored Normal file
View File

@ -0,0 +1,13 @@
@import '../style/var';
.van-panel {
background: @panel-background-color;
&__header-value {
color: @panel-header-value-color;
}
&__footer {
padding: @panel-footer-padding;
}
}

6
node_modules/vant/es/panel/style/index.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
import '../../style/base.css';
import '../../info/index.css';
import '../../icon/index.css';
import '../../cell/index.css';
import '../../cell-group/index.css';
import '../index.css';

6
node_modules/vant/es/panel/style/less.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
import '../../style/base.less';
import '../../info/index.less';
import '../../icon/index.less';
import '../../cell/index.less';
import '../../cell-group/index.less';
import '../index.less';