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>
<el-input v-model="formobj.remarks" placeholder="例如:一份30斤" class="item_input" clearable />
</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">
<span class="item_text">商品简介</span>
<el-input v-model="formobj.content" placeholder="商品简介" class="item_input" clearable />
@ -136,7 +142,8 @@
brandId: null,
brandName: '',
categoryId: null,
categoryName: ''
categoryName: '',
periodValidity: ""
},
brandList: [],
cateList: [],
@ -204,7 +211,8 @@
remarks: '',
content: '',
picUrl: '',
appContent: ''
appContent: '',
periodValidity: ""
}
this.$emit('doback')
},

Loading…
Cancel
Save