mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-21 07:39:55 +08:00
update
This commit is contained in:
@@ -67,14 +67,15 @@
|
|||||||
:min="1"
|
:min="1"
|
||||||
oninput="if(value<1)value=''"
|
oninput="if(value<1)value=''"
|
||||||
>
|
>
|
||||||
<template slot="suffix"> 号桩 </template>
|
<template slot="suffix"> 号桩</template>
|
||||||
<template slot="append">
|
<template slot="append">
|
||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="text"
|
||||||
size="medium"
|
size="medium"
|
||||||
circle
|
circle
|
||||||
@click="updateName"
|
@click="updateName"
|
||||||
>保存</el-button
|
>保存
|
||||||
|
</el-button
|
||||||
>
|
>
|
||||||
</template>
|
</template>
|
||||||
</el-input>
|
</el-input>
|
||||||
@@ -218,7 +219,7 @@
|
|||||||
prop="instantPower"
|
prop="instantPower"
|
||||||
label="即时功率(kW)"
|
label="即时功率(kW)"
|
||||||
/>
|
/>
|
||||||
<el-table-column prop="soc" label="SOC(°C)" align="center" />
|
<el-table-column prop="soc" label="SOC(°C)" align="center"/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="equipmentOrderNum"
|
prop="equipmentOrderNum"
|
||||||
label="设备订单号"
|
label="设备订单号"
|
||||||
@@ -285,6 +286,12 @@
|
|||||||
align="center"
|
align="center"
|
||||||
width="200"
|
width="200"
|
||||||
/>
|
/>
|
||||||
|
<el-table-column
|
||||||
|
prop="frameTypeStr"
|
||||||
|
label="帧类型名称"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="description"
|
prop="description"
|
||||||
label="描述"
|
label="描述"
|
||||||
@@ -326,14 +333,14 @@ import {
|
|||||||
updateBasic,
|
updateBasic,
|
||||||
updatePileName,
|
updatePileName,
|
||||||
} from "@/api/pile/basic";
|
} from "@/api/pile/basic";
|
||||||
import { queryConnectorListByParams } from "@/api/pile/connector";
|
import {queryConnectorListByParams} from "@/api/pile/connector";
|
||||||
// 二维码组件
|
// 二维码组件
|
||||||
import VueQr from "vue-qr";
|
import VueQr from "vue-qr";
|
||||||
import { remoteControlGroundLock } from "@/api/pile/pileRemote";
|
import {remoteControlGroundLock} from "@/api/pile/pileRemote";
|
||||||
import Template from "@/views/billing/template";
|
import Template from "@/views/billing/template";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Template, VueQr, remoteUpgrade },
|
components: {Template, VueQr, remoteUpgrade},
|
||||||
name: "pile-detail",
|
name: "pile-detail",
|
||||||
dicts: ["connector_status", "connector_type", "sim_supplier", "sim_operator"],
|
dicts: ["connector_status", "connector_type", "sim_supplier", "sim_operator"],
|
||||||
data() {
|
data() {
|
||||||
@@ -348,7 +355,7 @@ export default {
|
|||||||
connectorList: [],
|
connectorList: [],
|
||||||
stationId: 1,
|
stationId: 1,
|
||||||
// 充电桩详情 竖向 表格渲染的数据
|
// 充电桩详情 竖向 表格渲染的数据
|
||||||
pileDetail: { url: "" },
|
pileDetail: {url: ""},
|
||||||
feedListLoading: false,
|
feedListLoading: false,
|
||||||
qrWidth: 60,
|
qrWidth: 60,
|
||||||
flag: true,
|
flag: true,
|
||||||
@@ -389,7 +396,8 @@ export default {
|
|||||||
this.queryPileConnectorList();
|
this.queryPileConnectorList();
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
setTimeout(() => {}, 300);
|
setTimeout(() => {
|
||||||
|
}, 300);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 遥控地锁
|
// 遥控地锁
|
||||||
@@ -532,6 +540,7 @@ export default {
|
|||||||
height: 80px;
|
height: 80px;
|
||||||
width: 80px;
|
width: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .el-input-group--append .el-input__inner {
|
::v-deep .el-input-group--append .el-input__inner {
|
||||||
// background-color: #fff;
|
// background-color: #fff;
|
||||||
// border-color: #fff;
|
// border-color: #fff;
|
||||||
@@ -539,16 +548,19 @@ export default {
|
|||||||
border-top-right-radius: 5px;
|
border-top-right-radius: 5px;
|
||||||
border-bottom-right-radius: 5px;
|
border-bottom-right-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .el-input-group__append,
|
::v-deep .el-input-group__append,
|
||||||
.el-input-group__prepend {
|
.el-input-group__prepend {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-color: #fff;
|
border-color: #fff;
|
||||||
color: #606266;
|
color: #606266;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep input::-webkit-outer-spin-button,
|
::v-deep input::-webkit-outer-spin-button,
|
||||||
::v-deep input::-webkit-inner-spin-button {
|
::v-deep input::-webkit-inner-spin-button {
|
||||||
-webkit-appearance: none !important;
|
-webkit-appearance: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep input[type="number"] {
|
::v-deep input[type="number"] {
|
||||||
-moz-appearance: textfield !important;
|
-moz-appearance: textfield !important;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user