|
@@ -117,11 +117,11 @@
|
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
|
<el-form-item
|
|
<el-form-item
|
|
|
label="留样数量:"
|
|
label="留样数量:"
|
|
|
- prop="measureQuantity"
|
|
|
|
|
|
|
+ prop="keepSampleQuantity"
|
|
|
align="center"
|
|
align="center"
|
|
|
>
|
|
>
|
|
|
<el-input
|
|
<el-input
|
|
|
- v-model="disposeForm.measureQuantity"
|
|
|
|
|
|
|
+ v-model="disposeForm.keepSampleQuantity"
|
|
|
placeholder="请输入"
|
|
placeholder="请输入"
|
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
|
>
|
|
>
|
|
@@ -284,7 +284,7 @@ export default {
|
|
|
{ required: true, message: '请选择处置方式', trigger: 'change' }
|
|
{ required: true, message: '请选择处置方式', trigger: 'change' }
|
|
|
],
|
|
],
|
|
|
depotId: [{ required: true, message: '请选择仓库', trigger: 'change' }],
|
|
depotId: [{ required: true, message: '请选择仓库', trigger: 'change' }],
|
|
|
- measureQuantity: [
|
|
|
|
|
|
|
+ keepSampleQuantity: [
|
|
|
{
|
|
{
|
|
|
validator: (rule, value, callback) => {
|
|
validator: (rule, value, callback) => {
|
|
|
if (
|
|
if (
|
|
@@ -315,7 +315,7 @@ export default {
|
|
|
depotId: '',
|
|
depotId: '',
|
|
|
depotName: '',
|
|
depotName: '',
|
|
|
taskId: '',
|
|
taskId: '',
|
|
|
- measureQuantity:'',
|
|
|
|
|
|
|
+ keepSampleQuantity:'',
|
|
|
},
|
|
},
|
|
|
loading: false,
|
|
loading: false,
|
|
|
selection: [],
|
|
selection: [],
|
|
@@ -608,7 +608,7 @@ export default {
|
|
|
disposeTypeChange(){
|
|
disposeTypeChange(){
|
|
|
console.log(this.disposeForm.disposeType)
|
|
console.log(this.disposeForm.disposeType)
|
|
|
if (this.disposeForm.disposeType == 6) {
|
|
if (this.disposeForm.disposeType == 6) {
|
|
|
- this.disposeForm.measureQuantity = this.current?.measureQuantity || '';
|
|
|
|
|
|
|
+ this.disposeForm.keepSampleQuantity = this.current?.measureQuantity || '';
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
// /* 表格数据源 */
|
|
// /* 表格数据源 */
|