mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-05 14:38:06 +08:00
列表添加桩故障原因
This commit is contained in:
@@ -99,16 +99,17 @@
|
|||||||
|
|
||||||
<!-- <div ></div> -->
|
<!-- <div ></div> -->
|
||||||
</el-card>
|
</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">
|
<el-card class="box-card" shadow="hover">
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>个人桩信息</span>
|
<span>个人桩信息</span>
|
||||||
</div>
|
</div>
|
||||||
<!-- 表格 -->
|
<!-- 表格 -->
|
||||||
<div style="margin: 10px 0" >
|
<div style="margin: 10px 0">
|
||||||
<el-descriptions :column="1" border>
|
<el-descriptions :column="1" border>
|
||||||
<el-descriptions-item label="所属会员 id">
|
<el-descriptions-item label="所属会员 id">
|
||||||
{{personalPileInfo.memberId}}
|
{{ personalPileInfo.memberId }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item label="身份类型">
|
<el-descriptions-item label="身份类型">
|
||||||
<span v-if="personalPileInfo.type == 1">管理员</span>
|
<span v-if="personalPileInfo.type == 1">管理员</span>
|
||||||
@@ -156,7 +157,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column width="118px" align="center" prop="status" label="状态">
|
<el-table-column width="118px" align="center" prop="status" label="状态">
|
||||||
<template slot-scope="scope">
|
<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>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column width="80px" align="center" prop="type" label="类型">
|
<el-table-column width="80px" align="center" prop="type" label="类型">
|
||||||
|
|||||||
Reference in New Issue
Block a user