开始做登录
This commit is contained in:
1
miniprogram_npm/@vant/weapp/empty/index.d.ts
vendored
Normal file
1
miniprogram_npm/@vant/weapp/empty/index.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
12
miniprogram_npm/@vant/weapp/empty/index.js
Normal file
12
miniprogram_npm/@vant/weapp/empty/index.js
Normal file
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var component_1 = require("../common/component");
|
||||
(0, component_1.VantComponent)({
|
||||
props: {
|
||||
description: String,
|
||||
image: {
|
||||
type: String,
|
||||
value: 'default',
|
||||
},
|
||||
},
|
||||
});
|
4
miniprogram_npm/@vant/weapp/empty/index.json
Normal file
4
miniprogram_npm/@vant/weapp/empty/index.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
22
miniprogram_npm/@vant/weapp/empty/index.wxml
Normal file
22
miniprogram_npm/@vant/weapp/empty/index.wxml
Normal file
@@ -0,0 +1,22 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
<wxs src="./index.wxs" module="computed" />
|
||||
|
||||
<view class="custom-class van-empty">
|
||||
<view class="van-empty__image">
|
||||
<slot name="image"></slot>
|
||||
</view>
|
||||
<view class="van-empty__image">
|
||||
<image wx:if="{{ image }}" class="van-empty__image__img" src="{{ computed.imageUrl(image) }}" />
|
||||
</view>
|
||||
|
||||
<view class="van-empty__description">
|
||||
<slot name="description"></slot>
|
||||
</view>
|
||||
<view class="van-empty__description">
|
||||
{{ description }}
|
||||
</view>
|
||||
|
||||
<view class="van-empty__bottom">
|
||||
<slot></slot>
|
||||
</view>
|
||||
</view>
|
15
miniprogram_npm/@vant/weapp/empty/index.wxs
Normal file
15
miniprogram_npm/@vant/weapp/empty/index.wxs
Normal file
@@ -0,0 +1,15 @@
|
||||
/* eslint-disable */
|
||||
var PRESETS = ['error', 'search', 'default', 'network'];
|
||||
|
||||
function imageUrl(image) {
|
||||
if (PRESETS.indexOf(image) !== -1) {
|
||||
return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png';
|
||||
}
|
||||
|
||||
return image;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
imageUrl: imageUrl,
|
||||
};
|
||||
|
1
miniprogram_npm/@vant/weapp/empty/index.wxss
Normal file
1
miniprogram_npm/@vant/weapp/empty/index.wxss
Normal file
@@ -0,0 +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}
|
Reference in New Issue
Block a user