|
@@ -27,6 +27,7 @@
|
|
<el-tooltip :disabled="!!multipleSelection.length" content="请选择充电桩" placement="top" >
|
|
<el-tooltip :disabled="!!multipleSelection.length" content="请选择充电桩" placement="top" >
|
|
<el-button :disabled="!multipleSelection.length" type="primary" size="mini" @click="associatedChargeHandle">关联收费标准</el-button>
|
|
<el-button :disabled="!multipleSelection.length" type="primary" size="mini" @click="associatedChargeHandle">关联收费标准</el-button>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
|
|
+ <el-button type="primary" size="mini" @click="batchTransferHandle">批量转移</el-button>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
<el-tooltip content="表格字段设置" effect="dark">
|
|
<el-tooltip content="表格字段设置" effect="dark">
|
|
@@ -69,13 +70,16 @@
|
|
<div v-if="isWithinThreeMonths(scope.row.platform_expire_time)"> ( 即将到期 )</div>
|
|
<div v-if="isWithinThreeMonths(scope.row.platform_expire_time)"> ( 即将到期 )</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div v-else-if="item.prop === 'qr_common_img'">
|
|
|
|
|
|
+ <div v-else-if="item.prop === 'qr_common_img'" style="display: flex;align-items: center;">
|
|
<el-image
|
|
<el-image
|
|
v-if="scope.row.qr_common_img"
|
|
v-if="scope.row.qr_common_img"
|
|
:src="scope.row.qr_common_img"
|
|
:src="scope.row.qr_common_img"
|
|
:preview-src-list="tableData.map(v => v.qr_common_img)"
|
|
:preview-src-list="tableData.map(v => v.qr_common_img)"
|
|
style="width: 40px; height: 40px"
|
|
style="width: 40px; height: 40px"
|
|
/>
|
|
/>
|
|
|
|
+ <el-tooltip content="刷新二维码" placement="top">
|
|
|
|
+ <i class="el-icon-refresh" style="cursor: pointer;margin-left: 10px;" @click="refreshQrCode(scope)" />
|
|
|
|
+ </el-tooltip>
|
|
</div>
|
|
</div>
|
|
<div v-else-if="item.prop === 'chrpannel_name'">
|
|
<div v-else-if="item.prop === 'chrpannel_name'">
|
|
{{ scope.row.chrpannel_name }}
|
|
{{ scope.row.chrpannel_name }}
|
|
@@ -129,13 +133,15 @@
|
|
@success="getTableListFieldDefs"
|
|
@success="getTableListFieldDefs"
|
|
/>
|
|
/>
|
|
<CabinetSimCredit ref="CabinetSimCredit" />
|
|
<CabinetSimCredit ref="CabinetSimCredit" />
|
|
|
|
+ <BatchTransfer ref="batchTransfer" @success="queryList" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import { apiQueryChargerPilesList, apiQueryChargingPiles } from '@/api/deviceCfg'
|
|
import { apiQueryChargerPilesList, apiQueryChargingPiles } from '@/api/deviceCfg'
|
|
import { apiBindDeviceForBilling, apiQueryBillingStandard } from '@/api/billingCfg'
|
|
import { apiBindDeviceForBilling, apiQueryBillingStandard } from '@/api/billingCfg'
|
|
-import { apiQueryChargerGroupList } from '@/api/deviceCfg'
|
|
|
|
|
|
+import { apiQueryChargerGroupList, apiRefreshQrCode } from '@/api/deviceCfg'
|
|
|
|
+import BatchTransfer from './components/BatchTransfer.vue'
|
|
import EditChargingPiles from './components/EditChargingPiles.vue'
|
|
import EditChargingPiles from './components/EditChargingPiles.vue'
|
|
import CabinetSimCredit from '@/components/CabinetSimCredit/index.vue'
|
|
import CabinetSimCredit from '@/components/CabinetSimCredit/index.vue'
|
|
import LazyTree from '@/components/LazyTree'
|
|
import LazyTree from '@/components/LazyTree'
|
|
@@ -147,7 +153,8 @@ export default {
|
|
LazyTree,
|
|
LazyTree,
|
|
TableFieldCfg,
|
|
TableFieldCfg,
|
|
EditChargingPiles,
|
|
EditChargingPiles,
|
|
- CabinetSimCredit
|
|
|
|
|
|
+ CabinetSimCredit,
|
|
|
|
+ BatchTransfer
|
|
},
|
|
},
|
|
mixins: [tableFields],
|
|
mixins: [tableFields],
|
|
data() {
|
|
data() {
|
|
@@ -186,6 +193,13 @@ export default {
|
|
this.queryChargerStation()
|
|
this.queryChargerStation()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ refreshQrCode({ row, $index }) {
|
|
|
|
+ apiRefreshQrCode({ dev_id: row.dev_id }).then(res => {
|
|
|
|
+ if (res.succeed) {
|
|
|
|
+ console.log(111, res)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
linkToRateCfg(row) {
|
|
linkToRateCfg(row) {
|
|
this.$router.push(`/edit-rateCfg?sn=${row.billing_standard_sn}`)
|
|
this.$router.push(`/edit-rateCfg?sn=${row.billing_standard_sn}`)
|
|
},
|
|
},
|
|
@@ -216,6 +230,9 @@ export default {
|
|
this.associatedChargeDialog = true
|
|
this.associatedChargeDialog = true
|
|
this.queryBillingStandardList()
|
|
this.queryBillingStandardList()
|
|
},
|
|
},
|
|
|
|
+ batchTransferHandle() {
|
|
|
|
+ this.$refs.batchTransfer.open()
|
|
|
|
+ },
|
|
queryBillingStandardList() {
|
|
queryBillingStandardList() {
|
|
apiQueryBillingStandard({ limit: 500 }).then(res => {
|
|
apiQueryBillingStandard({ limit: 500 }).then(res => {
|
|
this.billingStandardList = res.body.list
|
|
this.billingStandardList = res.body.list
|