|
@@ -261,9 +261,9 @@
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<!-- <el-table-column :resizable="true" :sortable="true" prop="recordDate" label="预测方法" /> -->
|
|
<!-- <el-table-column :resizable="true" :sortable="true" prop="recordDate" label="预测方法" /> -->
|
|
|
- <el-table-column :resizable="true" :sortable="true" prop="temperatures" label="预测参数">
|
|
|
|
|
|
|
+ <el-table-column :resizable="true" :sortable="true" prop="temperatures" label="预测参数" width="150">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
- {{ '温度范围:' + scope.row.minTemperatures + '℃ - ' + scope.row.maxTemperatures + '℃' }}
|
|
|
|
|
|
|
+ {{ '温度:' + scope.row.minTemperatures + '℃ - ' + scope.row.maxTemperatures + '℃' }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column :resizable="true" :sortable="true" prop="dimension" label="时间维度">
|
|
<el-table-column :resizable="true" :sortable="true" prop="dimension" label="时间维度">
|
|
@@ -279,17 +279,17 @@
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<!-- <el-table-column :resizable="true" :sortable="true" prop="userCount" label="当前用户数量" /> -->
|
|
<!-- <el-table-column :resizable="true" :sortable="true" prop="userCount" label="当前用户数量" /> -->
|
|
|
- <el-table-column :resizable="true" :sortable="true" prop="result" label="预测结果">
|
|
|
|
|
|
|
+ <el-table-column :resizable="true" :sortable="true" prop="result" label="预测状态">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.result == '0' ? '待预测' : scope.row.result == '1' ? '成功' : '失败' }}
|
|
|
|
|
|
|
+ {{ scope.row.result == '0' ? '待预测' : scope.row.result == '1' ? '预测完成' : '预测失败' }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column :resizable="true" :sortable="true" prop="execTime" label="执行时间">
|
|
|
|
|
|
|
+ <el-table-column :resizable="true" :sortable="true" prop="execTime" label="执行时间" width="150">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.execTime == null ? '---' : scope.row.execTime }}
|
|
{{ scope.row.execTime == null ? '---' : scope.row.execTime }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column :resizable="true" :sortable="true" prop="createTime" label="添加时间" />
|
|
|
|
|
|
|
+ <el-table-column :resizable="true" :sortable="true" prop="createTime" label="添加时间" width="150"/>
|
|
|
<el-table-column width="270" label="操作">
|
|
<el-table-column width="270" label="操作">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-button class="view" type="success" @click="handleForecastingDetail(scope.row)">
|
|
<el-button class="view" type="success" @click="handleForecastingDetail(scope.row)">
|