Update README.md

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