|
@@ -267,9 +267,16 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
- <!--<el-form-item label="删除状态" prop="delFlag">
|
|
|
|
- <el-input v-model="form.delFlag" placeholder="请输入删除状态" />
|
|
|
|
- </el-form-item>-->
|
|
|
|
|
|
+ <el-form-item label="商品类别" prop="fTypeid">
|
|
|
|
+ <el-select v-model="form.fTypeid" placeholder="请选择商品类别">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in fTypeidOptions"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue"
|
|
|
|
+ ></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
|
@@ -316,6 +323,8 @@
|
|
fIdOptions: [],
|
|
fIdOptions: [],
|
|
// 状态数据字典
|
|
// 状态数据字典
|
|
statusOptions: [],
|
|
statusOptions: [],
|
|
|
|
+ // 数据字典
|
|
|
|
+ fTypeidOptions: [],
|
|
// 删除状态字典
|
|
// 删除状态字典
|
|
delFlagOptions: [],
|
|
delFlagOptions: [],
|
|
// 查询参数
|
|
// 查询参数
|
|
@@ -360,6 +369,9 @@
|
|
this.getDicts("sys_normal_disable").then(response => {
|
|
this.getDicts("sys_normal_disable").then(response => {
|
|
this.statusOptions = response.data;
|
|
this.statusOptions = response.data;
|
|
});
|
|
});
|
|
|
|
+ this.getDicts("data_goods_category").then(response => {
|
|
|
|
+ this.fTypeidOptions = response.data;
|
|
|
|
+ });
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
/** 查询商品详情列表 */
|
|
/** 查询商品详情列表 */
|