1.对接商品分类 2.对接商品列表

This commit is contained in:
gyq
2024-02-26 14:27:52 +08:00
parent 33225b0aef
commit 6b6caa451e
4 changed files with 70 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
<template>
<el-dialog title="选择规格" width="800" v-model="show">
<el-dialog title="选择规格" width="800" v-model="dialogVisible">
<div class="header">选择规格</div>
<div class="row">
<div class="title">规格</div>
@@ -34,9 +34,16 @@
</template>
<script setup>
import { ref } from 'vue'
const show = ref(false)
import { ref, defineExpose } from 'vue'
const dialogVisible = ref(false)
function show() {
dialogVisible.value = true
}
defineExpose({
show
})
</script>
<style scoped lang="scss">