|
|
@@ -40,7 +40,7 @@
|
|
|
v-if="isDetailDialogShow"
|
|
|
:description="detailDescription"
|
|
|
:image-paths="detailPictures"
|
|
|
- @toggle-status="switchDetailDialog"
|
|
|
+ @close="closeDetailDialog"
|
|
|
/>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -135,8 +135,8 @@
|
|
|
};
|
|
|
|
|
|
// 详情
|
|
|
- const switchDetailDialog = (show: boolean) => {
|
|
|
- isDetailDialogShow.value = show;
|
|
|
+ const closeDetailDialog = () => {
|
|
|
+ isDetailDialogShow.value = false;
|
|
|
};
|
|
|
const handleDetail = (row) => {
|
|
|
isDetailDialogShow.value = true;
|