1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| <template>
| <div>
| <el-dialog
| title="商品列表"
| :visible.sync="visible"
| width="896px"
| :before-close="handleClose"
| >
| <good-list v-if="visible" @getStoreItem="getStoreItem" :handleNum="handleNum" :checked="checked"></good-list>
| </el-dialog>
| </div>
| </template>
|
| <script>
| import goodList from '@/components/goodList/index.vue'
| export default {
| name: 'GoodListFrom',
| components: { goodList },
| data() {
| return {
| handleNum: '',
| visible: false,
| callback: function() {},
| checked: []
| }
| },
| methods: {
| handleClose() {
| this.visible = false
| },
| getStoreItem(img) {
| this.callback(img)
| this.visible = false
| }
| }
| }
| </script>
|
| <style scoped>
|
| </style>
|
|