Commit b9ba05d9 by zhuxiaomei

添加详情

parent d49db806
...@@ -381,6 +381,15 @@ ...@@ -381,6 +381,15 @@
</van-radio> </van-radio>
</van-radio-group> </van-radio-group>
</table-col> </table-col>
<table-col>
<van-field
label-class="cus-field-class"
label-width="50%"
label-align="center"
v-model="sample.sampleDate"
label=""
></van-field>
</table-col>
</table-row> </table-row>
<table-row> <table-row>
<table-col> <table-col>
...@@ -812,6 +821,7 @@ ...@@ -812,6 +821,7 @@
properties: '', properties: '',
propertiesRemark: '', propertiesRemark: '',
dateType: '', dateType: '',
sampleDate:'',
standard: '', standard: '',
batchNo: '', batchNo: '',
specification: '', specification: '',
......
...@@ -380,6 +380,15 @@ ...@@ -380,6 +380,15 @@
label-class="cus-field-class" label-class="cus-field-class"
label-width="50%" label-width="50%"
label-align="center" label-align="center"
v-model="sample.sampleDate"
label=""
></van-field>
</table-col>
<table-col>
<van-field
label-class="cus-field-class"
label-width="50%"
label-align="center"
v-model="sample.shelfLife" v-model="sample.shelfLife"
label="保质期" label="保质期"
></van-field> ></van-field>
...@@ -812,6 +821,7 @@ ...@@ -812,6 +821,7 @@
properties: '', properties: '',
propertiesRemark: '', propertiesRemark: '',
dateType: '', dateType: '',
sampleDate:'',
shelfLife: '', shelfLife: '',
standard: '', standard: '',
qualityGrade: '', qualityGrade: '',
......
...@@ -381,6 +381,15 @@ ...@@ -381,6 +381,15 @@
</van-radio> </van-radio>
</van-radio-group> </van-radio-group>
</table-col> </table-col>
<table-col>
<van-field
label-class="cus-field-class"
label-width="50%"
label-align="center"
v-model="sample.sampleDate"
label=""
></van-field>
</table-col>
</table-row> </table-row>
<table-row> <table-row>
<table-col> <table-col>
...@@ -812,6 +821,7 @@ ...@@ -812,6 +821,7 @@
properties: '', properties: '',
propertiesRemark: '', propertiesRemark: '',
dateType: '', dateType: '',
sampleDate:'',
standard: '', standard: '',
batchNo: '', batchNo: '',
specification: '', specification: '',
...@@ -888,12 +898,12 @@ ...@@ -888,12 +898,12 @@
} }
for(let key in this.netTested){ for(let key in this.netTested){
if(result.netTested[key]){ if(result.netTested[key]){
this.netTested = result.netTested[key] this.netTested[key] = result.netTested[key]
} }
} }
for(let key in this.sample){ for(let key in this.sample){
if(result.sample[key]){ if(result.sample[key]){
this.sample = result.sample[key] this.sample[key] = result.sample[key]
} }
} }
this.testedType = result.testedType this.testedType = result.testedType
......
...@@ -376,6 +376,15 @@ ...@@ -376,6 +376,15 @@
</van-radio-group> </van-radio-group>
</table-col> </table-col>
<table-col> <table-col>
<van-field
label-class="cus-field-class"
label-width="50%"
label-align="center"
v-model="sample.sampleDate"
label=""
></van-field>
</table-col>
<table-col>
<van-field readonly <van-field readonly
label-class="cus-field-class" label-class="cus-field-class"
label-width="50%" label-width="50%"
...@@ -812,6 +821,7 @@ ...@@ -812,6 +821,7 @@
properties: '', properties: '',
propertiesRemark: '', propertiesRemark: '',
dateType: '', dateType: '',
sampleDate:'',
shelfLife: '', shelfLife: '',
standard: '', standard: '',
qualityGrade: '', qualityGrade: '',
...@@ -863,12 +873,12 @@ ...@@ -863,12 +873,12 @@
} }
for (let key in this.netTested) { for (let key in this.netTested) {
if (result.netTested[key]) { if (result.netTested[key]) {
this.netTested = result.netTested[key] this.netTested[key] = result.netTested[key]
} }
} }
for (let key in this.sample) { for (let key in this.sample) {
if (result.sample[key]) { if (result.sample[key]) {
this.sample = result.sample[key] this.sample[key] = result.sample[key]
} }
} }
this.testedType = result.testedType this.testedType = result.testedType
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment