修改订单信息

This commit is contained in:
qiwenli 2026-03-31 20:28:33 +08:00
parent bd8a73a4e1
commit 7705aa3cc3
13 changed files with 13 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -9,7 +9,7 @@ const devBaseURL = 'http://218.75.46.166:8889'
// const devBaseURL = 'http://192.168.0.169:9002/' // const devBaseURL = 'http://192.168.0.169:9002/'
// const proBaseURL = 'http://192.168.0.169:9002/' // const proBaseURL = 'http://192.168.0.169:9002/'
// const devBaseURL = 'http://218.75.46.166:8889/' // const devBaseURL = 'http://218.75.46.166:8889/'
// const proBaseURL = 'http://218.75.46.166:8889/' const proBaseURL = 'http://218.75.46.166:8889/'
export const BASE_URL = process.env.NODE_ENV === 'development' ? devBaseURL : proBaseURL export const BASE_URL = process.env.NODE_ENV === 'development' ? devBaseURL : proBaseURL
export const TIMEOUT = 5000 export const TIMEOUT = 5000

View File

@ -2,7 +2,7 @@
<div id="center"> <div id="center">
<div class="center-left center-bg"> <div class="center-left center-bg">
<div class="center-top d-flex"> <div class="center-top d-flex">
<img src="../../assets/image/img/order-title.png" alt="" class="order-title" /> <img :src="orderTitleSrc" alt="" class="order-title" />
</div> </div>
<orderEcharts class="order-box" :orderData="orderData" /> <orderEcharts class="order-box" :orderData="orderData" />
</div> </div>
@ -50,6 +50,7 @@ export default {
orderData: {}, orderData: {},
yearData: {}, yearData: {},
intervalId: null, // IDundefined intervalId: null, // IDundefined
orderTitleSrc: require('../../assets/image/img/order/order-26.png'),
}; };
}, },
directives: { directives: {
@ -71,8 +72,10 @@ export default {
}, },
}, },
mounted() { mounted() {
this.yearorderData();
this.setData(); // this.setData(); //
this.startInterval(); // this.startInterval(); //
}, },
// //
beforeDestroy() { beforeDestroy() {
@ -82,6 +85,12 @@ export default {
} }
}, },
methods: { methods: {
yearorderData() {
const currentYear = new Date().getFullYear();
let yearSuffix = '35';
yearSuffix = String(currentYear).slice(-2);
this.orderTitleSrc = require(`../../assets/image/img/order/order-${yearSuffix}.png`);
},
startInterval() { startInterval() {
const _this = this; const _this = this;
const time = 5 * 60 * 1000; const time = 5 * 60 * 1000;
@ -143,7 +152,7 @@ export default {
width: 895px; width: 895px;
.center-top { .center-top {
background: url('../../assets/image/img/order-bg.png') no-repeat; background: url('../../assets/image/img/order/order-bg.png') no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
width: 895px; width: 895px;
height: 56px; height: 56px;