Browse Source

11111

master
guoxing 1 year ago
parent
commit
aca2ba5baa
  1. 12
      src/views/commodity/commodityAdd.vue

12
src/views/commodity/commodityAdd.vue

@ -78,6 +78,12 @@
<span class="item_text">规格描述</span> <span class="item_text">规格描述</span>
<el-input v-model="formobj.remarks" placeholder="例如:一份30斤" class="item_input" clearable /> <el-input v-model="formobj.remarks" placeholder="例如:一份30斤" class="item_input" clearable />
</div> </div>
<div class="item">
<span class="item_text">提货截止日</span>
<el-date-picker v-model="formobj.periodValidity" type="date" class="item_input"
value-format="yyyy-MM-dd" placeholder="选择日期">
</el-date-picker>
</div>
<div class="item"> <div class="item">
<span class="item_text">商品简介</span> <span class="item_text">商品简介</span>
<el-input v-model="formobj.content" placeholder="商品简介" class="item_input" clearable /> <el-input v-model="formobj.content" placeholder="商品简介" class="item_input" clearable />
@ -136,7 +142,8 @@
brandId: null, brandId: null,
brandName: '', brandName: '',
categoryId: null, categoryId: null,
categoryName: '' categoryName: '',
periodValidity: ""
}, },
brandList: [], brandList: [],
cateList: [], cateList: [],
@ -204,7 +211,8 @@
remarks: '', remarks: '',
content: '', content: '',
picUrl: '', picUrl: '',
appContent: '' appContent: '',
periodValidity: ""
} }
this.$emit('doback') this.$emit('doback')
}, },

Loading…
Cancel
Save