first commit

This commit is contained in:
SnhAenIgseAl
2026-03-31 16:44:41 +08:00
parent dd513eda30
commit 7bde226505
219 changed files with 33046 additions and 9 deletions
@@ -0,0 +1,6 @@
"use strict";
var uni_modules_wotDesignUni_components_common_props = require("../common/props.js");
const navbarCapsuleProps = {
...uni_modules_wotDesignUni_components_common_props.baseProps
};
exports.navbarCapsuleProps = navbarCapsuleProps;
@@ -0,0 +1,47 @@
"use strict";
var common_vendor = require("../../../../common/vendor.js");
var uni_modules_wotDesignUni_components_wdNavbarCapsule_types = require("./types.js");
require("../common/props.js");
if (!Math) {
wdIcon();
}
const wdIcon = () => "../wd-icon/wd-icon.js";
const __default__ = {
name: "wd-navbar-capsule",
options: {
virtualHost: true,
addGlobalClass: true,
styleIsolation: "shared"
}
};
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
...__default__,
props: uni_modules_wotDesignUni_components_wdNavbarCapsule_types.navbarCapsuleProps,
emits: ["back", "back-home"],
setup(__props, { emit }) {
function handleBack() {
emit("back");
}
function handleBackHome() {
emit("back-home");
}
return (_ctx, _cache) => {
return {
a: common_vendor.o(handleBack),
b: common_vendor.p({
name: "chevron-left",
["custom-class"]: "wd-navbar-capsule__icon"
}),
c: common_vendor.o(handleBackHome),
d: common_vendor.p({
name: "home",
["custom-class"]: "wd-navbar-capsule__icon"
}),
e: common_vendor.n(`wd-navbar-capsule ${_ctx.customClass}`),
f: common_vendor.s(_ctx.customStyle)
};
};
}
});
var Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "D:/\u7F51\u6291\u4E91Time/\u79C1\u6D3B/2000\u7B97\u5366/src/uni_modules/wot-design-uni/components/wd-navbar-capsule/wd-navbar-capsule.vue"]]);
wx.createComponent(Component);
@@ -0,0 +1,6 @@
{
"component": true,
"usingComponents": {
"wd-icon": "../wd-icon/wd-icon"
}
}
@@ -0,0 +1 @@
<view class="{{e}}" style="{{f}}"><wd-icon wx:if="{{b}}" bindclick="{{a}}" u-i="2734e76c-0" bind:__l="__l" u-p="{{b}}"/><wd-icon wx:if="{{d}}" bindclick="{{c}}" u-i="2734e76c-1" bind:__l="__l" u-p="{{d}}"/></view>
@@ -0,0 +1,240 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
/**
* 混合宏
*/
/**
* SCSS 配置项:命名空间以及BEM
*/
/**
* 辅助函数
*/
/**
* SCSS 配置项:命名空间以及BEM
*/
/* 转换成字符串 */
/* 判断是否存在 Modifier */
/* 判断是否存在伪类 */
/**
* 主题色切换
* @params $theme-color 主题色
* @params $type 变暗’dark 变亮 'light'
* @params $mix-color 自己设置的混色
*/
/**
* 颜色结果切换, 如果开启线性渐变色 使用渐变色,如果没有开启,那么使用主题色
* @params $open-linear 是否开启线性渐变色
* @params $deg 渐变色角度
* @params $theme-color 当前配色
* @params [Array] $set 主题色明暗设置,与 $color-list 数量对应
* @params [Array] $color-list 渐变色顺序, $color-list 和 $per-list 数量相同
* @params [Array] $per-list 渐变色比例
*/
/**
* BEM,定义块(b)
*/
/* 定义元素(e),对于伪类,会自动将 e 嵌套在 伪类 底下 */
/* 此方法用于生成穿透样式 */
/* 定义元素(e),对于伪类,会自动将 e 嵌套在 伪类 底下 */
/* 定义状态(m */
/* 定义状态(m */
/* 对于需要需要嵌套在 m 底下的 e,调用这个混合宏,一般在切换整个组件的状态,如切换颜色的时候 */
/* 状态,生成 is-$state 类名 */
/**
* 常用混合宏
*/
/* 单行超出隐藏 */
/* 多行超出隐藏 */
/* 清除浮动 */
/* 0.5px 边框 指定方向*/
/* 0.5px 边框 环绕 */
/**
* 三角形实现尖角样式,适用于背景透明情况
* @param $size 三角形高,底边为 $size * 2
* @param $bg 三角形背景颜色
*/
/**
* 正方形实现尖角样式,适用于背景不透明情况
* @param $size 正方形边长
* @param $bg 正方形背景颜色
* @param $z-index z-index属性值,不得大于外部包裹器
* @param $box-shadow 阴影
*/
/**
* 辅助函数
*/
/**
* SCSS 配置项:命名空间以及BEM
*/
/* 转换成字符串 */
/* 判断是否存在 Modifier */
/* 判断是否存在伪类 */
/**
* 主题色切换
* @params $theme-color 主题色
* @params $type 变暗’dark 变亮 'light'
* @params $mix-color 自己设置的混色
*/
/**
* 颜色结果切换, 如果开启线性渐变色 使用渐变色,如果没有开启,那么使用主题色
* @params $open-linear 是否开启线性渐变色
* @params $deg 渐变色角度
* @params $theme-color 当前配色
* @params [Array] $set 主题色明暗设置,与 $color-list 数量对应
* @params [Array] $color-list 渐变色顺序, $color-list 和 $per-list 数量相同
* @params [Array] $per-list 渐变色比例
*/
/**
* UI规范基础变量
*/
/*----------------------------------------- Theme color. start ----------------------------------------*/
/* 主题颜色 */
/* 辅助色 */
/* 文字颜色(默认浅色背景下 */
/* 暗黑模式 */
/* 图形颜色 */
/*----------------------------------------- Theme color. end -------------------------------------------*/
/*-------------------------------- Theme color application size. start --------------------------------*/
/* 文字字号 */
/* 文字字重 */
/* 尺寸 */
/*-------------------------------- Theme color application size. end --------------------------------*/
/* component var */
/* action-sheet */
/* badge */
/* button */
/* cell */
/* calendar */
/* checkbox */
/* collapse */
/* divider */
/* drop-menu */
/* input-number */
/* input */
/* textarea */
/* loadmore */
/* message-box */
/* notice-bar */
/* pagination */
/* picker */
/* col-picker */
/* overlay */
/* popup */
/* progress */
/* radio */
/* search */
/* slider */
/* sort-button */
/* steps */
/* switch */
/* tabs */
/* tag */
/* toast */
/* loading */
/* tooltip */
/* popover */
/* grid-item */
/* statustip */
/* card */
/* upload */
/* curtain */
/* notify */
/* skeleton */
/* circle */
/* swiper */
/* swiper-nav */
/* segmented */
/* tabbar */
/* tabbar-item */
/* navbar */
/* navbar-capsule */
/* table */
/* sidebar */
/* sidebar-item */
/* fab */
/* count-down */
/* keyboard */
/* number-keyboard */
/* passwod-input */
/* form-item */
/* backtop */
/* index-bar */
/* text */
/* video-preview */
/* img-cropper */
/* floating-panel */
/* signature */
.wot-theme-dark .wd-navbar-capsule::before {
border: 2rpx solid var(--wot-dark-border-color, #3a3a3c);
}
.wot-theme-dark .wd-navbar-capsule::after {
background: var(--wot-dark-border-color, #3a3a3c);
}
.wot-theme-dark .wd-navbar-capsule .wd-navbar-capsule__icon {
color: var(--wot-dark-color, var(--wot-color-white, rgb(255, 255, 255)));
}
.wd-navbar-capsule {
position: relative;
box-sizing: border-box;
width: var(--wot-navbar-capsule-width, 88px);
height: var(--wot-navbar-capsule-height, 32px);
display: flex;
align-items: center;
justify-content: center;
}
.wd-navbar-capsule::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 200%;
transform: scale(0.5);
transform-origin: 0 0;
box-sizing: border-box;
border-radius: calc(var(--wot-navbar-capsule-border-radius, 16px) * 2);
border: 2rpx solid var(--wot-navbar-capsule-border-color, #e7e7e7);
}
.wd-navbar-capsule::after {
content: "";
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 36rpx;
background: var(--wot-navbar-capsule-border-color, #e7e7e7);
}
.wd-navbar-capsule:empty {
display: none;
}
.wd-navbar-capsule__icon {
flex: 1;
position: relative;
color: var(--wot-navbar-desc-font-color, var(--wot-font-gray-1, rgba(0, 0, 0, 0.9)));
font-size: var(--wot-navbar-capsule-icon-size, 20px);
}