feat: code style
parent
16b23681a7
commit
73c496946f
|
@ -12,11 +12,7 @@ export const useRender = {
|
||||||
*/
|
*/
|
||||||
renderImg: (text) => {
|
renderImg: (text) => {
|
||||||
if (text) {
|
if (text) {
|
||||||
return h(Image, {
|
return h(Image, { src: text, height: 80, width: 80 })
|
||||||
src: text,
|
|
||||||
height: 80,
|
|
||||||
width: 80
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
return ''
|
return ''
|
||||||
},
|
},
|
||||||
|
@ -28,14 +24,7 @@ export const useRender = {
|
||||||
*/
|
*/
|
||||||
renderLink: (url, text?) => {
|
renderLink: (url, text?) => {
|
||||||
if (url) {
|
if (url) {
|
||||||
return h(
|
return h(Button, { type: 'link', href: text }, () => text || '')
|
||||||
Button,
|
|
||||||
{
|
|
||||||
type: 'link',
|
|
||||||
href: text
|
|
||||||
},
|
|
||||||
() => text || ''
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
return ''
|
return ''
|
||||||
},
|
},
|
||||||
|
@ -105,11 +94,7 @@ export const useRender = {
|
||||||
*/
|
*/
|
||||||
renderDict: (text, type, dictType?) => {
|
renderDict: (text, type, dictType?) => {
|
||||||
if (type) {
|
if (type) {
|
||||||
return h(DictTag, {
|
return h(DictTag, { type: type, value: text, dictType: dictType || 'number' })
|
||||||
type: type,
|
|
||||||
value: text,
|
|
||||||
dictType: dictType || 'number'
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
return ''
|
return ''
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue