85992641 by zhangmeng

修改bug

1 parent 699508a6
......@@ -72,7 +72,7 @@ const route = useRoute()
const form = ref({})
const query = ref({
activityId: route.params.cptId,
studioId:route.params.id
id:route.params.id
})
const loading = ref(false)
onMounted(() => {
......@@ -88,7 +88,7 @@ function getData() {
form.value.photos?.split(',')?.forEach(v=>{
form.value.photosList.push(fillImgUrl(v))
})
// console.log(res)
console.log(res)
}).catch(err => {
console.log(err)
})
......
......@@ -162,7 +162,7 @@ onMounted(() => {
function getData() {
booking.makeUpDetail({ activityId: route.params.cptId,
studioId:route.params.id}).then(res => {
id:route.params.id}).then(res => {
formData.value = res.data
}).catch(err => {
console.log(err)
......
......@@ -71,7 +71,7 @@ const route = useRoute()
const form = ref({})
const query = ref({
activityId: route.params.cptId,
shootId:route.params.id
id:route.params.id
})
const loading = ref(false)
const map = ref(null)
......
......@@ -160,7 +160,7 @@ onMounted(() => {
function getData() {
booking.getComShootVoById({ activityId: route.params.cptId,
shootId:route.params.id}).then(res => {
id:route.params.id}).then(res => {
formData.value = res.data
}).catch(err => {
console.log(err)
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!