;
6 | export declare function isNumber(value: string): boolean;
7 | export declare function isBoolean(value: unknown): value is boolean;
8 | export declare function isImageUrl(url: string): boolean;
9 | export declare function isVideoUrl(url: string): boolean;
10 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/common/version.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
3 | environment?: 'wxwork';
4 | }
5 | interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {
6 | }
7 | export declare function getSystemInfoSync(): SystemInfo;
8 | export declare function canIUseModel(): boolean;
9 | export declare function canIUseFormFieldButton(): boolean;
10 | export declare function canIUseAnimate(): boolean;
11 | export declare function canIUseGroupSetData(): boolean;
12 | export declare function canIUseNextTick(): boolean;
13 | export declare function canIUseCanvas2d(): boolean;
14 | export declare function canIUseGetUserProfile(): boolean;
15 | export {};
16 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/config-provider/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/config-provider/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | props: {
6 | themeVars: {
7 | type: Object,
8 | value: {},
9 | },
10 | },
11 | });
12 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/config-provider/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/config-provider/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/count-down/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/count-down/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/count-down/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ formattedTime }}
4 |
5 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/count-down/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-count-down{color:var(--count-down-text-color,#323233);font-size:var(--count-down-font-size,14px);line-height:var(--count-down-line-height,20px)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/count-down/utils.d.ts:
--------------------------------------------------------------------------------
1 | export type TimeData = {
2 | days: number;
3 | hours: number;
4 | minutes: number;
5 | seconds: number;
6 | milliseconds: number;
7 | };
8 | export declare function parseTimeData(time: number): TimeData;
9 | export declare function parseFormat(format: string, timeData: TimeData): string;
10 | export declare function isSameSecond(time1: number, time2: number): boolean;
11 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/datetime-picker/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/datetime-picker/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-picker": "../picker/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/datetime-picker/index.wxml:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/datetime-picker/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/definitions/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dialog/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dialog/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-popup": "../popup/index",
5 | "van-button": "../button/index",
6 | "van-goods-action": "../goods-action/index",
7 | "van-goods-action-button": "../goods-action-button/index"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/divider/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/divider/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | props: {
6 | dashed: Boolean,
7 | hairline: Boolean,
8 | contentPosition: String,
9 | fontSize: String,
10 | borderColor: String,
11 | textColor: String,
12 | customStyle: String,
13 | },
14 | });
15 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/divider/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {}
4 | }
5 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/divider/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/divider/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | return style([
7 | {
8 | 'border-color': data.borderColor,
9 | color: data.textColor,
10 | 'font-size': addUnit(data.fontSize),
11 | },
12 | data.customStyle,
13 | ]);
14 | }
15 |
16 | module.exports = {
17 | rootStyle: rootStyle,
18 | };
19 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-item/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-item/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-popup": "../popup/index",
5 | "van-cell": "../cell/index",
6 | "van-icon": "../icon/index"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-item/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-dropdown-item{left:0;overflow:hidden;position:fixed;right:0}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:var(--dropdown-menu-option-active-color,#ee0a24)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-item/shared.d.ts:
--------------------------------------------------------------------------------
1 | export interface Option {
2 | text: string;
3 | value: string | number;
4 | icon: string;
5 | }
6 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-item/shared.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-menu/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-menu/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | function displayTitle(item) {
3 | if (item.title) {
4 | return item.title;
5 | }
6 |
7 | var match = item.options.filter(function(option) {
8 | return option.value === item.value;
9 | });
10 | var displayTitle = match.length ? match[0].text : '';
11 | return displayTitle;
12 | }
13 |
14 | module.exports = {
15 | displayTitle: displayTitle
16 | };
17 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/empty/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/empty/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | props: {
6 | description: String,
7 | image: {
8 | type: String,
9 | value: 'default',
10 | },
11 | },
12 | });
13 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/empty/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {}
4 | }
5 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/empty/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | {{ description }}
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/empty/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var PRESETS = ['error', 'search', 'default', 'network'];
3 |
4 | function imageUrl(image) {
5 | if (PRESETS.indexOf(image) !== -1) {
6 | return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png';
7 | }
8 |
9 | return image;
10 | }
11 |
12 | module.exports = {
13 | imageUrl: imageUrl,
14 | };
15 |
16 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/empty/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-empty{align-items:center;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center;padding:32px 0}.van-empty__image{height:160px;width:160px}.van-empty__image:empty{display:none}.van-empty__image__img{height:100%;width:100%}.van-empty__image:not(:empty)+.van-empty__image{display:none}.van-empty__description{color:#969799;font-size:14px;line-height:20px;margin-top:16px;padding:0 60px}.van-empty__description:empty,.van-empty__description:not(:empty)+.van-empty__description{display:none}.van-empty__bottom{margin-top:24px}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/field/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/field/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-cell": "../cell/index",
5 | "van-icon": "../icon/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/field/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function inputStyle(autosize) {
6 | if (autosize && autosize.constructor === 'Object') {
7 | return style({
8 | 'min-height': addUnit(autosize.minHeight),
9 | 'max-height': addUnit(autosize.maxHeight),
10 | });
11 | }
12 |
13 | return '';
14 | }
15 |
16 | module.exports = {
17 | inputStyle: inputStyle,
18 | };
19 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/field/props.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | export declare const commonProps: WechatMiniprogram.Component.PropertyOption;
3 | export declare const inputProps: WechatMiniprogram.Component.PropertyOption;
4 | export declare const textareaProps: WechatMiniprogram.Component.PropertyOption;
5 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/field/types.d.ts:
--------------------------------------------------------------------------------
1 | export interface InputDetails {
2 | /** 输入框内容 */
3 | value: string;
4 | /** 光标位置 */
5 | cursor?: number;
6 | /** keyCode 为键值 (目前工具还不支持返回keyCode参数) `2.1.0` 起支持 */
7 | keyCode?: number;
8 | }
9 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/field/types.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action-button/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action-button/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-button": "../button/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action-icon/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action-icon/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index",
5 | "van-button": "../button/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action-icon/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-goods-action-icon{border:none!important;color:var(--goods-action-icon-text-color,#646566)!important;display:flex!important;flex-direction:column;font-size:var(--goods-action-icon-font-size,10px)!important;height:var(--goods-action-icon-height,50px)!important;justify-content:center!important;line-height:1!important;min-width:var(--goods-action-icon-width,48px)}.van-goods-action-icon__icon{color:var(--goods-action-icon-color,#323233);display:flex;font-size:var(--goods-action-icon-size,18px);margin:0 auto 5px}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | var relation_1 = require("../common/relation");
5 | (0, component_1.VantComponent)({
6 | relation: (0, relation_1.useChildren)('goods-action-button', function () {
7 | this.children.forEach(function (item) {
8 | item.updateStyle();
9 | });
10 | }),
11 | props: {
12 | safeAreaInsetBottom: {
13 | type: Boolean,
14 | value: true,
15 | },
16 | },
17 | });
18 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/goods-action/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-goods-action{align-items:center;background-color:var(--goods-action-background-color,#fff);bottom:0;box-sizing:initial;display:flex;height:var(--goods-action-height,50px);left:0;position:fixed;right:0}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/grid-item/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/grid-item/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/grid/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/grid/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/grid/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/grid/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | return style({
7 | 'padding-left': addUnit(data.gutter),
8 | });
9 | }
10 |
11 | module.exports = {
12 | rootStyle: rootStyle,
13 | };
14 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/grid/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-grid{box-sizing:border-box;overflow:hidden;position:relative}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/icon/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/icon/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | classes: ['info-class'],
6 | props: {
7 | dot: Boolean,
8 | info: null,
9 | size: null,
10 | color: String,
11 | customStyle: String,
12 | classPrefix: {
13 | type: String,
14 | value: 'van-icon',
15 | },
16 | name: String,
17 | },
18 | methods: {
19 | onClick: function () {
20 | this.$emit('click');
21 | },
22 | },
23 | });
24 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/icon/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-info": "../info/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/icon/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
14 |
20 |
21 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/image/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/image/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index",
5 | "van-loading": "../loading/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-anchor/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-anchor/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-anchor/index.wxml:
--------------------------------------------------------------------------------
1 |
5 |
9 |
10 |
11 | {{ index }}
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-anchor/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-index-anchor{background-color:var(--index-anchor-background-color,transparent);color:var(--index-anchor-text-color,#323233);font-size:var(--index-anchor-font-size,14px);font-weight:var(--index-anchor-font-weight,500);line-height:var(--index-anchor-line-height,32px);padding:var(--index-anchor-padding,0 16px)}.van-index-anchor--active{background-color:var(--index-anchor-active-background-color,#fff);color:var(--index-anchor-active-text-color,#07c160);left:0;right:0}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-bar/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-bar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-bar/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
22 |
23 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/index-bar/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{display:flex;flex-direction:column;position:fixed;right:0;text-align:center;top:50%;transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-size:var(--index-bar-index-font-size,10px);font-weight:500;line-height:var(--index-bar-index-line-height,14px);padding:0 var(--padding-base,4px) 0 var(--padding-md,16px)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/info/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/info/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | props: {
6 | dot: Boolean,
7 | info: null,
8 | customStyle: String,
9 | },
10 | });
11 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/info/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/info/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ dot ? '' : info }}
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/loading/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/loading/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | props: {
6 | color: String,
7 | vertical: Boolean,
8 | type: {
9 | type: String,
10 | value: 'circular',
11 | },
12 | size: String,
13 | textSize: String,
14 | },
15 | data: {
16 | array12: Array.from({ length: 12 }),
17 | },
18 | });
19 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/loading/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/loading/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
9 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/loading/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function spinnerStyle(data) {
6 | return style({
7 | color: data.color,
8 | width: addUnit(data.size),
9 | height: addUnit(data.size),
10 | });
11 | }
12 |
13 | function textStyle(data) {
14 | return style({
15 | 'font-size': addUnit(data.textSize),
16 | });
17 | }
18 |
19 | module.exports = {
20 | spinnerStyle: spinnerStyle,
21 | textStyle: textStyle,
22 | };
23 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/mixins/basic.d.ts:
--------------------------------------------------------------------------------
1 | export declare const basic: string;
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/mixins/button.d.ts:
--------------------------------------------------------------------------------
1 | export declare const button: string;
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/mixins/link.d.ts:
--------------------------------------------------------------------------------
1 | export declare const link: string;
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/mixins/page-scroll.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
4 | type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void;
5 | export declare function pageScrollMixin(scroller: Scroller): string;
6 | export {};
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/mixins/touch.d.ts:
--------------------------------------------------------------------------------
1 | export declare const touch: string;
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/mixins/transition.d.ts:
--------------------------------------------------------------------------------
1 | export declare function transition(showDefaultValue: boolean): string;
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/nav-bar/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/nav-bar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/nav-bar/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function barStyle(data) {
5 | return style({
6 | 'z-index': data.zIndex,
7 | 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
8 | });
9 | }
10 |
11 | module.exports = {
12 | barStyle: barStyle,
13 | };
14 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notice-bar/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notice-bar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notice-bar/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | return style({
7 | color: data.color,
8 | 'background-color': data.backgroundColor,
9 | background: data.background,
10 | });
11 | }
12 |
13 | module.exports = {
14 | rootStyle: rootStyle,
15 | };
16 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notify/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notify/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-transition": "../transition/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notify/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
15 |
19 | {{ message }}
20 |
21 |
22 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notify/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | return style({
7 | 'z-index': data.zIndex,
8 | top: addUnit(data.top),
9 | });
10 | }
11 |
12 | function notifyStyle(data) {
13 | return style({
14 | background: data.background,
15 | color: data.color,
16 | });
17 | }
18 |
19 | module.exports = {
20 | rootStyle: rootStyle,
21 | notifyStyle: notifyStyle,
22 | };
23 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notify/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-notify{word-wrap:break-word;font-size:var(--notify-font-size,14px);line-height:var(--notify-line-height,20px);padding:var(--notify-padding,6px 15px);text-align:center}.van-notify__container{box-sizing:border-box;left:0;position:fixed;top:0;width:100%}.van-notify--primary{background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:var(--notify-warning-background-color,#ff976a)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/notify/notify.d.ts:
--------------------------------------------------------------------------------
1 | interface NotifyOptions {
2 | type?: 'primary' | 'success' | 'danger' | 'warning';
3 | color?: string;
4 | zIndex?: number;
5 | top?: number;
6 | message: string;
7 | context?: any;
8 | duration?: number;
9 | selector?: string;
10 | background?: string;
11 | safeAreaInsetTop?: boolean;
12 | onClick?: () => void;
13 | onOpened?: () => void;
14 | onClose?: () => void;
15 | }
16 | declare function Notify(options: NotifyOptions | string): any;
17 | declare namespace Notify {
18 | var clear: (options?: NotifyOptions | undefined) => void;
19 | var setDefaultOptions: (options: NotifyOptions) => void;
20 | var resetDefaultOptions: () => void;
21 | }
22 | export default Notify;
23 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/overlay/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/overlay/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-transition": "../transition/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/overlay/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/overlay/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-overlay{background-color:var(--overlay-background-color,rgba(0,0,0,.7));height:100%;left:0;position:fixed;top:0;width:100%}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/overlay/overlay.wxml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/panel/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/panel/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | classes: ['header-class', 'footer-class'],
6 | props: {
7 | desc: String,
8 | title: String,
9 | status: String,
10 | },
11 | });
12 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/panel/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-cell": "../cell/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/panel/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
19 |
20 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/panel/index.wxss:
--------------------------------------------------------------------------------
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}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker-column/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker-column/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker-column/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-picker-column{color:var(--picker-option-text-color,#000);font-size:var(--picker-option-font-size,16px);overflow:hidden;text-align:center}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{color:var(--picker-option-selected-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-picker-column__item--disabled{opacity:var(--picker-option-disabled-opacity,.3)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "picker-column": "../picker-column/index",
5 | "loading": "../loading/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker/shared.d.ts:
--------------------------------------------------------------------------------
1 | export declare const pickerProps: {
2 | title: StringConstructor;
3 | loading: BooleanConstructor;
4 | showToolbar: BooleanConstructor;
5 | cancelButtonText: {
6 | type: StringConstructor;
7 | value: string;
8 | };
9 | confirmButtonText: {
10 | type: StringConstructor;
11 | value: string;
12 | };
13 | visibleItemCount: {
14 | type: NumberConstructor;
15 | value: number;
16 | };
17 | itemHeight: {
18 | type: NumberConstructor;
19 | value: number;
20 | };
21 | };
22 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker/shared.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | exports.pickerProps = void 0;
4 | exports.pickerProps = {
5 | title: String,
6 | loading: Boolean,
7 | showToolbar: Boolean,
8 | cancelButtonText: {
9 | type: String,
10 | value: '取消',
11 | },
12 | confirmButtonText: {
13 | type: String,
14 | value: '确认',
15 | },
16 | visibleItemCount: {
17 | type: Number,
18 | value: 6,
19 | },
20 | itemHeight: {
21 | type: Number,
22 | value: 44,
23 | },
24 | };
25 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/picker/toolbar.wxml:
--------------------------------------------------------------------------------
1 |
2 |
9 | {{ cancelButtonText }}
10 |
11 | {{
12 | title
13 | }}
14 |
21 | {{ confirmButtonText }}
22 |
23 |
24 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/popup/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/popup/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index",
5 | "van-overlay": "../overlay/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/popup/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/popup/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function popupStyle(data) {
5 | return style([
6 | {
7 | 'z-index': data.zIndex,
8 | '-webkit-transition-duration': data.currentDuration + 'ms',
9 | 'transition-duration': data.currentDuration + 'ms',
10 | },
11 | data.display ? null : 'display: none',
12 | data.customStyle,
13 | ]);
14 | }
15 |
16 | module.exports = {
17 | popupStyle: popupStyle,
18 | };
19 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/popup/popup.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/progress/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/progress/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/progress/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
12 |
17 | {{ computed.pivotText(pivotText, percentage) }}
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/progress/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-progress{background:var(--progress-background-color,#ebedf0);border-radius:var(--progress-height,4px);height:var(--progress-height,4px);position:relative}.van-progress__portion{background:var(--progress-color,#1989fa);border-radius:inherit;height:100%;left:0;position:absolute}.van-progress__pivot{background-color:var(--progress-pivot-background-color,#1989fa);border-radius:1em;box-sizing:border-box;color:var(--progress-pivot-text-color,#fff);font-size:var(--progress-pivot-font-size,10px);line-height:var(--progress-pivot-line-height,1.6);min-width:3.6em;padding:var(--progress-pivot-padding,0 5px);position:absolute;text-align:center;top:50%;transform:translateY(-50%);word-break:keep-all}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/radio-group/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/radio-group/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/radio-group/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/radio-group/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-radio-group--horizontal{display:flex;flex-wrap:wrap}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/radio/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/radio/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/rate/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/rate/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/rate/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-rate{display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{padding:0 var(--rate-horizontal-padding,2px);position:relative}.van-rate__item:not(:last-child){padding-right:var(--rate-icon-gutter,4px)}.van-rate__icon{color:var(--rate-icon-void-color,#c8c9cc);display:block;font-size:var(--rate-icon-size,20px);height:100%}.van-rate__icon--half{left:var(--rate-horizontal-padding,2px);overflow:hidden;position:absolute;top:0;width:.5em}.van-rate__icon--full,.van-rate__icon--half{color:var(--rate-icon-full-color,#ee0a24)}.van-rate__icon--disabled{color:var(--rate-icon-disabled-color,#c8c9cc)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/row/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/row/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/row/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/row/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | if (!data.gutter) {
7 | return '';
8 | }
9 |
10 | return style({
11 | 'margin-right': addUnit(-data.gutter / 2),
12 | 'margin-left': addUnit(-data.gutter / 2),
13 | });
14 | }
15 |
16 | module.exports = {
17 | rootStyle: rootStyle,
18 | };
19 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/row/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-row:after{clear:both;content:"";display:table}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/search/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/search/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-field": "../field/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/share-sheet/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/share-sheet/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-popup": "../popup/index",
5 | "options": "./options"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/share-sheet/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | function isMulti(options) {
3 | if (options == null || options[0] == null) {
4 | return false;
5 | }
6 |
7 | return "Array" === options.constructor && "Array" === options[0].constructor;
8 | }
9 |
10 | module.exports = {
11 | isMulti: isMulti
12 | };
13 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/share-sheet/options.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/share-sheet/options.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/share-sheet/options.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var PRESET_ICONS = ['qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments'];
3 |
4 | function getIconURL(icon) {
5 | if (PRESET_ICONS.indexOf(icon) !== -1) {
6 | return 'https://img.yzcdn.cn/vant/share-sheet-' + icon + '.png';
7 | }
8 |
9 | return icon;
10 | }
11 |
12 | module.exports = {
13 | getIconURL: getIconURL,
14 | };
15 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sidebar-item/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sidebar-item/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-info": "../info/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sidebar-item/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sidebar/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sidebar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sidebar/index.wxml:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sidebar/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-sidebar{width:var(--sidebar-width,80px)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/skeleton/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/skeleton/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {}
4 | }
5 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/slider/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/slider/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/slider/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function barStyle(barHeight, activeColor) {
6 | return style({
7 | height: addUnit(barHeight),
8 | background: activeColor,
9 | });
10 | }
11 |
12 | module.exports = {
13 | barStyle: barStyle,
14 | };
15 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/stepper/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/stepper/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/stepper/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function buttonStyle(data) {
6 | return style({
7 | width: addUnit(data.buttonSize),
8 | height: addUnit(data.buttonSize),
9 | });
10 | }
11 |
12 | function inputStyle(data) {
13 | return style({
14 | width: addUnit(data.inputWidth),
15 | height: addUnit(data.buttonSize),
16 | });
17 | }
18 |
19 | module.exports = {
20 | buttonStyle: buttonStyle,
21 | inputStyle: inputStyle,
22 | };
23 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/steps/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/steps/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sticky/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sticky/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sticky/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sticky/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function wrapStyle(data) {
6 | return style({
7 | transform: data.transform
8 | ? 'translate3d(0, ' + data.transform + 'px, 0)'
9 | : '',
10 | top: data.fixed ? addUnit(data.offsetTop) : '',
11 | 'z-index': data.zIndex,
12 | });
13 | }
14 |
15 | function containerStyle(data) {
16 | return style({
17 | height: data.fixed ? addUnit(data.height) : '',
18 | 'z-index': data.zIndex,
19 | });
20 | }
21 |
22 | module.exports = {
23 | wrapStyle: wrapStyle,
24 | containerStyle: containerStyle,
25 | };
26 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/sticky/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{left:0;position:fixed;right:0}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/submit-bar/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/submit-bar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-button": "../button/index",
5 | "van-icon": "../icon/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/swipe-cell/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/swipe-cell/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/swipe-cell/index.wxml:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/swipe-cell/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-swipe-cell{overflow:hidden;position:relative}.van-swipe-cell__left,.van-swipe-cell__right{height:100%;position:absolute;top:0}.van-swipe-cell__left{left:0;transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;transform:translate3d(100%,0,0)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/switch/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/switch/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-loading": "../loading/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/switch/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/switch/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | var currentColor = data.checked === data.activeValue ? data.activeColor : data.inactiveColor;
7 |
8 | return style({
9 | 'font-size': addUnit(data.size),
10 | 'background-color': currentColor,
11 | });
12 | }
13 |
14 | var BLUE = '#1989fa';
15 | var GRAY_DARK = '#969799';
16 |
17 | function loadingColor(data) {
18 | return data.checked === data.activeValue
19 | ? data.activeColor || BLUE
20 | : data.inactiveColor || GRAY_DARK;
21 | }
22 |
23 | module.exports = {
24 | rootStyle: rootStyle,
25 | loadingColor: loadingColor,
26 | };
27 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tab/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tab/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tab/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tab/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';:host{box-sizing:border-box;flex-shrink:0;width:100%}.van-tab__pane{-webkit-overflow-scrolling:touch;box-sizing:border-box;overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabbar-item/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabbar-item/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index",
5 | "van-info": "../info/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabbar-item/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';:host{flex:1}.van-tabbar-item{align-items:center;color:var(--tabbar-item-text-color,#646566);display:flex;flex-direction:column;font-size:var(--tabbar-item-font-size,12px);height:100%;justify-content:center;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{font-size:var(--tabbar-item-icon-size,22px);margin-bottom:var(--tabbar-item-margin-bottom,4px);position:relative}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabbar/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabbar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabbar/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabbar/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-tabbar{background-color:var(--tabbar-background-color,#fff);box-sizing:initial;display:flex;height:var(--tabbar-height,50px);width:100%}.van-tabbar--fixed{bottom:0;left:0;position:fixed}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)}
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabs/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tabs/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-info": "../info/index",
5 | "van-sticky": "../sticky/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tag/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tag/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | (0, component_1.VantComponent)({
5 | props: {
6 | size: String,
7 | mark: Boolean,
8 | color: String,
9 | plain: Boolean,
10 | round: Boolean,
11 | textColor: String,
12 | type: {
13 | type: String,
14 | value: 'default',
15 | },
16 | closeable: Boolean,
17 | },
18 | methods: {
19 | onClose: function () {
20 | this.$emit('close');
21 | },
22 | },
23 | });
24 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tag/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tag/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
15 |
16 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tag/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function rootStyle(data) {
5 | return style({
6 | 'background-color': data.plain ? '' : data.color,
7 | color: data.textColor || data.plain ? data.textColor || data.color : '',
8 | });
9 | }
10 |
11 | module.exports = {
12 | rootStyle: rootStyle,
13 | };
14 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/toast/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/toast/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index",
5 | "van-loading": "../loading/index",
6 | "van-overlay": "../overlay/index",
7 | "van-transition": "../transition/index"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/transition/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/transition/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 | var component_1 = require("../common/component");
4 | var transition_1 = require("../mixins/transition");
5 | (0, component_1.VantComponent)({
6 | classes: [
7 | 'enter-class',
8 | 'enter-active-class',
9 | 'enter-to-class',
10 | 'leave-class',
11 | 'leave-active-class',
12 | 'leave-to-class',
13 | ],
14 | mixins: [(0, transition_1.transition)(true)],
15 | });
16 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/transition/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/transition/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/transition/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function rootStyle(data) {
5 | return style([
6 | {
7 | '-webkit-transition-duration': data.currentDuration + 'ms',
8 | 'transition-duration': data.currentDuration + 'ms',
9 | },
10 | data.display ? null : 'display: none',
11 | data.customStyle,
12 | ]);
13 | }
14 |
15 | module.exports = {
16 | rootStyle: rootStyle,
17 | };
18 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tree-select/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tree-select/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index",
5 | "van-sidebar": "../sidebar/index",
6 | "van-sidebar-item": "../sidebar-item/index"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/tree-select/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var array = require('../wxs/array.wxs');
3 |
4 | function isActive (activeList, itemId) {
5 | if (array.isArray(activeList)) {
6 | return activeList.indexOf(itemId) > -1;
7 | }
8 |
9 | return activeList === itemId;
10 | }
11 |
12 | module.exports.isActive = isActive;
13 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/uploader/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/uploader/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index",
5 | "van-loading": "../loading/index"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/uploader/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function sizeStyle(data) {
6 | return "Array" === data.previewSize.constructor ? style({
7 | width: addUnit(data.previewSize[0]),
8 | height: addUnit(data.previewSize[1]),
9 | }) : style({
10 | width: addUnit(data.previewSize),
11 | height: addUnit(data.previewSize),
12 | });
13 | }
14 |
15 | module.exports = {
16 | sizeStyle: sizeStyle,
17 | };
18 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/wxs/add-unit.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
3 |
4 | function addUnit(value) {
5 | if (value == null) {
6 | return undefined;
7 | }
8 |
9 | return REGEXP.test('' + value) ? value + 'px' : value;
10 | }
11 |
12 | module.exports = addUnit;
13 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/wxs/array.wxs:
--------------------------------------------------------------------------------
1 | function isArray(array) {
2 | return array && array.constructor === 'Array';
3 | }
4 |
5 | module.exports.isArray = isArray;
6 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/wxs/object.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var REGEXP = getRegExp('{|}|"', 'g');
3 |
4 | function keys(obj) {
5 | return JSON.stringify(obj)
6 | .replace(REGEXP, '')
7 | .split(',')
8 | .map(function(item) {
9 | return item.split(':')[0];
10 | });
11 | }
12 |
13 | module.exports.keys = keys;
14 |
--------------------------------------------------------------------------------
/miniprogram_npm/@vant/weapp/wxs/utils.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var bem = require('./bem.wxs');
3 | var memoize = require('./memoize.wxs');
4 | var addUnit = require('./add-unit.wxs');
5 |
6 | module.exports = {
7 | bem: memoize(bem),
8 | memoize: memoize,
9 | addUnit: addUnit
10 | };
11 |
--------------------------------------------------------------------------------
/miniprogram_npm/mp-html/index.json:
--------------------------------------------------------------------------------
1 | {"component":true,"usingComponents":{"node":"./node/node"}}
--------------------------------------------------------------------------------
/miniprogram_npm/mp-html/index.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/miniprogram_npm/mp-html/index.wxss:
--------------------------------------------------------------------------------
1 | ._root{padding:1px 0;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch}._select{-webkit-user-select:text;user-select:text}
--------------------------------------------------------------------------------
/miniprogram_npm/mp-html/node/node.json:
--------------------------------------------------------------------------------
1 | {"component":true,"usingComponents":{"node":"./node"}}
--------------------------------------------------------------------------------
/miniprogram_npm/wxa-plugin-canvas/index/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
--------------------------------------------------------------------------------
/miniprogram_npm/wxa-plugin-canvas/index/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/miniprogram_npm/wxa-plugin-canvas/index/index.wxss:
--------------------------------------------------------------------------------
1 | .canvas {
2 | width: 750rpx;
3 | height: 750rpx;
4 | }
5 | .canvas.pro {
6 | position: absolute;
7 | bottom: 0;
8 | left: 0;
9 | transform: translate3d(-9999rpx, 0, 0);
10 | }
11 | .canvas.debug {
12 | position: absolute;
13 | bottom: 0;
14 | left: 0;
15 | border: 1rpx solid #ccc;
16 | }
--------------------------------------------------------------------------------
/miniprogram_npm/wxa-plugin-canvas/poster/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "we-canvas": "../index/index"
5 | }
6 | }
--------------------------------------------------------------------------------
/miniprogram_npm/wxa-plugin-canvas/poster/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/miniprogram_npm/wxa-plugin-canvas/poster/index.wxss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/miniprogram_npm/wxa-plugin-canvas/poster/index.wxss
--------------------------------------------------------------------------------
/miniprogram_npm/wxa-plugin-canvas/poster/poster.js:
--------------------------------------------------------------------------------
1 | const defaultOptions = {
2 | selector: '#poster'
3 | };
4 |
5 | function Poster(options = {}, that) {
6 | options = {
7 | ...defaultOptions,
8 | ...options,
9 | };
10 |
11 | const pages = getCurrentPages();
12 | let ctx = pages[pages.length - 1];
13 | if (that) ctx = that
14 | const poster = ctx.selectComponent(options.selector);
15 | delete options.selector;
16 |
17 | return poster;
18 | };
19 |
20 | Poster.create = (reset = false, that) => {
21 | const poster = Poster({}, that);
22 | if (!poster) {
23 | console.error('请设置组件的id="poster"!!!');
24 | } else {
25 | return Poster({}, that).onCreate(reset);
26 | }
27 | }
28 |
29 | export default Poster;
30 |
--------------------------------------------------------------------------------
/packageCps/pages/goods-details/cps-jd.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品详情",
3 | "usingComponents": {
4 | "poster": "wxa-plugin-canvas/poster"
5 | }
6 | }
--------------------------------------------------------------------------------
/packageCps/pages/goods-details/cps-pdd.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品详情",
3 | "usingComponents": {
4 | "poster": "wxa-plugin-canvas/poster"
5 | }
6 | }
--------------------------------------------------------------------------------
/packageCps/pages/goods-details/cps-taobao.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品详情",
3 | "usingComponents": {
4 | "poster": "wxa-plugin-canvas/poster"
5 | }
6 | }
--------------------------------------------------------------------------------
/packageCps/pages/order-list/cps.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText":"CPS订单",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/packageCps/pages/order-list/cps.wxss:
--------------------------------------------------------------------------------
1 | /* pages/order-list/cps.wxss */
--------------------------------------------------------------------------------
/packageFx/images/index-top-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageFx/images/index-top-bg.png
--------------------------------------------------------------------------------
/packageFx/pages/apply/form.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "申请成为分销商"
3 | }
--------------------------------------------------------------------------------
/packageFx/pages/apply/form.wxss:
--------------------------------------------------------------------------------
1 | .logo {
2 | width: 750rpx;
3 | }
4 | .tips {
5 | color: #666;
6 | font-size: 28rpx;
7 | padding: 32rpx;
8 | }
9 | .btns {
10 | padding: 32rpx;
11 | }
--------------------------------------------------------------------------------
/packageFx/pages/apply/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "成为分销商"
3 | }
--------------------------------------------------------------------------------
/packageFx/pages/apply/index.wxss:
--------------------------------------------------------------------------------
1 | .noApply {
2 | margin-top: 150rpx;
3 | text-align: center;
4 | }
5 | .noApply image {
6 | width: 300rpx;
7 | }
8 | .profile {
9 | text-align: center;
10 | margin-top:30rpx;
11 | font-size: 14px;
12 | color:#888;
13 | }
14 | .mini-btn{
15 | margin-top: 50rpx;
16 | margin-left: 50px;
17 | margin-right: 50px;
18 | }
19 | .qrcode-button {
20 | padding:30rpx;
21 | }
22 | .canvas {
23 | width:750rpx;
24 | }
25 | .block-btn {
26 | padding: 8rpx 32rpx;
27 | }
--------------------------------------------------------------------------------
/packageFx/pages/commisionLog/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText":"推广订单"
3 | }
--------------------------------------------------------------------------------
/packageFx/pages/hehuorenfenxiao/fxmember.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {}
3 | }
--------------------------------------------------------------------------------
/packageFx/pages/hehuorenfenxiao/fxmember.wxss:
--------------------------------------------------------------------------------
1 | /* pages/packageA/pages/vip/fxmember.wxss */
2 | page{
3 | background-color: #F5F5F5;
4 | }
5 | .listItem{
6 | width: 670rpx;
7 | background: #FFFFFF;
8 | border-radius: 8rpx;
9 | margin-left:20rpx;
10 | margin-top:10rpx ;
11 | padding: 20rpx;
12 | }
13 |
14 | .nickName{
15 | height: 40px;
16 | font-size: 26rpx;
17 | font-family: PingFangSC-Regular, PingFang SC;
18 | font-weight: 400;
19 | color: #333333;
20 | line-height: 40px;
21 | margin-left: 20rpx;
22 | }
23 |
24 | .t1{
25 | height: 40rpx;
26 | font-size: 26rpx;
27 | font-family: PingFangSC-Regular, PingFang SC;
28 | font-weight: 400;
29 | color: #666666;
30 | line-height: 40rpx;
31 | }
32 |
33 | .t2{
34 | color:#333333;
35 | }
--------------------------------------------------------------------------------
/packageFx/pages/hehuorenfenxiao/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "分销中心"
3 | }
--------------------------------------------------------------------------------
/packageFx/pages/index/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "分销中心"
3 | }
--------------------------------------------------------------------------------
/packageFx/pages/myusers/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "我的团队",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/packageFx/pages/myusers/index.wxss:
--------------------------------------------------------------------------------
1 | .list {
2 | display: flex;
3 | align-items: center;
4 | width: 100vw;
5 | padding: 8rpx 32rpx;
6 | box-sizing: border-box;
7 | }
8 | .list .l {
9 | width: 100rpx;
10 | height: 100rpx;
11 | border-radius: 50%;
12 | }
13 | .list .r {
14 | flex: 1;
15 | }
--------------------------------------------------------------------------------
/packageFx/pages/myusers/myusers-detail.js:
--------------------------------------------------------------------------------
1 | const WXAPI = require('apifm-wxapi')
2 | Page({
3 |
4 | /**
5 | * 页面的初始数据
6 | */
7 | data: {
8 |
9 | },
10 |
11 | /**
12 | * 生命周期函数--监听页面加载
13 | */
14 | onLoad: function (options) {
15 | // options.id = 1871848
16 | this.userDetailSpreadUser(options.id)
17 | },
18 | onShow: function () {
19 |
20 | },
21 | async userDetailSpreadUser(uid) {
22 | const res = await WXAPI.userDetailSpreadUser(wx.getStorageSync('token'), uid)
23 | if (res.code != 0) {
24 | wx.showModal({
25 | title: '错误',
26 | content: res.msg,
27 | showCancel: false
28 | })
29 | return
30 | }
31 | this.setData({
32 | userInfoMap: res.data
33 | })
34 | },
35 | })
--------------------------------------------------------------------------------
/packageFx/pages/myusers/myusers-detail.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "用户详情"
3 | }
--------------------------------------------------------------------------------
/packageFx/pages/myusers/myusers-detail.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | 否
12 | 是
13 |
14 |
15 |
--------------------------------------------------------------------------------
/packageFx/pages/myusers/myusers-detail.wxss:
--------------------------------------------------------------------------------
1 | .avatar {
2 | width: 100vw;
3 | text-align: center;
4 | margin-top: 32rpx;
5 | }
6 | .avatar image {
7 | width: 280rpx;
8 | border-radius: 50%;
9 | }
10 |
--------------------------------------------------------------------------------
/packageFx/pages/report/city.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "合伙人月报表",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/packageFx/pages/report/city.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/packageFx/pages/report/city.wxss:
--------------------------------------------------------------------------------
1 | .list {
2 | display: flex;
3 | align-items: center;
4 | width: 100vw;
5 | padding: 8rpx 32rpx;
6 | box-sizing: border-box;
7 | }
8 | .list .l {
9 | width: 88rpx;
10 | height: 88rpx;
11 | }
12 | .list .r {
13 | flex: 1;
14 | }
--------------------------------------------------------------------------------
/packageFx/pages/report/team.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "团队月报表",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/packageFx/pages/report/team.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/packageFx/pages/report/team.wxss:
--------------------------------------------------------------------------------
1 | .list {
2 | display: flex;
3 | align-items: center;
4 | width: 100vw;
5 | padding: 8rpx 32rpx;
6 | box-sizing: border-box;
7 | }
8 | .list .l {
9 | width: 88rpx;
10 | height: 88rpx;
11 | }
12 | .list .r {
13 | flex: 1;
14 | }
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/TRTCCalling.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "TRTCCalling": "../../components/TRTCCalling/TRTCCalling"
5 | },
6 | "navigationStyle": "custom",
7 | "disableScroll": true
8 | }
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/TRTCCalling.wxss:
--------------------------------------------------------------------------------
1 | @import "./template/audio-template/audio-template.wxss";
2 | @import "./template/video-template/video-template.wxss";
3 |
4 | .TRTCCaling-container {
5 | width: 100vw;
6 | height: 100vh;
7 | overflow: hidden;
8 | background-image: url(https://mc.qcloudimg.com/static/img/7da57e0050d308e2e1b1e31afbc42929/bg.png);
9 | margin: 0;
10 | }
11 |
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/model/user.js:
--------------------------------------------------------------------------------
1 | class User {
2 | constructor(options) {
3 | Object.assign(this, {
4 | userID: '',
5 | // hasMainStream: false, // 触发 1034 且stream type 为 main 即为true
6 | // hasAuxStream: false, // 触发 1034 且stream type 为 aux 即为true
7 | // hasSmallStream: false, // 触发 1034 且stream type 为 small 即为true
8 | streams: {
9 | // main: mainStream
10 | // aux: auxStream
11 | }, // 有0~2个Stream, 进房没有推流,main aux, small 特殊处理,small 和 main 同时只播放一路
12 | // stream 是用于渲染 live-player 的数据源
13 | }, options)
14 | }
15 | }
16 |
17 | export default User
18 |
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/audio-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/audio-active.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/audio-false.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/audio-false.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/audio-true.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/audio-true.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/avatar0_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar0_100.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/avatar1_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar1_100.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/avatar2_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar2_100.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/avatar3_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar3_100.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/avatar4_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar4_100.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/avatar5_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar5_100.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/hangup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/hangup.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/micro-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/micro-open.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/phone.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/static/speaker-true.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/speaker-true.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/TRTCCalling/utils/compare-version.js:
--------------------------------------------------------------------------------
1 | export default function compareVersion(v1, v2) {
2 | v1 = v1.split('.')
3 | v2 = v2.split('.')
4 | const len = Math.max(v1.length, v2.length)
5 | while (v1.length < len) {
6 | v1.push('0')
7 | }
8 | while (v2.length < len) {
9 | v2.push('0')
10 | }
11 | for (let i = 0; i < len; i++) {
12 | const num1 = parseInt(v1[i])
13 | const num2 = parseInt(v2[i])
14 | if (num1 > num2) {
15 | return 1
16 | } if (num1 < num2) {
17 | return -1
18 | }
19 | }
20 | return 0
21 | }
22 |
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/1.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/10.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/11.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/12.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/13.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/2.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/3.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/4.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/5.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/6.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/7.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/8.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images-v2/9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/9.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/1.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/10.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/11.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/12.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/13.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/14.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/15.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/16.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/17.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/18.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/19.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/2.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/20.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/21.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/22.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/23.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/23.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/24.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/3.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/4.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/5.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/6.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/7.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/8.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/images/9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/9.png
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/like-dz.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {}
4 | }
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/like-dz.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packageStreamMedia/components/like-dz/like-dz.wxss:
--------------------------------------------------------------------------------
1 | .like-fx {
2 | position: absolute;
3 | right: 0;
4 | bottom: 140rpx;
5 | pointer-events: none;
6 | z-index: 9999999;
7 | }
8 |
--------------------------------------------------------------------------------
/packageStreamMedia/images/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/back.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/cart-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/cart-icon.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/chat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/chat.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/chat02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/chat02.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/fabulous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/fabulous.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/forward.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/forward.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/goods.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/goods.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/line.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/live/display.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/display.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/live/like.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/like.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/live/living.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/living.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/live/nav01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav01.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/live/nav02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav02.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/live/nav03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav03.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/live/nav04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav04.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/meiyan2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/meiyan2.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/people.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/people.png
--------------------------------------------------------------------------------
/packageStreamMedia/images/rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/rotate.png
--------------------------------------------------------------------------------
/packageStreamMedia/pages/live-anchor/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "disableScroll": true,
4 | "navigationStyle": "custom"
5 | }
--------------------------------------------------------------------------------
/packageStreamMedia/pages/live-anchor/list.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "我的直播间"
3 | }
--------------------------------------------------------------------------------
/packageStreamMedia/pages/live-anchor/list.wxss:
--------------------------------------------------------------------------------
1 | .coverImage {
2 | width: 100vw;
3 | }
4 | .btn-group {
5 | padding: 0 16rpx;
6 | text-align: right;
7 | }
--------------------------------------------------------------------------------
/packageStreamMedia/pages/live-client/client.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationStyle": "custom",
3 | "usingComponents": {
4 | "like-dz":"../../components/like-dz/like-dz"
5 | },
6 | "disableScroll": true
7 | }
--------------------------------------------------------------------------------
/packageStreamMedia/pages/live-client/list.json:
--------------------------------------------------------------------------------
1 | {
2 | "enablePullDownRefresh": true,
3 | "navigationBarTitleText": "直播中心"
4 | }
--------------------------------------------------------------------------------
/packageStreamMedia/pages/videoCall/videoCall.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {
3 | "TRTCCalling": "../../components/TRTCCalling/TRTCCalling"
4 | },
5 | "navigationStyle": "custom",
6 | "disableScroll": true
7 | }
--------------------------------------------------------------------------------
/pages/about/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": ""
3 | }
--------------------------------------------------------------------------------
/pages/about/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/pages/about/index.wxss:
--------------------------------------------------------------------------------
1 | .content {
2 | padding: 32rpx;
3 | color: #333;
4 | line-height: 64rpx;
5 | }
--------------------------------------------------------------------------------
/pages/address-add/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "收货地址"
3 | }
--------------------------------------------------------------------------------
/pages/asset/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "我的资产"
3 | }
--------------------------------------------------------------------------------
/pages/card/logs.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "会员卡消费明细",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/pages/card/logs.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/pages/card/logs.wxss:
--------------------------------------------------------------------------------
1 | /* pages/card/logs.wxss */
--------------------------------------------------------------------------------
/pages/category/category.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "分类"
3 | }
--------------------------------------------------------------------------------
/pages/cms/list.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": ""
3 | }
--------------------------------------------------------------------------------
/pages/cms/list.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/pages/cms/list.wxss:
--------------------------------------------------------------------------------
1 | /* pages/cms/list.wxss */
--------------------------------------------------------------------------------
/pages/coupons/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "优惠券",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/pages/coupons/merge.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "优惠券合成",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/pages/coupons/merge.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
13 | 立即合成
14 |
15 |
--------------------------------------------------------------------------------
/pages/coupons/merge.wxss:
--------------------------------------------------------------------------------
1 | /* pages/coupons/merge.wxss */
--------------------------------------------------------------------------------
/pages/deposit/pay.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "navigationBarTitleText": "支付押金"
4 | }
--------------------------------------------------------------------------------
/pages/deposit/pay.wxml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
--------------------------------------------------------------------------------
/pages/goods-details/day.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "按天定价演示"
3 | }
--------------------------------------------------------------------------------
/pages/goods-details/day.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/pages/goods-details/day.wxss:
--------------------------------------------------------------------------------
1 | /* pages/goods-details/day.wxss */
--------------------------------------------------------------------------------
/pages/goods-details/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品详情",
3 | "usingComponents": {
4 | "poster": "wxa-plugin-canvas/poster"
5 | }
6 | }
--------------------------------------------------------------------------------
/pages/goods-details/times01.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "时段定价演示"
3 | }
--------------------------------------------------------------------------------
/pages/goods-details/times01.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/pages/goods-details/times01.wxss:
--------------------------------------------------------------------------------
1 | /* pages/goods-details/times01.wxss */
--------------------------------------------------------------------------------
/pages/goods-details/times02.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "选择时段"
3 | }
--------------------------------------------------------------------------------
/pages/goods-details/times02.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/pages/goods-details/times02.wxss:
--------------------------------------------------------------------------------
1 | /* pages/goods-details/times02.wxss */
--------------------------------------------------------------------------------
/pages/goods-details/vop.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品详情",
3 | "usingComponents": {
4 | "poster": "wxa-plugin-canvas/poster"
5 | }
6 | }
--------------------------------------------------------------------------------
/pages/goods/fav.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "我的收藏"
3 | }
--------------------------------------------------------------------------------
/pages/goods/his.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "navigationBarTitleText": "历史购买记录"
4 | }
--------------------------------------------------------------------------------
/pages/goods/list-vop.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品列表"
3 | }
--------------------------------------------------------------------------------
/pages/goods/list.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "商品列表"
3 | }
--------------------------------------------------------------------------------
/pages/help/detail.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": ""
3 | }
--------------------------------------------------------------------------------
/pages/help/detail.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/pages/help/detail.wxss:
--------------------------------------------------------------------------------
1 | .content {
2 | padding: 32rpx;
3 | color: #333;
4 | line-height: 64rpx;
5 | }
--------------------------------------------------------------------------------
/pages/help/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "帮助中心"
3 | }
--------------------------------------------------------------------------------
/pages/help/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/pages/help/index.wxss:
--------------------------------------------------------------------------------
1 | page {
2 | width: 100vw;
3 | height: 100vh;
4 | display: flex;
5 | }
6 | .category {
7 | width: 176rpx;
8 | height: 100vh;
9 | flex-shrink: 0;
10 | }
11 | .articles {
12 | height: 100vh;
13 | flex: 1;
14 | }
--------------------------------------------------------------------------------
/pages/idCheck/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "实名认证"
3 | }
--------------------------------------------------------------------------------
/pages/idCheck/index.wxml:
--------------------------------------------------------------------------------
1 |
8 |
16 |
17 | 立即认证
18 |
--------------------------------------------------------------------------------
/pages/idCheck/index.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | width: 700rpx;
3 | margin: 64rpx auto;
4 | }
--------------------------------------------------------------------------------
/pages/index/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "enablePullDownRefresh": true,
3 | "navigationStyle": "custom"
4 | }
5 |
--------------------------------------------------------------------------------
/pages/invoice/apply.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "发票申请"
3 | }
--------------------------------------------------------------------------------
/pages/invoice/list.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "开票记录"
3 | }
--------------------------------------------------------------------------------
/pages/invoice/list.wxss:
--------------------------------------------------------------------------------
1 | .date-btn {
2 | display: flex;
3 | justify-content: space-between;
4 | }
--------------------------------------------------------------------------------
/pages/live/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "特卖直播"
3 | }
--------------------------------------------------------------------------------
/pages/login/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "navigationBarTitleText": "账户登录"
4 | }
--------------------------------------------------------------------------------
/pages/login/index.wxml:
--------------------------------------------------------------------------------
1 |
2 | 本次操作需要先登陆
3 |
4 | 手机号安全登录
5 | 手机号安全登录
6 |
7 |
8 | 一键登录
9 |
10 |
11 |
12 | 阅读并同意
13 | 《用户协议》、
14 | 《隐私协议》
15 |
16 |
--------------------------------------------------------------------------------
/pages/login/index.wxss:
--------------------------------------------------------------------------------
1 | page {
2 | background: rgb(236, 236, 236);
3 | }
4 | .box {
5 | margin: 32rpx;
6 | background: #fff;
7 | border-radius: 24rpx;
8 | padding-bottom: 64rpx;
9 | }
10 | .title {
11 | padding: 88rpx 0 56rpx 0;
12 | text-align: center;
13 | }
14 | .btn {
15 | box-sizing: border-box;
16 | margin: 32rpx 125rpx 0 125rpx;
17 | }
18 | .van-button--default {
19 | background: #000 !important;
20 | color: #fff !important;
21 | padding: 16rpx !important;
22 | border-radius: 64rpx;
23 | }
24 | .xieyi {
25 | padding: 0 32rpx;
26 | font-size: 24rpx;
27 | color: #000;
28 | display: flex;
29 | align-items: center;
30 | }
--------------------------------------------------------------------------------
/pages/maidan/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "优惠买单"
3 | }
--------------------------------------------------------------------------------
/pages/maidan/index.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin-top: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/my/feedback.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "意见反馈"
3 | }
--------------------------------------------------------------------------------
/pages/my/feedback.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin-top: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/my/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "会员中心"
3 | }
--------------------------------------------------------------------------------
/pages/my/info-menu.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "个人信息"
3 | }
--------------------------------------------------------------------------------
/pages/my/info-menu.wxss:
--------------------------------------------------------------------------------
1 | /* pages/my/info-menu.wxss */
--------------------------------------------------------------------------------
/pages/my/info.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "编辑资料"
3 | }
--------------------------------------------------------------------------------
/pages/my/info.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin: 32rpx;
3 | }
4 | .avatar {
5 | width: 88rpx;
6 | height: 88rpx;
7 | border-radius: 50%;
8 | margin-right: 0rpx;
9 | }
10 | .avatar-img {
11 | width: 88rpx;
12 | height: 88rpx;
13 | margin-left: -30rpx;
14 | }
--------------------------------------------------------------------------------
/pages/my/setting.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "设置"
3 | }
--------------------------------------------------------------------------------
/pages/my/setting.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | 退出登录
10 |
--------------------------------------------------------------------------------
/pages/my/setting.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | padding: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/my/user-code.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "会员码"
3 | }
--------------------------------------------------------------------------------
/pages/my/user-code.wxml:
--------------------------------------------------------------------------------
1 |
2 | {{ userCode }}
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/pages/my/user-code.wxss:
--------------------------------------------------------------------------------
1 | .title {
2 | text-align: center;
3 | color: #666;
4 | margin: 32rpx;
5 | }
6 |
7 | .van-grid-item__text {
8 | color: #e64340 !important;
9 | font-size: 28rpx !important;
10 | }
11 |
12 | .user-code-bar {
13 | width: 650rpx;
14 | height: 200rpx;
15 | margin-left: 50rpx;
16 | }
17 |
18 | .user-code {
19 | width: 650rpx;
20 | height: 650rpx;
21 | margin-left: 50rpx;
22 | }
--------------------------------------------------------------------------------
/pages/notagree/index.js:
--------------------------------------------------------------------------------
1 | Page({
2 | data: {
3 |
4 | },
5 | onLoad: function (options) {
6 |
7 | },
8 | onShow: function () {
9 |
10 | },
11 | })
--------------------------------------------------------------------------------
/pages/notagree/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "很抱歉~"
3 | }
--------------------------------------------------------------------------------
/pages/notagree/index.wxml:
--------------------------------------------------------------------------------
1 |
2 | Oops!
3 |
4 | 很遗憾,若您不同意《用户协议》和《隐私协议》,将无法继续使用我们的服务。
5 |
6 |
7 |
--------------------------------------------------------------------------------
/pages/notagree/index.wxss:
--------------------------------------------------------------------------------
1 | .notagree {
2 | padding: 64rpx;
3 | }
4 | .title {
5 | font-size: 100rpx;
6 | font-weight: bold;
7 | }
8 | .profile {
9 | margin-top: 64rpx;
10 | color: #666;
11 | line-height: 48rpx;
12 | }
13 | .img {
14 | margin-top: 64rpx;
15 | }
--------------------------------------------------------------------------------
/pages/notice/index.js:
--------------------------------------------------------------------------------
1 | const WXAPI = require('apifm-wxapi')
2 | Page({
3 |
4 | /**
5 | * 页面的初始数据
6 | */
7 | data: {
8 |
9 | },
10 |
11 | /**
12 | * 生命周期函数--监听页面加载
13 | */
14 | onLoad: function (options) {
15 | WXAPI.noticeList().then(res => {
16 | this.setData({
17 | noticeList: res.data.dataList
18 | })
19 | })
20 | },
21 | onShow: function () {
22 |
23 | },
24 | })
--------------------------------------------------------------------------------
/pages/notice/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "公告"
3 | }
--------------------------------------------------------------------------------
/pages/notice/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{item.title}}
5 | {{ item.dateAdd }}
6 |
7 | 查看 >
8 |
9 |
--------------------------------------------------------------------------------
/pages/notice/show.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "公告详情"
3 | }
--------------------------------------------------------------------------------
/pages/notice/show.wxml:
--------------------------------------------------------------------------------
1 |
2 | {{notice.title}}
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/pages/notice/show.wxss:
--------------------------------------------------------------------------------
1 | .notice {
2 | padding: 32rpx;
3 | font-size: 26rpx;
4 | color: #333;
5 | }
6 | .title {
7 | width: 100%;
8 | font-weight: bold;
9 | border-bottom: 1rpx solid #eaeaea;
10 | padding-bottom: 32rpx;
11 | }
12 | .text {
13 | margin-top: 32rpx;
14 | line-height: 64rpx;
15 | }
16 | .text image {
17 | max-width: 100%;
18 | }
--------------------------------------------------------------------------------
/pages/order-details/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "订单详情"
3 | }
--------------------------------------------------------------------------------
/pages/order-details/scan-result.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "订单详情"
3 | }
--------------------------------------------------------------------------------
/pages/order-list/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText":"订单列表",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/pages/order/refundApply.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "申请售后"
3 | }
--------------------------------------------------------------------------------
/pages/order/refundApply.wxss:
--------------------------------------------------------------------------------
1 | .price {
2 | color:#e64340;
3 | font-weight: bold;
4 | }
5 | .pic-box {
6 | display: flex;
7 | flex-wrap: wrap;
8 | }
9 | .pic-box .pic {
10 | margin: 16rpx 0 0 16rpx;
11 | width: 228rpx;
12 | height: 228rpx;
13 | }
--------------------------------------------------------------------------------
/pages/peisong/detail.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "订单详情"
3 | }
--------------------------------------------------------------------------------
/pages/peisong/orders.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": ""
3 | }
--------------------------------------------------------------------------------
/pages/peisong/orders.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/pages/peisong/orders.wxss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/pages/peisong/orders.wxss
--------------------------------------------------------------------------------
/pages/peisong/statistics.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "navigationBarTitleText": "业绩统计"
4 | }
--------------------------------------------------------------------------------
/pages/peisong/statistics.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/pages/peisong/statistics.wxss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/pages/peisong/statistics.wxss
--------------------------------------------------------------------------------
/pages/pwd-pay/modify.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "修改交易密码"
3 | }
--------------------------------------------------------------------------------
/pages/pwd-pay/modify.wxml:
--------------------------------------------------------------------------------
1 |
8 |
15 |
22 |
23 |
24 | 修改交易密码
25 |
26 |
27 |
--------------------------------------------------------------------------------
/pages/pwd-pay/modify.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin-top: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/pwd-pay/reset.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "重置交易密码"
3 | }
--------------------------------------------------------------------------------
/pages/pwd-pay/reset.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin-top: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/pwd-pay/set.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "设置交易密码"
3 | }
--------------------------------------------------------------------------------
/pages/pwd-pay/set.wxml:
--------------------------------------------------------------------------------
1 |
8 |
15 |
16 |
17 | 设置交易密码
18 |
19 |
--------------------------------------------------------------------------------
/pages/pwd-pay/set.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin-top: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/raffle/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "抽奖"
3 | }
--------------------------------------------------------------------------------
/pages/recharge/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "在线充值"
3 | }
--------------------------------------------------------------------------------
/pages/recharge/index.wxss:
--------------------------------------------------------------------------------
1 | .rechargeSendRules {
2 | margin-top: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/recycle/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText":"申请回收"
3 | }
--------------------------------------------------------------------------------
/pages/recycle/index.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | padding: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/recycle/order-detail.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText":"回收订单详情"
3 | }
--------------------------------------------------------------------------------
/pages/recycle/order-detail.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | padding: 32rpx;
3 | }
4 | .hx-qrcode {
5 | padding: 32rpx;
6 | text-align: center;
7 | color: #333;
8 | }
9 | .hx-qrcode .t {
10 | font-weight: bold;
11 | }
12 | .hx-qrcode .t2 {
13 | font-size: 26rpx;
14 | color: #666;
15 | }
16 | .hx-qrcode .hx-canvas {
17 | width: 650rpx;
18 | height: 650rpx;
19 | }
20 | .statusStr {
21 | color: #e64340 !important;
22 | font-weight: bold;
23 | }
--------------------------------------------------------------------------------
/pages/recycle/orders.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText":"回收订单",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/pages/recycle/orders.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin-left: 16rpx;
3 | }
--------------------------------------------------------------------------------
/pages/score-excharge/growth.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "积分兑换成长值"
3 | }
--------------------------------------------------------------------------------
/pages/score-excharge/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "积分券兑换积分"
3 | }
--------------------------------------------------------------------------------
/pages/score-excharge/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
--------------------------------------------------------------------------------
/pages/score/growth.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "成长值明细"
3 | }
--------------------------------------------------------------------------------
/pages/score/growth.wxml:
--------------------------------------------------------------------------------
1 |
2 | 当前成长值
3 | {{growth}}
4 |
5 | 暂无成长值明细~
6 |
7 |
8 | {{ item.typeStr }} {{ item.remark? '('+ item.remark +')' : '' }}
9 | {{ item.dateAdd }}
10 |
11 | {{ (item.behavior ==0 ) ? '+' : '' }} {{ item.growth }}
12 |
13 |
--------------------------------------------------------------------------------
/pages/score/growth.wxss:
--------------------------------------------------------------------------------
1 | .score {
2 | display: flex;
3 | flex-direction: column;
4 | width: 750rpx;
5 | padding-top:50rpx;
6 | height: 150rpx;
7 | background-color: #e85654;
8 | text-align: center;
9 | font-size: 14px;
10 | line-height: 30px;
11 | color:#fff;
12 | }
13 |
14 | .no-data {
15 | margin-top: 100rpx;
16 | text-align: center;
17 | font-size: 13px;
18 | color:#ccc;
19 | }
20 |
21 | .cashlogs {
22 | display: flex;
23 | font-size: 12px;
24 | margin-top: 20rpx;
25 | padding-bottom: 20rpx;
26 | border-bottom: 1px solid #eee;
27 | line-height: 20px;
28 | }
29 | .cashlogs .profile {
30 | width:600rpx;
31 | padding-left: 30rpx;
32 | }
33 | .cashlogs .amount {
34 | width:150rpx;
35 | }
--------------------------------------------------------------------------------
/pages/score/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "积分明细"
3 | }
--------------------------------------------------------------------------------
/pages/score/index.wxml:
--------------------------------------------------------------------------------
1 |
2 | 可用积分
3 | {{score}}
4 |
5 | 暂无积分明细~
6 |
7 |
8 | {{ item.typeStr }} {{ item.remark? '('+ item.remark +')' : '' }}
9 | {{ item.dateAdd }}
10 |
11 | {{ (item.behavior ==0 ) ? '+' : '' }} {{ item.score }}
12 |
13 |
--------------------------------------------------------------------------------
/pages/score/index.wxss:
--------------------------------------------------------------------------------
1 | .score {
2 | display: flex;
3 | flex-direction: column;
4 | width: 750rpx;
5 | padding-top:50rpx;
6 | height: 150rpx;
7 | background-color: #e85654;
8 | text-align: center;
9 | font-size: 14px;
10 | line-height: 30px;
11 | color:#fff;
12 | }
13 |
14 | .no-data {
15 | margin-top: 100rpx;
16 | text-align: center;
17 | font-size: 13px;
18 | color:#ccc;
19 | }
20 |
21 | .cashlogs {
22 | display: flex;
23 | font-size: 12px;
24 | margin-top: 20rpx;
25 | padding-bottom: 20rpx;
26 | border-bottom: 1px solid #eee;
27 | line-height: 20px;
28 | }
29 | .cashlogs .profile {
30 | width:600rpx;
31 | padding-left: 30rpx;
32 | }
33 | .cashlogs .amount {
34 | width:150rpx;
35 | }
--------------------------------------------------------------------------------
/pages/search/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "搜一搜"
3 | }
--------------------------------------------------------------------------------
/pages/search/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | {{ item }}
9 |
10 |
18 | 删除
19 |
20 |
21 |
--------------------------------------------------------------------------------
/pages/search/index.wxss:
--------------------------------------------------------------------------------
1 | /* pages/search/index.wxss */
--------------------------------------------------------------------------------
/pages/select-address/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "选择收货地址",
3 | "enablePullDownRefresh": true
4 | }
--------------------------------------------------------------------------------
/pages/select-address/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 新增收货地址
13 |
14 |
--------------------------------------------------------------------------------
/pages/select-address/index.wxss:
--------------------------------------------------------------------------------
1 | .list {
2 | display: flex;
3 | justify-content: space-between;
4 | align-items: center;
5 | padding-right: 32rpx;
6 | border-bottom: solid 2rpx #eeeeee;
7 | }
8 | .aaa {
9 | flex: 1;
10 | }
--------------------------------------------------------------------------------
/pages/shop-cart/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "购物车"
3 | }
4 |
--------------------------------------------------------------------------------
/pages/shop-cart/index.wxss:
--------------------------------------------------------------------------------
1 | @import "../template-cart/template-cart.wxss";
2 | page{
3 | min-height: 100%;
4 | background-color: #F2f2f2;
5 | }
6 | .container {
7 | background-color: #F2f2f2;
8 | min-height: 100%;
9 | }
10 | .pos-fiexd{
11 | position: fixed;
12 | bottom: 0;
13 | left: 0;
14 | }
15 | .vtabs{
16 | width: 100vw;
17 | }
--------------------------------------------------------------------------------
/pages/shop/select.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "navigationBarTitleText": "选择门店"
4 | }
--------------------------------------------------------------------------------
/pages/sign/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "每日签到"
3 | }
--------------------------------------------------------------------------------
/pages/sign/index.wxml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 | 点击签到
12 |
13 |
--------------------------------------------------------------------------------
/pages/sign/index.wxss:
--------------------------------------------------------------------------------
1 | .todo-dot-bottom {
2 | color: red !important;
3 | }
4 | .zwqd-box {
5 | text-align: center;
6 | margin: auto;
7 | margin-top: 32rpx;
8 | }
9 | .zwqd-box image {
10 | width: 140rpx;
11 | height: 140rpx;
12 | margin: auto;
13 | }
14 | .zwqd-box view {
15 | margin-top: 16rpx;
16 | color: #999;
17 | font-size: 26rpx;
18 | }
--------------------------------------------------------------------------------
/pages/start/start.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": " ",
3 | "enablePullDownRefresh": false,
4 | "disableScroll": true,
5 | "navigationStyle": "custom"
6 | }
--------------------------------------------------------------------------------
/pages/start/start.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | 进入小程序
14 |
15 |
--------------------------------------------------------------------------------
/pages/template-cart/template-cart.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/pages/template-cart/template-cart.js
--------------------------------------------------------------------------------
/pages/test/wifi.js:
--------------------------------------------------------------------------------
1 | Page({
2 | data: {
3 | test: '1893年
奥斯曼大街上诞生了一间70平米的商铺。在128年间,它发展成为一家7万平方米的大型百货商场。它就是巴黎老佛爷奥斯曼旗舰店。
'
4 | },
5 | onLoad(options) {
6 | },
7 | onShow() {
8 |
9 | },
10 | })
--------------------------------------------------------------------------------
/pages/test/wifi.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {}
3 | }
--------------------------------------------------------------------------------
/pages/test/wifi.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/test/wifi.wxss:
--------------------------------------------------------------------------------
1 | /* pages/test/wifi.wxss */
--------------------------------------------------------------------------------
/pages/to-pay-order/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "确认订单"
3 | }
4 |
--------------------------------------------------------------------------------
/pages/withdraw/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "申请提现"
3 | }
--------------------------------------------------------------------------------
/pages/withdraw/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
16 |
24 |
25 | 申请提现
26 |
27 |
--------------------------------------------------------------------------------
/pages/withdraw/index.wxss:
--------------------------------------------------------------------------------
1 | .btn {
2 | margin-top: 32rpx;
3 | }
--------------------------------------------------------------------------------
/pages/wuliu/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "物流信息"
3 | }
--------------------------------------------------------------------------------
/project.private.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "setting": {
3 | "compileHotReLoad": true,
4 | "urlCheck": false,
5 | "bigPackageSizeSupport": false
6 | },
7 | "condition": {},
8 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
9 | "libVersion": "3.7.12",
10 | "projectname": "%E5%A4%A9%E4%BD%BF%E7%AB%A5%E8%A3%85"
11 | }
--------------------------------------------------------------------------------
/sitemap.json:
--------------------------------------------------------------------------------
1 | {
2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
3 | "rules": [{
4 | "action": "allow",
5 | "page": "*"
6 | }]
7 | }
--------------------------------------------------------------------------------
/utils/image.js:
--------------------------------------------------------------------------------
1 | function imageUtil (originalWidth, originalHeight) {
2 | let imageSize = {}
3 | wx.getSystemInfo({
4 | success: function (res) {
5 | const windowWidth = res.windowWidth
6 | imageSize.x = 0
7 | imageSize.y = 0
8 | imageSize.windowWidth = windowWidth
9 | imageSize.imageWidth = originalWidth
10 | imageSize.imageHeight = originalHeight
11 | if (originalWidth > windowWidth) {
12 | imageSize.imageWidth = windowWidth
13 | imageSize.imageHeight = windowWidth * originalHeight / originalWidth
14 | } else {
15 | imageSize.x = (windowWidth - originalWidth) / 2
16 | }
17 | }
18 | })
19 | return imageSize
20 | }
21 |
22 | module.exports = {
23 | imageUtil: imageUtil
24 | }
25 |
--------------------------------------------------------------------------------
/utils/tools.wxs:
--------------------------------------------------------------------------------
1 | // 页面上使用的公共类
2 | //
3 | // tools.tofix2(12.33333)
4 | module.exports = {
5 | msg: 'wxs-tools',
6 | tofix2: function(num) {
7 | return num.toFixed(2)
8 | }
9 | };
--------------------------------------------------------------------------------