feat: 增加豆包请求接口

This commit is contained in:
kenny
2025-10-13 17:54:02 +08:00
parent 0b96a81021
commit 0c5a32ae3e
7 changed files with 532 additions and 397 deletions
+2 -7
View File
@@ -20,7 +20,7 @@
<view class="info-main">
<view class="info-basic">
<text class="gender">{{ userFaceInfo.sex }}</text>
<text class="birthday">| {{ userFaceInfo.createTime }}</text>
<text class="birthday">| {{ userFaceInfo.birthday }}</text>
</view>
<view class="info-desc">
{{ userFaceInfo.feature }}
@@ -63,17 +63,12 @@ const props = defineProps({
},
});
// console.log('9999999999999999999999999', props.userFaceInfo)
const userFaceInfo = ref({});
watch(
() => props.userFaceInfo,
(newVal) => {
console.log('newVal: xxxxxxxx', newVal);
// console.log('newVal: xxxxxxxx', newVal);
userFaceInfo.value = newVal;
},
{ deep: true, immediate: true }