2024-11-03 18:01:47 +08:00
|
|
|
|
<script setup>
|
|
|
|
|
|
import {computed, ref, watch} from "vue";
|
|
|
|
|
|
const data=ref({});
|
|
|
|
|
|
const realData=ref({});
|
|
|
|
|
|
const props = defineProps([
|
|
|
|
|
|
"data","realData"
|
|
|
|
|
|
]);
|
|
|
|
|
|
const emit = defineEmits(['clickBuy'])
|
|
|
|
|
|
watch(()=>props.data,(n)=>{
|
|
|
|
|
|
data.value=n;
|
|
|
|
|
|
},{deep:true, immediate: true})
|
|
|
|
|
|
|
|
|
|
|
|
watch(()=>props.realData,(n)=>{
|
|
|
|
|
|
realData.value=n;
|
|
|
|
|
|
},{deep:true, immediate: true})
|
|
|
|
|
|
|
|
|
|
|
|
const clickBuy=async ()=>{
|
|
|
|
|
|
|
|
|
|
|
|
emit('clickBuy',data.value)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const isConformToRule=computed(()=>{
|
|
|
|
|
|
if (data.value.isLimit===true)
|
|
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (realData.value.money>=data.value.needMoney
|
|
|
|
|
|
&&realData.value.value>=data.value.needValue
|
|
|
|
|
|
&&realData.value.points>=data.value.needPoints
|
|
|
|
|
|
&&data.value.stockNumber>0)
|
|
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
2024-11-02 19:50:01 +08:00
|
|
|
|
<el-card shadow="hover">
|
2024-11-03 18:01:47 +08:00
|
|
|
|
<template #header>{{data.name}}</template>
|
2024-11-02 19:50:01 +08:00
|
|
|
|
<img
|
2024-11-03 18:01:47 +08:00
|
|
|
|
:src="data.imageUrl"
|
2024-11-02 19:50:01 +08:00
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
alt=""/>
|
2024-11-03 18:01:47 +08:00
|
|
|
|
简介:{{data.describe}}
|
2024-11-02 19:50:01 +08:00
|
|
|
|
<ul>
|
2024-11-03 18:01:47 +08:00
|
|
|
|
<li :class="{'less-li': realData.money<data.needMoney}">所需钱钱:{{data.needMoney}}</li>
|
|
|
|
|
|
<li :class="{'less-li': realData.value<data.needValue}">所需价值:{{data.needValue}}</li>
|
|
|
|
|
|
<li :class="{'less-li': realData.points<data.needPoints}">所需积分:{{data.needPoints}}</li>
|
|
|
|
|
|
<li>限购数量:{{data.limitNumber}}</li>
|
|
|
|
|
|
<li>剩余:{{data.stockNumber}}</li>
|
2024-11-02 19:50:01 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
<el-divider />
|
|
|
|
|
|
<div class="bottom">
|
2024-11-03 18:01:47 +08:00
|
|
|
|
|
|
|
|
|
|
<el-button v-if="!isConformToRule" :disabled="true" type="danger">条件不足</el-button>
|
|
|
|
|
|
<el-button v-else :disabled="data.isLimit" type="success" @click="clickBuy">{{data.isLimit===true?"已申请":"申请购买"}} </el-button>
|
2024-11-02 19:50:01 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</template>
|
2024-11-03 18:01:47 +08:00
|
|
|
|
|
2024-11-02 19:50:01 +08:00
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.bottom
|
|
|
|
|
|
{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
}
|
2024-11-03 18:01:47 +08:00
|
|
|
|
.less-li{
|
|
|
|
|
|
color: red;
|
|
|
|
|
|
}
|
2024-11-02 19:50:01 +08:00
|
|
|
|
</style>
|