Compare commits
2 Commits
46014a376d
...
745059a8eb
Author | SHA1 | Date | |
---|---|---|---|
745059a8eb | |||
29a6626c14 |
@ -56,7 +56,7 @@ export function exportOrderInfoExcel(params) {
|
|||||||
|
|
||||||
export function toPay(params) {
|
export function toPay(params) {
|
||||||
return request({
|
return request({
|
||||||
url: '/admin-api/pay/toPay',
|
url: '/admin-api/pay/toPayCode',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params
|
params
|
||||||
})
|
})
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="container_">
|
<div class="container_">
|
||||||
<el-row>
|
<div class="top-list">
|
||||||
<el-col v-for="item in serviceList" :span="4">
|
<div class="list-box" v-for="item in serviceList" :span="4">
|
||||||
<div @click="goRoute(item.id)">
|
<div @click="goRoute(item.id)">
|
||||||
<image-preview :width="300" :height="300" :src="item.coverImg"></image-preview>
|
<img :src=" imgUrl + item.coverImg" style="width: 300px; height: 300px;">
|
||||||
{{ item.name }}
|
<!-- <image-preview :width="300" :height="300" :src="item.coverImg"></image-preview>-->
|
||||||
|
<div style="font-weight: bold;text-align: center;font-size: 25px">{{ item.name }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</el-col>
|
</div>
|
||||||
</el-row>
|
</div>
|
||||||
|
|
||||||
<div class="container-box">
|
<div class="container-box">
|
||||||
<div class="flex-box">
|
<div class="flex-box">
|
||||||
@ -117,6 +118,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
imgUrl:'',
|
||||||
lineChartData: lineChartData.newVisitis,
|
lineChartData: lineChartData.newVisitis,
|
||||||
serviceList: [],
|
serviceList: [],
|
||||||
warnList: [],
|
warnList: [],
|
||||||
@ -137,6 +139,8 @@ export default {
|
|||||||
this.getServiceList()
|
this.getServiceList()
|
||||||
this.getNotifyMessage()
|
this.getNotifyMessage()
|
||||||
this.getWarnList()
|
this.getWarnList()
|
||||||
|
this.imgUrl = process.env.VUE_APP_IMAGE_URL
|
||||||
|
console.log( this.imgUrl + '1111111' )
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleSetLineChartData(type) {
|
handleSetLineChartData(type) {
|
||||||
@ -179,6 +183,20 @@ export default {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
}
|
}
|
||||||
|
.top-list{
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
.list-box{
|
||||||
|
background: #fff;
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
|
border-radius: 4px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
.container-box{
|
.container-box{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
Loading…
Reference in New Issue
Block a user