78 lines
1.4 KiB
Plaintext
78 lines
1.4 KiB
Plaintext
<template>
|
|
<view style="display: flex;flex-direction: column; font-size: 12px;">
|
|
<button class="grow1 button" size="mini" type="default" >测试</button>
|
|
<view class="">沙发撒旦法撒旦法</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
show: true,
|
|
previewSizeI: -1,
|
|
previewSizeList: [],
|
|
rotation: 0,
|
|
logs: [],
|
|
images: [],
|
|
}
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
watch: {
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.mini-btn {
|
|
padding: 5rpx;
|
|
}
|
|
|
|
.btns {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
}
|
|
|
|
.button {
|
|
font-size: xx-large;
|
|
// width: 100rpx;
|
|
padding: 3px 5px;
|
|
}
|
|
|
|
.previews {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.preview-wrap {
|
|
background: black;
|
|
margin: 2px;
|
|
min-width: 320px;
|
|
min-height: 240px;
|
|
}
|
|
|
|
.preview {
|
|
width: 400px;
|
|
height: 300px;
|
|
}
|
|
|
|
.selected {
|
|
background: red;
|
|
}
|
|
|
|
.logs {
|
|
// border: 1rpx solid #eee;
|
|
// padding: 5px;
|
|
// margin: 5px;
|
|
}
|
|
</style> |