UPDATE
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
<script>
|
||||
import { formatByte } from "utils";
|
||||
export default {
|
||||
name: "lemonMessageFile",
|
||||
inheritAttrs: false,
|
||||
render() {
|
||||
return (
|
||||
<lemon-message-basic
|
||||
class="lemon-message-file"
|
||||
props={{ ...this.$attrs }}
|
||||
scopedSlots={{
|
||||
content: props => [
|
||||
<div class="lemon-message-file__inner">
|
||||
<p class="lemon-message-file__name">{props.fileName}</p>
|
||||
<p class="lemon-message-file__byte">
|
||||
{formatByte(props.fileSize)}
|
||||
</p>
|
||||
</div>,
|
||||
<div class="lemon-message-file__sfx">
|
||||
<i class="lemon-icon-attah" />
|
||||
</div>
|
||||
]
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style lang="stylus">
|
||||
@import '~styles/utils/index'
|
||||
+b(lemon-message-file)
|
||||
+b(lemon-message)
|
||||
+e(content)
|
||||
display flex
|
||||
cursor pointer
|
||||
width 200px
|
||||
background #fff
|
||||
padding 12px 18px
|
||||
overflow hidden
|
||||
p
|
||||
margin 0
|
||||
+e(tip)
|
||||
display none
|
||||
+e(inner)
|
||||
flex 1
|
||||
+e(name)
|
||||
font-size 14px
|
||||
+e(byte)
|
||||
font-size 12px
|
||||
color #aaa
|
||||
+e(sfx)
|
||||
display flex
|
||||
align-items center
|
||||
justify-content center
|
||||
font-weight bold
|
||||
user-select none
|
||||
font-size 34px
|
||||
color #ccc
|
||||
</style>
|
||||
Reference in New Issue
Block a user