|
@@ -270,6 +270,30 @@
|
|
|
v-model="filterForm.data.sqno"
|
|
|
:show-overflow-tooltip="true"
|
|
|
></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ sortable
|
|
|
+ prop="describe"
|
|
|
+ label="轮次描述"
|
|
|
+ align="center"
|
|
|
+ min-width="160px"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ :prop="scope.row.seq + '.describe'"
|
|
|
+ v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '3'"
|
|
|
+ :rules="tableFormRules.describe"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ style="width: 100%;"
|
|
|
+ v-model="rightTableObj[scope.row.seq].describe"
|
|
|
+ @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
+ refcous="true"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <span v-else>{{scope.row.describe}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
sortable
|
|
|
prop="may"
|
|
@@ -549,30 +573,6 @@
|
|
|
:show-overflow-tooltip="true"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
- sortable
|
|
|
- prop="describe"
|
|
|
- label="轮次描述"
|
|
|
- align="center"
|
|
|
- min-width="160px"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
- >
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-form-item
|
|
|
- :prop="scope.row.seq + '.describe'"
|
|
|
- v-if=" !isCheck && scope.row.isSelection && scope.row.state !== '3'"
|
|
|
- :rules="tableFormRules.describe"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- style="width: 100%;"
|
|
|
- v-model="rightTableObj[scope.row.seq].describe"
|
|
|
- @keydown.native="keyDown" :id="scope.$index + scope.column.id"
|
|
|
- refcous="true"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- <span v-else>{{scope.row.describe}}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column
|
|
|
sortable
|
|
|
prop="memo"
|
|
|
label="备注"
|