index.vue 549 Bytes
<template>
  <div>
    <el-row :gutter="20">
      <el-col :span="6">
        <el-card class="box-card">
          <div style="height: 200px;text-align: center;line-height: 200px;" @click=openDialog(1)>推进商品物流信息</div>
        </el-card>
      </el-col>
    </el-row>
    <shopForm ref='shopForm' />
  </div>

</template>
<script>
import shopForm from "./shop";
export default {
  components: {
    shopForm
  },
  data() {
    return {

    }
  },
  methods: {
    openDialog() {
      this.$refs.shopForm.open()
    }
  }
}
</script>