feat:转账插件
This commit is contained in:
@@ -1,30 +1,30 @@
|
||||
/*
|
||||
* @Author : LQ
|
||||
* @Description :
|
||||
* @version : 1.0
|
||||
* @Date : 2021-08-20 16:44:21
|
||||
* @LastAuthor : LQ
|
||||
* @lastTime : 2021-08-20 17:45:47
|
||||
* @FilePath : /u-view2.0/uview-ui/libs/config/props/loadingIcon.js
|
||||
*/
|
||||
import config from '../../libs/config/config'
|
||||
|
||||
const {
|
||||
color
|
||||
} = config
|
||||
export default {
|
||||
// loading-icon加载中图标组件
|
||||
loadingIcon: {
|
||||
show: true,
|
||||
color: color['u-tips-color'],
|
||||
textColor: color['u-tips-color'],
|
||||
vertical: false,
|
||||
mode: 'spinner',
|
||||
size: 24,
|
||||
textSize: 15,
|
||||
text: '',
|
||||
timingFunction: 'ease-in-out',
|
||||
duration: 1200,
|
||||
inactiveColor: ''
|
||||
}
|
||||
}
|
||||
/*
|
||||
* @Author : LQ
|
||||
* @Description :
|
||||
* @version : 3.0
|
||||
* @Date : 2021-08-20 16:44:21
|
||||
* @LastAuthor : jry
|
||||
* @lastTime : 2025-12-19 08:55:21
|
||||
* @FilePath : /uview-plus/libs/config/props/loadingIcon.js
|
||||
*/
|
||||
import config from '../../libs/config/config'
|
||||
|
||||
const {
|
||||
color
|
||||
} = config
|
||||
export default {
|
||||
// loading-icon加载中图标组件
|
||||
loadingIcon: {
|
||||
show: true,
|
||||
color: color['u-tips-color'],
|
||||
textColor: color['u-tips-color'],
|
||||
vertical: false,
|
||||
mode: 'spinner',
|
||||
size: 24,
|
||||
textSize: 15,
|
||||
text: '',
|
||||
timingFunction: 'ease-in-out',
|
||||
duration: 1200,
|
||||
inactiveColor: ''
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
import { defineMixin } from '../../libs/vue'
|
||||
import defProps from '../../libs/config/props.js'
|
||||
import LoadingIconDefaultProps from './loadingIcon'
|
||||
import { registerComponentProps } from '../../libs/config/props.js'
|
||||
|
||||
const defProps = registerComponentProps(LoadingIconDefaultProps)
|
||||
export const props = defineMixin({
|
||||
props: {
|
||||
// 是否显示组件
|
||||
|
||||
@@ -68,8 +68,8 @@
|
||||
// #endif
|
||||
/**
|
||||
* loading 加载动画
|
||||
* @description 警此组件为一个小动画,目前用在uView的loadmore加载更多和switch开关等组件的正在加载状态场景。
|
||||
* @tutorial https://ijry.github.io/uview-plus/components/loading.html
|
||||
* @description 此组件为一个小动画,目前用在uView的loadmore加载更多和switch开关等组件的正在加载状态场景。
|
||||
* @tutorial https://uview-plus.jiangruyi.com/components/loading.html
|
||||
* @property {Boolean} show 是否显示组件 (默认 true)
|
||||
* @property {String} color 动画活动区域的颜色,只对 mode = flower 模式有效(默认color['u-tips-color'])
|
||||
* @property {String} textColor 提示文本的颜色(默认color['u-tips-color'])
|
||||
@@ -193,7 +193,6 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import "../../libs/css/components.scss";
|
||||
$u-loading-icon-color: #c8c9cc !default;
|
||||
$u-loading-icon-text-margin-left:4px !default;
|
||||
$u-loading-icon-text-color:$u-content-color !default;
|
||||
@@ -347,3 +346,4 @@
|
||||
|
||||
/* #endif */
|
||||
</style>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user