This commit is contained in:
parent
33a2443d11
commit
3aa19ccf38
|
|
@ -22,7 +22,7 @@
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 厂家 -->
|
<!-- 厂家 -->
|
||||||
<el-form-item label="生产厂家">
|
<el-form-item label="生产厂家" prop="supplierId">
|
||||||
<el-select v-model="dialogForm.supplierId" placeholder="请选择厂家" clearable style="width: 240px">
|
<el-select v-model="dialogForm.supplierId" placeholder="请选择厂家" clearable style="width: 240px">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in manufacturerSelect"
|
v-for="item in manufacturerSelect"
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 出厂日期 -->
|
<!-- 出厂日期 -->
|
||||||
<el-form-item label="出厂日期">
|
<el-form-item label="出厂日期" prop="productionDate">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="dialogForm.productionDate"
|
v-model="dialogForm.productionDate"
|
||||||
type="date"
|
type="date"
|
||||||
|
|
@ -166,6 +166,9 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
openDialog(applyId) {
|
openDialog(applyId) {
|
||||||
this.dialogForm.applyId = applyId
|
this.dialogForm.applyId = applyId
|
||||||
|
this.dialogForm.supplierId = null
|
||||||
|
this.dialogForm.productionDate = null
|
||||||
|
this.dialogForm.applyNum = 1
|
||||||
this.typeIdList = []
|
this.typeIdList = []
|
||||||
this.dialogList = []
|
this.dialogList = []
|
||||||
this.dialogVisible = true
|
this.dialogVisible = true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue