feat:还原更新框架
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,22 +1,22 @@
|
||||
/*
|
||||
* @Author : jry
|
||||
* @Description :
|
||||
* @version : 3.0
|
||||
* @Date : 2021-08-20 16:44:21
|
||||
* @LastAuthor : jry
|
||||
* @lastTime : 2025-05-17 17:17:33
|
||||
* @FilePath : /uview-plus/libs/config/props/parse.js
|
||||
*/
|
||||
export default {
|
||||
// parse
|
||||
parse: {
|
||||
copyLink: true,
|
||||
errorImg: '',
|
||||
lazyLoad: false,
|
||||
loadingImg: '',
|
||||
pauseVideo: true,
|
||||
previewImg: true,
|
||||
setTitle: true,
|
||||
showImgMenu: true
|
||||
}
|
||||
}
|
||||
/*
|
||||
* @Author : LQ
|
||||
* @Description :
|
||||
* @version : 1.0
|
||||
* @Date : 2021-08-20 16:44:21
|
||||
* @LastAuthor : LQ
|
||||
* @lastTime : 2021-08-20 17:17:33
|
||||
* @FilePath : /u-view2.0/uview-ui/libs/config/props/parse.js
|
||||
*/
|
||||
export default {
|
||||
// parse
|
||||
parse: {
|
||||
copyLink: true,
|
||||
errorImg: '',
|
||||
lazyLoad: false,
|
||||
loadingImg: '',
|
||||
pauseVideo: true,
|
||||
previewImg: true,
|
||||
setTitle: true,
|
||||
showImgMenu: true
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,57 +1,48 @@
|
||||
import { defineMixin } from '../../libs/vue'
|
||||
import ParseDefaultProps from './parse'
|
||||
import { registerComponentProps } from '../../libs/config/props.js'
|
||||
|
||||
const defProps = registerComponentProps(ParseDefaultProps)
|
||||
export const props = defineMixin({
|
||||
props: {
|
||||
containerStyle: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
content: String,
|
||||
copyLink: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.copyLink
|
||||
},
|
||||
domain: String,
|
||||
errorImg: {
|
||||
type: String,
|
||||
default: () => defProps.parse.errorImg
|
||||
},
|
||||
lazyLoad: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.lazyLoad
|
||||
},
|
||||
loadingImg: {
|
||||
type: String,
|
||||
default: () => defProps.parse.loadingImg
|
||||
},
|
||||
pauseVideo: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.pauseVideo
|
||||
},
|
||||
previewImg: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.previewImg
|
||||
},
|
||||
scrollTable: Boolean,
|
||||
selectable: Boolean,
|
||||
setTitle: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.setTitle
|
||||
},
|
||||
showImgMenu: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.showImgMenu
|
||||
},
|
||||
tagStyle: {
|
||||
type: Object,
|
||||
default: () => {}
|
||||
},
|
||||
useAnchor: {
|
||||
type: Boolean,
|
||||
default: null
|
||||
}
|
||||
}
|
||||
})
|
||||
import { defineMixin } from '../../libs/vue'
|
||||
import defProps from '../../libs/config/props.js'
|
||||
export const props = defineMixin({
|
||||
props: {
|
||||
containerStyle: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
content: String,
|
||||
copyLink: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.copyLink
|
||||
},
|
||||
domain: String,
|
||||
errorImg: {
|
||||
type: String,
|
||||
default: () => defProps.parse.errorImg
|
||||
},
|
||||
lazyLoad: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.lazyLoad
|
||||
},
|
||||
loadingImg: {
|
||||
type: String,
|
||||
default: () => defProps.parse.loadingImg
|
||||
},
|
||||
pauseVideo: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.pauseVideo
|
||||
},
|
||||
previewImg: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.previewImg
|
||||
},
|
||||
scrollTable: Boolean,
|
||||
selectable: Boolean,
|
||||
setTitle: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.setTitle
|
||||
},
|
||||
showImgMenu: {
|
||||
type: Boolean,
|
||||
default: () => defProps.parse.showImgMenu
|
||||
},
|
||||
tagStyle: Object,
|
||||
useAnchor: null
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user