mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 16:36:03 +08:00
删除无用文件夹
This commit is contained in:
28
wechat/miniprogram_npm/@vant/weapp/index-anchor/index.js
Normal file
28
wechat/miniprogram_npm/@vant/weapp/index-anchor/index.js
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
var utils_1 = require('../common/utils');
|
||||
var component_1 = require('../common/component');
|
||||
var relation_1 = require('../common/relation');
|
||||
component_1.VantComponent({
|
||||
relation: relation_1.useParent('index-bar'),
|
||||
props: {
|
||||
useSlot: Boolean,
|
||||
index: null,
|
||||
},
|
||||
data: {
|
||||
active: false,
|
||||
wrapperStyle: '',
|
||||
anchorStyle: '',
|
||||
},
|
||||
methods: {
|
||||
scrollIntoView: function (scrollTop) {
|
||||
var _this = this;
|
||||
utils_1.getRect(this, '.van-index-anchor-wrapper').then(function (rect) {
|
||||
wx.pageScrollTo({
|
||||
duration: 0,
|
||||
scrollTop: scrollTop + rect.top - _this.parent.data.stickyOffsetTop,
|
||||
});
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"component": true
|
||||
}
|
||||
14
wechat/miniprogram_npm/@vant/weapp/index-anchor/index.wxml
Normal file
14
wechat/miniprogram_npm/@vant/weapp/index-anchor/index.wxml
Normal file
@@ -0,0 +1,14 @@
|
||||
<view
|
||||
class="van-index-anchor-wrapper"
|
||||
style="{{ wrapperStyle }}"
|
||||
>
|
||||
<view
|
||||
class="van-index-anchor {{ active ? 'van-index-anchor--active van-hairline--bottom' : '' }}"
|
||||
style="{{ anchorStyle }}"
|
||||
>
|
||||
<slot wx:if="{{ useSlot }}"/>
|
||||
<block wx:else>
|
||||
<text>{{ index }}</text>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
@@ -0,0 +1 @@
|
||||
@import '../common/index.wxss';.van-index-anchor{padding:0 16px;padding:var(--index-anchor-padding,0 16px);color:#323233;color:var(--index-anchor-text-color,#323233);font-weight:500;font-weight:var(--index-anchor-font-weight,500);font-size:14px;font-size:var(--index-anchor-font-size,14px);line-height:32px;line-height:var(--index-anchor-line-height,32px);background-color:initial;background-color:var(--index-anchor-background-color,transparent)}.van-index-anchor--active{right:0;left:0;color:#07c160;color:var(--index-anchor-active-text-color,#07c160);background-color:#fff;background-color:var(--index-anchor-active-background-color,#fff)}
|
||||
Reference in New Issue
Block a user