|
@@ -25,7 +25,7 @@
|
|
|
</el-select>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="query-item">
|
|
|
+ <!-- <div class="query-item">
|
|
|
<div class="lable">项目:</div>
|
|
|
<div class="search-input">
|
|
|
<el-select
|
|
@@ -42,7 +42,7 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<div class="query-item">
|
|
|
<div class="lable">模型:</div>
|
|
|
<div class="search-input">
|
|
@@ -152,21 +152,21 @@ export default {
|
|
|
column: [
|
|
|
{
|
|
|
name: "风机",
|
|
|
- field: "windturbineid",
|
|
|
+ field: "wtid",
|
|
|
is_num: false,
|
|
|
is_light: false,
|
|
|
sortable: true,
|
|
|
},
|
|
|
{
|
|
|
name: "型号",
|
|
|
- field: "inputsmall",
|
|
|
+ field: "modelid",
|
|
|
is_num: false,
|
|
|
is_light: false,
|
|
|
sortable: true,
|
|
|
},
|
|
|
{
|
|
|
name: "评分",
|
|
|
- field: "inputsmallratio",
|
|
|
+ field: "judegvulue",
|
|
|
is_num: false,
|
|
|
is_light: false,
|
|
|
sortable: true,
|
|
@@ -179,7 +179,9 @@ export default {
|
|
|
template() {
|
|
|
return "<el-button type='text' style='cursor: pointer;'>详情</el-button>";
|
|
|
},
|
|
|
- click(e, row) {},
|
|
|
+ click(e, row) {
|
|
|
+ console.log(123123, row);
|
|
|
+ },
|
|
|
},
|
|
|
],
|
|
|
data: [],
|
|
@@ -235,13 +237,12 @@ export default {
|
|
|
method: "POST",
|
|
|
subUrl: "stopanalysis/stopAnalysisList",
|
|
|
data: {
|
|
|
- wpId: that.projectId,
|
|
|
+ wpId: that.wpId,
|
|
|
isAsc: that.isAsc,
|
|
|
modelId: that.modelId,
|
|
|
typeId: that.typeId,
|
|
|
},
|
|
|
success(res) {
|
|
|
- console.log(123123, res);
|
|
|
that.tableData.data = res.data;
|
|
|
},
|
|
|
});
|