This commit is contained in:
邱贞招 2025-03-24 08:36:32 +08:00
parent 48603515cf
commit ef660f1149
3 changed files with 5 additions and 3 deletions

View File

@ -179,7 +179,6 @@
<script>
import { listChannelWithdraw, getChannelWithdraw, delChannelWithdraw, addChannelWithdraw, updateChannelWithdraw } from "@/api/system/channelWithdraw";
import { $showColumns, $withdrawServiceType } from '@/utils/mixins'
import { updateBill } from '@/api/system/withdraw'
//
const defaultSort = {

View File

@ -8,7 +8,7 @@
<div slot="header" class="card-header">
<span class="header-title">设备信息</span>
<div class="header-actions">
<el-popover placement="right" width="180" trigger="hover">
<el-popover placement="left" width="180" trigger="hover">
<div class="qr-code-box">
<qr-code :text="deviceInfo.qrText" :width="150" :height="150" />
</div>

View File

@ -85,7 +85,7 @@
<el-descriptions-item label="停车点外调度费">{{ detail.dispatchFee + '元' || '--' }}</el-descriptions-item>
<el-descriptions-item label="运营区外调度费">{{ detail.manageFee + '元' || '--' }}</el-descriptions-item>
<el-descriptions-item label="总费用">{{ detail.totalFee + '元' || '--' }}</el-descriptions-item>
<el-descriptions-item label="计费模版">{{ detail.rule.name || '--' }}</el-descriptions-item>
<el-descriptions-item label="计费模版">{{ (detail.rule && detail.rule.name) || '--' }}</el-descriptions-item>
<el-descriptions-item label="描述">{{ detail.description || '--' }}</el-descriptions-item>
</el-descriptions>
@ -241,6 +241,9 @@ export default {
tripRouteStr: '',
tripLogs: [],
commandLogs: [],
rule: {
name: ''
},
// ...
},
loading: false,