Browse Source

裁剪框修改

lzm_web
Linzm 8 months ago
parent
commit
853019eb7b
  1. 17
      src/views/badge/index.vue

17
src/views/badge/index.vue

@ -9,8 +9,14 @@ import { onMounted, ref } from 'vue';
const show = ref(false) const show = ref(false)
const imgShow = ref(false) const imgShow = ref(false)
const router = useRouter() const router = useRouter()
const option = ref({}) const option = ref({
const options = ref({}) autoCropWidth: 1000,
autoCropHeight: 1000,
})
const options = ref({
autoCropWidth: 1000,
autoCropHeight: 1000,
})
const imgurl = ref('') const imgurl = ref('')
const imgBgUrl = ref('') const imgBgUrl = ref('')
const isBgShow = ref(true) const isBgShow = ref(true)
@ -1029,4 +1035,11 @@ onMounted(() => {
width: 18px; width: 18px;
height: 12px; height: 12px;
} }
.btndiv {
position: fixed;
bottom: 10vh;
width: 80%;
left: 50%;
transform: translateX(-50%);
}
</style> </style>

Loading…
Cancel
Save