Update README.md

This commit is contained in:
weilanwl
2021-11-16 23:50:04 +08:00
committed by GitHub
parent db3ae0d24c
commit 26173e9e10
+46 -46
View File
@@ -21,7 +21,7 @@ ColorUI是一个css库!!!在你引入样式后可以根据class来调用
下载源码解压获得`/Colorui-UniApp`文件夹,复制目录下的 `/colorui` 文件夹到你的项目根目录 下载源码解压获得`/Colorui-UniApp`文件夹,复制目录下的 `/colorui` 文件夹到你的项目根目录
`App.vue` 引入关键Css `main.css` `icon.css` `App.vue` 引入关键Css `main.css` `icon.css`
``` ```css
<style> <style>
@import "colorui/main.css"; @import "colorui/main.css";
@import "colorui/icon.css"; @import "colorui/icon.css";
@@ -34,37 +34,37 @@ ColorUI是一个css库!!!在你引入样式后可以根据class来调用
导航栏作为常用组件有做简单封装,当然你也可以直接复制代码结构自己修改,达到个性化目的。 导航栏作为常用组件有做简单封装,当然你也可以直接复制代码结构自己修改,达到个性化目的。
`App.vue` 获得系统信息 `App.vue` 获得系统信息
``` ```js
onLaunch: function() { onLaunch: function() {
uni.getSystemInfo({ uni.getSystemInfo({
success: function(e) { success: function(e) {
// #ifndef MP // #ifndef MP
Vue.prototype.StatusBar = e.statusBarHeight; Vue.prototype.StatusBar = e.statusBarHeight;
if (e.platform == 'android') { if (e.platform == 'android') {
Vue.prototype.CustomBar = e.statusBarHeight + 50; Vue.prototype.CustomBar = e.statusBarHeight + 50;
} else { } else {
Vue.prototype.CustomBar = e.statusBarHeight + 45; Vue.prototype.CustomBar = e.statusBarHeight + 45;
}; };
// #endif // #endif
// #ifdef MP-WEIXIN // #ifdef MP-WEIXIN
Vue.prototype.StatusBar = e.statusBarHeight; Vue.prototype.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect(); let custom = wx.getMenuButtonBoundingClientRect();
Vue.prototype.Custom = custom; Vue.prototype.Custom = custom;
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight; Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
// #endif // #endif
// #ifdef MP-ALIPAY // #ifdef MP-ALIPAY
Vue.prototype.StatusBar = e.statusBarHeight; Vue.prototype.StatusBar = e.statusBarHeight;
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight; Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
// #endif // #endif
} }
}) })
}, },
``` ```
`pages.json` 配置取消系统导航栏 `pages.json` 配置取消系统导航栏
``` ```json
"globalStyle": { "globalStyle": {
"navigationStyle": "custom" "navigationStyle": "custom"
}, },
``` ```
复制代码结构可以直接使用,注意全局变量的获取。 复制代码结构可以直接使用,注意全局变量的获取。
@@ -76,10 +76,10 @@ Vue.component('cu-custom',cuCustom)
``` ```
`page.vue` 页面可以直接调用了 `page.vue` 页面可以直接调用了
``` ```html
<cu-custom bgColor="bg-gradual-blue" :isBack="true"> <cu-custom bgColor="bg-gradual-blue" :isBack="true">
<block slot="backText">返回</block> <block slot="backText">返回</block>
<block slot="content">导航栏</block> <block slot="content">导航栏</block>
</cu-custom> </cu-custom>
``` ```
| 参数 | 作用 |类型 | 默认值 | | 参数 | 作用 |类型 | 默认值 |
@@ -99,7 +99,7 @@ Vue.component('cu-custom',cuCustom)
下载源码解压获得`/demo`,复制目录下的 `/colorui` 文件夹到你的项目根目录 下载源码解压获得`/demo`,复制目录下的 `/colorui` 文件夹到你的项目根目录
`App.wxss` 引入关键Css `main.wxss` `icon.wxss` `App.wxss` 引入关键Css `main.wxss` `icon.wxss`
``` ```css
@import "colorui/main.wxss"; @import "colorui/main.wxss";
@import "colorui/icon.wxss"; @import "colorui/icon.wxss";
@import "app.css"; /* 你的项目css */ @import "app.css"; /* 你的项目css */
@@ -113,34 +113,34 @@ Vue.component('cu-custom',cuCustom)
导航栏作为常用组件有做简单封装,当然你也可以直接复制代码结构自己修改,达到个性化目的。 导航栏作为常用组件有做简单封装,当然你也可以直接复制代码结构自己修改,达到个性化目的。
`App.js` 获得系统信息 `App.js` 获得系统信息
``` ```js
onLaunch: function() { onLaunch: function() {
wx.getSystemInfo({ wx.getSystemInfo({
success: e => { success: e => {
this.globalData.StatusBar = e.statusBarHeight; this.globalData.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect(); let custom = wx.getMenuButtonBoundingClientRect();
this.globalData.Custom = custom; this.globalData.Custom = custom;
this.globalData.CustomBar = custom.bottom + custom.top - e.statusBarHeight; this.globalData.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
} }
}) })
}, },
``` ```
`App.json` 配置取消系统导航栏,并全局引入组件 `App.json` 配置取消系统导航栏,并全局引入组件
``` ```json
"window": { "window": {
"navigationStyle": "custom" "navigationStyle": "custom"
}, },
"usingComponents": { "usingComponents": {
"cu-custom":"/colorui/components/cu-custom" "cu-custom":"/colorui/components/cu-custom"
} }
``` ```
`page.wxml` 页面可以直接调用了 `page.wxml` 页面可以直接调用了
``` ```html
<cu-custom bgColor="bg-gradual-pink" isBack="{{true}}"> <cu-custom bgColor="bg-gradual-pink" isBack="{{true}}">
<view slot="backText">返回</view> <view slot="backText">返回</view>
<view slot="content">导航栏</view> <view slot="content">导航栏</view>
</cu-custom> </cu-custom>
``` ```