mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-05 02:20:12 +08:00
31 lines
687 B
Vue
31 lines
687 B
Vue
<template>
|
|
<div class="app-container">
|
|
<el-card>
|
|
<!-- 上侧订单信息 -->
|
|
<up-side/>
|
|
<!-- 中间按钮操作 -->
|
|
<div>
|
|
<el-button>刷新</el-button>
|
|
<el-button>操作</el-button>
|
|
<el-input placeholder="总结算金额:0 总电量:0 总服务费:0"></el-input>
|
|
<button>导出</button>
|
|
<el-input placeholder="搜索"></el-input>
|
|
</div>
|
|
<!-- 表单 -->
|
|
<img-input/>
|
|
</el-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ImgInput from './components/imgInput.vue'
|
|
import upSide from './components/upSide.vue'
|
|
export default {
|
|
components: { upSide, ImgInput },
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |