mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 03:39:55 +08:00
update 站点设备列表添加桩运营类型字段
This commit is contained in:
@@ -140,6 +140,7 @@
|
|||||||
t1.id as connectorId,
|
t1.id as connectorId,
|
||||||
t1.station_id as stationId,
|
t1.station_id as stationId,
|
||||||
t1.sn as pileSn,
|
t1.sn as pileSn,
|
||||||
|
t1.name as name,
|
||||||
t2.pile_connector_code as pileConnectorCode,
|
t2.pile_connector_code as pileConnectorCode,
|
||||||
t2.status,
|
t2.status,
|
||||||
t1.merchant_id as merchantId,
|
t1.merchant_id as merchantId,
|
||||||
|
|||||||
@@ -64,6 +64,14 @@
|
|||||||
</router-link>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column label="运营类型" align="center" prop="businessType">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag
|
||||||
|
:options="dict.type.pile_business_type"
|
||||||
|
:value="scope.row.businessType"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="状态" align="center" prop="status">
|
<el-table-column label="状态" align="center" prop="status">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<dict-tag
|
<dict-tag
|
||||||
@@ -73,6 +81,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="接口数量" align="center" prop="gunNum" />
|
<el-table-column label="接口数量" align="center" prop="gunNum" />
|
||||||
|
<el-table-column label="密钥" align="center" prop="secretKey" />
|
||||||
<el-table-column label="电桩类型" align="center" prop="pileType">
|
<el-table-column label="电桩类型" align="center" prop="pileType">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<dict-tag
|
<dict-tag
|
||||||
@@ -202,7 +211,7 @@ import { listModel } from "@/api/pile/model";
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "PileList",
|
name: "PileList",
|
||||||
dicts: ["pile_status", "software_protocol", "connector_type"],
|
dicts: ["pile_status", "software_protocol", "connector_type", "pile_business_type"],
|
||||||
props: {
|
props: {
|
||||||
stationId: "",
|
stationId: "",
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user