|
@@ -1,14 +1,23 @@
|
|
|
<template>
|
|
<template>
|
|
|
<el-container>
|
|
<el-container>
|
|
|
<el-main>
|
|
<el-main>
|
|
|
- <el-form ref="dialogForm" :model="formData" :rules="rules" label-width="100px" label-position="top">
|
|
|
|
|
- <el-card shadow="never" header="基础信息">
|
|
|
|
|
- <el-form-item label="商品品类" prop="category">
|
|
|
|
|
- <el-cascader v-model="formData.category" :options="categoryData" :props="deptsProps" clearable style="width: 100%;" />
|
|
|
|
|
- <div class="el-form-item-msg"></div>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-card>
|
|
|
|
|
- </el-form>
|
|
|
|
|
|
|
+ <el-row :gutter="20">
|
|
|
|
|
+ <el-col :span="18">
|
|
|
|
|
+ <el-form ref="dialogForm" :model="formData" :rules="rules" label-width="100px" label-position="top">
|
|
|
|
|
+ <el-card shadow="never" header="基础信息">
|
|
|
|
|
+ <el-form-item label="商品品类" prop="category">
|
|
|
|
|
+ <el-cascader v-model="formData.category" :options="categoryData" :props="deptsProps" clearable style="width: 100%;" />
|
|
|
|
|
+ <div class="el-form-item-msg"></div>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-card>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="6">
|
|
|
|
|
+ <el-card shadow="never" header="详情预览">
|
|
|
|
|
+
|
|
|
|
|
+ </el-card>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-row>
|
|
|
</el-main>
|
|
</el-main>
|
|
|
<el-footer style="text-align: center;">
|
|
<el-footer style="text-align: center;">
|
|
|
<el-button @click="reback" size="large">取 消</el-button>
|
|
<el-button @click="reback" size="large">取 消</el-button>
|
|
@@ -56,4 +65,8 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-</script>
|
|
|
|
|
|
|
+</script>
|
|
|
|
|
+
|
|
|
|
|
+<style>
|
|
|
|
|
+
|
|
|
|
|
+</style>
|