move COLOR definitions to c2t object
This commit is contained in:
parent
421843db43
commit
65a6126010
33
unitool.js
33
unitool.js
@ -4,14 +4,29 @@ import './ican-H5Api.js' // 对齐H5Api: https://ext.dcloud.net.cn/plugin?id=415
|
|||||||
const BASE_TYPE_DEFAULT = 'SERVER' // one of { SERVER: 服务器, UNICLOUD_FUNC: 云函数, UNICLOUD_OBJECT: 云对象 }
|
const BASE_TYPE_DEFAULT = 'SERVER' // one of { SERVER: 服务器, UNICLOUD_FUNC: 云函数, UNICLOUD_OBJECT: 云对象 }
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
// 用直观的色彩,代替 uview 的命名方式:
|
// 用直观的色彩,代替语义化的类型:
|
||||||
RED: 'error',
|
// uView 中大量组件都使用 type 来设置颜色,而 uni-ui 中只有少量组件用到。
|
||||||
GREEN: 'success',
|
c2t: {
|
||||||
BLUE: 'primary',
|
RED: 'error',
|
||||||
YELLOW: 'warning',
|
GREEN: 'success',
|
||||||
GREY: 'info',
|
BLUE: 'primary',
|
||||||
BLACK_TOAST: 'default',
|
YELLOW: 'warning',
|
||||||
WHITE_BUTTON: 'default',
|
GREY: 'info',
|
||||||
|
|
||||||
|
uAlertTips: { YELLOW: 'warning', BLUE: 'primary', RED: 'error', GREY: 'info', GREEN: 'success' },
|
||||||
|
uBadge: { RED: 'error', BLUE: 'primary', YELLOW: 'warning', GREY: 'info', GREEN: 'success' },
|
||||||
|
uButton: { WHITE: 'default', BLUE: 'primary', YELLOW: 'warning', RED: 'error', GREY: 'info', GREEN: 'success' },
|
||||||
|
uNoticeBar: { YELLOW: 'warning', BLUE: 'primary', RED: 'error', GREY: 'info', GREEN: 'success', TRANS: 'none' },
|
||||||
|
uTag: { BLUE: 'primary', RED: 'error', YELLOW: 'warning', GREY: 'info', GREEN: 'success' },
|
||||||
|
uToast: { BLACK: 'default', BLUE: 'primary', YELLOW: 'warning', RED: 'error', GREY: 'info', GREEN: 'success' },
|
||||||
|
uTopTips: { BLUE: 'primary', RED: 'error', YELLOW: 'warning', GREY: 'info', GREEN: 'success' },
|
||||||
|
|
||||||
|
uniBadge: { GREY: 'default', YELLOW: 'warning', BLUE: 'primary', GREEN: 'success', RED: 'error' },
|
||||||
|
uniButton: { GREY: 'default', RED: 'warn', RGB: 'primary' },
|
||||||
|
uniPopupDialog: { GREEN: 'success', YELLOW: 'warn', RED: 'error', GREY: 'info' },
|
||||||
|
uniPopupMessage: { GREEN: 'success', YELLOW: 'warn', RED: 'error', GREY: 'info' },
|
||||||
|
uniTag: { GREY: 'default', YELLOW: 'warning', BLUE: 'primary', GREEN: 'success', RED: 'error', PURPLE: 'royal' },
|
||||||
|
},
|
||||||
|
|
||||||
thisPage () {
|
thisPage () {
|
||||||
return this.__page__
|
return this.__page__
|
||||||
@ -29,7 +44,7 @@ export default {
|
|||||||
console.info('%c ' + JSON.stringify({ time: new Date().toJSON(), page: pageName }), 'color:green;background:lightgrey', ...args)
|
console.info('%c ' + JSON.stringify({ time: new Date().toJSON(), page: pageName }), 'color:green;background:lightgrey', ...args)
|
||||||
},
|
},
|
||||||
ccwarn (...args) {
|
ccwarn (...args) {
|
||||||
const pageName = this.thisPage().route || 'VueApp'
|
const pageName = this.thisPage()?.route || 'VueApp'
|
||||||
console.warn('%c ' + JSON.stringify({ time: new Date().toJSON(), page: pageName }), 'color:orange;background:lightgrey', ...args)
|
console.warn('%c ' + JSON.stringify({ time: new Date().toJSON(), page: pageName }), 'color:orange;background:lightgrey', ...args)
|
||||||
},
|
},
|
||||||
ccerror (...args) {
|
ccerror (...args) {
|
||||||
|
Loading…
Reference in New Issue
Block a user