jiangchengfeiyi-xiaochengxu/pages/testPage/testPage.vue

57 lines
1.4 KiB
Vue
Raw Normal View History

2025-02-24 01:34:57 +00:00
<template>
2025-03-23 10:31:11 +00:00
<!-- <clothesAttributeVue></clothesAttributeVue> -->
<customerServiceVue></customerServiceVue>
2025-02-24 01:34:57 +00:00
</template>
2025-03-16 13:35:20 +00:00
<script setup>
import { onMounted } from 'vue';
2025-03-23 10:31:11 +00:00
// import clothesAttributeVue from '../clothesRent/component/clothesAttribute.vue';
import customerServiceVue from '../book/component/customerService.vue';
2025-03-16 13:35:20 +00:00
onMounted(() => {
getUrl()
})
const getUrl = async () => {
const res = await uni.request({
url: 'http://123.249.108.160:8888/api/file/downloadFile',
method: 'GET',
data: {
objectKey: 'feiyi/test/2/ZFdyLLBg-VCG211334705187.png'
}
})
console.log(base64Data)
}
// import { onMounted } from 'vue';
// import addressSelectedVue from '../Shopping-cart/component/addressSelected.vue';
// onMounted(() => {
// console.log(Decode64(Encode64(`<p style="text-align: center;">富文本测试</p>`)))
// })
// /**
// * 编码base64
// */
// function Encode64(str) {
// return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,
// function toSolidBytes(match, p1) {
// return String.fromCharCode('0x' + p1);
// }));
// }
// /**
// * 解码base64
// */
// function Decode64(str) {
// return decodeURIComponent(atob(str).split('').map(function (c) {
// return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
// }).join(''));
// }
2025-02-24 01:34:57 +00:00
</script>
<style scoped lang="scss">
</style>