|
@@ -26,6 +26,7 @@
|
|
<el-form-item label="钢种">
|
|
<el-form-item label="钢种">
|
|
<el-select
|
|
<el-select
|
|
filterable clearable
|
|
filterable clearable
|
|
|
|
+ collapse-tags
|
|
v-model="filterForm.data.grades"
|
|
v-model="filterForm.data.grades"
|
|
multiple
|
|
multiple
|
|
placeholder=""
|
|
placeholder=""
|
|
@@ -45,6 +46,7 @@
|
|
<el-form-item label="规格">
|
|
<el-form-item label="规格">
|
|
<el-select
|
|
<el-select
|
|
filterable clearable
|
|
filterable clearable
|
|
|
|
+ collapse-tags
|
|
v-model="filterForm.data.specifications"
|
|
v-model="filterForm.data.specifications"
|
|
multiple
|
|
multiple
|
|
placeholder=""
|
|
placeholder=""
|
|
@@ -268,7 +270,7 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-form-item
|
|
<el-form-item
|
|
:prop="scope.row.seq + '.grades'"
|
|
:prop="scope.row.seq + '.grades'"
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
|
|
+ v-if="!isCheck && scope.row.isSelection"
|
|
:rules="tableFormRules.grades"
|
|
:rules="tableFormRules.grades"
|
|
>
|
|
>
|
|
<el-select
|
|
<el-select
|
|
@@ -301,7 +303,7 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-form-item
|
|
<el-form-item
|
|
:prop="scope.row.seq + '.specifications'"
|
|
:prop="scope.row.seq + '.specifications'"
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
|
|
+ v-if=" !isCheck && scope.row.isSelection"
|
|
:rules="tableFormRules.specifications"
|
|
:rules="tableFormRules.specifications"
|
|
>
|
|
>
|
|
<el-select
|
|
<el-select
|
|
@@ -418,7 +420,7 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-form-item
|
|
<el-form-item
|
|
:prop="scope.row.seq + '.transportType'"
|
|
:prop="scope.row.seq + '.transportType'"
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
|
|
+ v-if=" !isCheck && scope.row.isSelection"
|
|
:rules="tableFormRules.transportType"
|
|
:rules="tableFormRules.transportType"
|
|
>
|
|
>
|
|
<el-select
|
|
<el-select
|
|
@@ -451,7 +453,7 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-form-item
|
|
<el-form-item
|
|
:prop="scope.row.seq + '.purpose'"
|
|
:prop="scope.row.seq + '.purpose'"
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
|
|
+ v-if=" !isCheck && scope.row.isSelection"
|
|
:rules="tableFormRules.purpose"
|
|
:rules="tableFormRules.purpose"
|
|
>
|
|
>
|
|
<el-select
|
|
<el-select
|
|
@@ -543,7 +545,7 @@
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-form-item
|
|
<el-form-item
|
|
- v-if="!isCheck && scope.row.isSelection && scope.row.state !== '2'"
|
|
|
|
|
|
+ v-if="!isCheck && scope.row.isSelection"
|
|
:prop="scope.row.seq + '.memo'"
|
|
:prop="scope.row.seq + '.memo'"
|
|
:rules="tableFormRules.memo"
|
|
:rules="tableFormRules.memo"
|
|
>
|
|
>
|
|
@@ -2014,7 +2016,11 @@ export default {
|
|
SubmitData.push({
|
|
SubmitData.push({
|
|
id: that.tableFormDataObj[key].id,
|
|
id: that.tableFormDataObj[key].id,
|
|
workprocType: that.filterForm.data.workproc_type,
|
|
workprocType: that.filterForm.data.workproc_type,
|
|
- state: '1'
|
|
|
|
|
|
+ state: '1',
|
|
|
|
+ lengths: that.tableFormDataObj[key].lengths,
|
|
|
|
+ grades: that.tableFormDataObj[key].grades,
|
|
|
|
+ specifications: that.tableFormDataObj[key].specifications,
|
|
|
|
+ planWeight: that.tableFormDataObj[key].planweight
|
|
});
|
|
});
|
|
}
|
|
}
|
|
that.loading = true;
|
|
that.loading = true;
|