一、功能介紹:
當數據為空時,按鈕不可用,當數據不為空時,按鈕可用。
二、代碼實現:
<span class="expand-value"><Button size="small" :disabled="isdisabledFn" @click="admiss">查看照片</Button></span>
data() { return { disabled: false, }; },
computed: { isdisabledFn() { if (this.row.touristimg_url === null || this.row.touristimg_url === '') { this.disabled = true; } else if (this.row.touristimg_url !== null) { this.disabled = false; } return this.disabled; }, },