|
@@ -125,7 +125,7 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
- <pagination v-show="dialogTotal > 0" :total="dialogTotal" :page.sync="form.pageNum" :limit.sync="form.pageSize"
|
|
|
|
|
|
+ <pagination v-show="dialogTotal > 0" :total="dialogTotal" :page.sync="dialogForm.pageNum" :limit.sync="dialogForm.pageSize"
|
|
@pagination="getDialogList" />
|
|
@pagination="getDialogList" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
@@ -335,7 +335,7 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
groupFormatter(row) {
|
|
groupFormatter(row) {
|
|
- return this.selectDictLabel(this.sceneOptions, row.groupId)
|
|
|
|
|
|
+ return row.groupId === null ? '-' : this.selectDictLabel(this.sceneOptions, row.groupId)
|
|
},
|
|
},
|
|
|
|
|
|
chargingFormatter(row) {
|
|
chargingFormatter(row) {
|
|
@@ -347,7 +347,7 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
platformIdFormatter(row) {
|
|
platformIdFormatter(row) {
|
|
- return this.selectDictLabel(this.platformIdOptions, row.platformId)
|
|
|
|
|
|
+ return row.platformId === null ? '-' : this.selectDictLabel(this.platformIdOptions, row.platformId)
|
|
},
|
|
},
|
|
|
|
|
|
flowFormatter(row) {
|
|
flowFormatter(row) {
|