submit
This commit is contained in:
parent
ad4d788585
commit
fffbe3b63e
@ -15,3 +15,4 @@
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -56,10 +56,14 @@ const submit=async ()=>{
|
||||
realName:idInfo.value.name
|
||||
})
|
||||
if (res.code===200){
|
||||
msg.value.show({ model: 'success' })
|
||||
/* await uni.showToast({title: '实名成功', icon: 'none', duration: 2000})*/
|
||||
await getUserInfo()
|
||||
await uni.navigateBack()
|
||||
uni.showToast({
|
||||
title: '实名成功',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
})
|
||||
getUserInfo()
|
||||
uni.navigateBack()
|
||||
|
||||
}
|
||||
}
|
||||
const idInfo=ref({
|
||||
|
@ -5,7 +5,7 @@
|
||||
<image src="https://cdns.fontree.cn/fonchain-main/prod/image/1833/avatar/1d693295-c16b-4845-a02b-c052d9cf847a.png" /></div>
|
||||
<div class="wrap2" @click="viewBlindBoxDetail">
|
||||
<div class="wrap2_1">博物馆开馆纪念盲盒</div>
|
||||
<div class="wrap2_2">剩余 23/20000</div>
|
||||
<div class="wrap2_2">剩余 {{allRemainingQty}}/{{allIssueQty}}</div>
|
||||
<div class="wrap2_3">查看详情</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -52,6 +52,8 @@ const viewImg=(item)=>{
|
||||
indicator:'none'
|
||||
})
|
||||
}
|
||||
const allIssueQty=ref(0)
|
||||
const allRemainingQty=ref(0)
|
||||
const getData=async ()=>{
|
||||
const data={
|
||||
"keyword": "",
|
||||
@ -61,6 +63,8 @@ const getData=async ()=>{
|
||||
}
|
||||
const res=await ticketlist(data)
|
||||
if (res.code===200){
|
||||
allIssueQty.value=res.data.allIssueQty
|
||||
allRemainingQty.value=res.data.allRemainingQty
|
||||
tableData.value=res.data.data
|
||||
}
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ onLoad((option)=>{
|
||||
}
|
||||
})
|
||||
const accTitleList=[{title:'首都博物馆东馆',value:0},{title:'智慧门票',value:1}]
|
||||
const acc=ref(1)
|
||||
const acc=ref(0)
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.tab-index{
|
||||
|
@ -12,7 +12,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="content2">
|
||||
<image :src="info.ticketImage"></image>
|
||||
<image @click="viewImg" class="wrap2" :src="info.ticketImage"></image>
|
||||
</div>
|
||||
<div class="content3" >
|
||||
<display-box :styleColor="{backgroundColor: '#B1292E'}">
|
||||
@ -138,7 +138,18 @@
|
||||
<div class="wrap1">*预约后信息不可更改,请仔细核对预约信息</div>
|
||||
<div class="wrap2">预约</div>
|
||||
</div>
|
||||
|
||||
<tm-drawer :height="1054" :round="8" hideHeader inContent ref="calendarView" :placement="'bottom'" v-model:show="showWin">
|
||||
<tm-calendar
|
||||
format="YYYY年MM月DD日"
|
||||
:dateStyle="dateStyle"
|
||||
@click="test"
|
||||
:multiple="multiple"
|
||||
color="#F7963B"
|
||||
v-model:show="showdate"
|
||||
v-model:model-str="dateStr"
|
||||
:model="modeltype"
|
||||
></tm-calendar>
|
||||
<div class="content10" >
|
||||
<div class="wrap1">
|
||||
<image src="../../static/Close@3x.png"></image>
|
||||
@ -182,7 +193,7 @@
|
||||
明日
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap5_4">
|
||||
<div class="wrap5_4" @click="goMore">
|
||||
<div class="wrap5_4_1">更多</div>
|
||||
<div class="wrap5_4_2">
|
||||
<image src="../../static/lj781@3x.png"></image>
|
||||
@ -231,12 +242,40 @@ import {useMainStore} from "@/store"
|
||||
import {ref} from 'vue'
|
||||
const showWin=ref(true)
|
||||
const store=useMainStore()
|
||||
const modeltype = ref('day')
|
||||
const multiple = ref(false)
|
||||
const dateStr = ref('')
|
||||
const showdate = ref(false)
|
||||
|
||||
const info=ref(uni.getStorageSync('currentBooking'))
|
||||
const viewImg=()=>{
|
||||
uni.previewImage({
|
||||
urls:[info.value.ticketImage],
|
||||
indicator:'none'
|
||||
})
|
||||
}
|
||||
const dateStyle = ref([
|
||||
{
|
||||
date: '2022-12-8', //日期
|
||||
text: false, //浅色背景。
|
||||
color: '#F7963B', //主题色.
|
||||
extra: '测试' //额外的内容,在日期下方显示的文本。
|
||||
},
|
||||
{
|
||||
date: '2022-12-24', //日期
|
||||
text: false, //浅色背景。
|
||||
color: '#F7963B', //主题色.
|
||||
extra: '签到' //额外的内容,在日期下方显示的文本。
|
||||
}
|
||||
])
|
||||
const rpxToPx=(rpx)=>{
|
||||
const systemInfo = uni.getSystemInfoSync();
|
||||
const screenWidth = systemInfo.windowWidth;
|
||||
return rpx * screenWidth / 750;
|
||||
}
|
||||
const goMore=()=>{
|
||||
showdate.value=true
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
Loading…
Reference in New Issue
Block a user