|
|
@@ -454,38 +454,16 @@
|
|
|
border @row-click="dianjianhandle"
|
|
|
style="width:100%; height:400px;"
|
|
|
@row-dblclick="handleSelectClick"
|
|
|
- :row-class-name="rowClassName"
|
|
|
- >
|
|
|
- <el-table-column
|
|
|
- prop="检验项目"
|
|
|
- label="检验项目"
|
|
|
- width="300"
|
|
|
- />
|
|
|
- <el-table-column
|
|
|
- prop="点检方法"
|
|
|
- label="点检方法"
|
|
|
- width="180"
|
|
|
- />
|
|
|
- <el-table-column
|
|
|
- v-slot="scope"
|
|
|
- label="正常"
|
|
|
- width="80"
|
|
|
- >
|
|
|
-
|
|
|
- <el-checkbox v-model="scope.row.zc" @change="zcClick(scope.row)"></el-checkbox>
|
|
|
-
|
|
|
+ :row-class-name="rowClassName">
|
|
|
+ <el-table-column prop="检验项目" label="检验项目" width="300"/>
|
|
|
+ <el-table-column prop="点检方法" label="点检方法" width="180"/>
|
|
|
+ <el-table-column v-slot="scope" label="正常" width="80" >
|
|
|
+ <el-checkbox v-model="scope.row.zc" @change="zcClick(scope.row)"></el-checkbox>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- v-slot="scope"
|
|
|
- label="异常"
|
|
|
- width="80"
|
|
|
- >
|
|
|
+ <el-table-column v-slot="scope" label="异常" width="80">
|
|
|
<el-checkbox v-model="scope.row.yc" @change="ycClick(scope.row)"></el-checkbox>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="备注说明"
|
|
|
- width="180"
|
|
|
- >
|
|
|
+ <el-table-column label="备注说明" width="180">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
v-slot="scope"
|
|
|
@@ -6296,9 +6274,8 @@ const GetLl = (falg) => {
|
|
|
const blModellist = ref(false)
|
|
|
const employeeDatalist = ref('')
|
|
|
const Special = ref('')
|
|
|
-const GetYg = async (value,key) => {
|
|
|
- Special.value = key
|
|
|
-
|
|
|
+const GetYg = async (event,key) => {
|
|
|
+ Special.value = key
|
|
|
let bzyg=''
|
|
|
bzyg=`组员${key}`
|
|
|
let bzxm=''
|
|
|
@@ -6314,8 +6291,8 @@ const GetYg = async (value,key) => {
|
|
|
employeeDatalist.value = response.data // 假设响应数据是数组
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
+
|
|
|
const clickeds = ref(false);
|
|
|
const currentIndexs = ref(0);
|
|
|
const tableBZRRs = ref();
|