mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
列表添加桩故障原因
This commit is contained in:
@@ -99,16 +99,17 @@
|
||||
|
||||
<!-- <div ></div> -->
|
||||
</el-card>
|
||||
<div class="advContent" v-if="personalPileInfoList" v-for="personalPileInfo in personalPileInfoList">
|
||||
<div class="advContent" v-if="personalPileInfoList"
|
||||
v-for="personalPileInfo in personalPileInfoList">
|
||||
<el-card class="box-card" shadow="hover">
|
||||
<div slot="header" class="clearfix">
|
||||
<span>个人桩信息</span>
|
||||
</div>
|
||||
<!-- 表格 -->
|
||||
<div style="margin: 10px 0" >
|
||||
<div style="margin: 10px 0">
|
||||
<el-descriptions :column="1" border>
|
||||
<el-descriptions-item label="所属会员 id">
|
||||
{{personalPileInfo.memberId}}
|
||||
{{ personalPileInfo.memberId }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="身份类型">
|
||||
<span v-if="personalPileInfo.type == 1">管理员</span>
|
||||
@@ -156,7 +157,14 @@
|
||||
</el-table-column>
|
||||
<el-table-column width="118px" align="center" prop="status" label="状态">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.connector_status" :value="scope.row.status" />
|
||||
<el-tooltip class="item" effect="dark"
|
||||
:content="'故障原因:' + scope.row.faultReason" placement="top"
|
||||
v-if="scope.row.status === 255">
|
||||
<dict-tag :options="dict.type.connector_status"
|
||||
:value="scope.row.status" />
|
||||
</el-tooltip>
|
||||
<dict-tag :options="dict.type.connector_status" :value="scope.row.status"
|
||||
v-else />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column width="80px" align="center" prop="type" label="类型">
|
||||
|
||||
Reference in New Issue
Block a user