修改订单信息

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 proBaseURL = 'http://192.168.0.169:9002/'
// 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 TIMEOUT = 5000

View File

@ -2,7 +2,7 @@
<div id="center">
<div class="center-left center-bg">
<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>
<orderEcharts class="order-box" :orderData="orderData" />
</div>
@ -50,6 +50,7 @@ export default {
orderData: {},
yearData: {},
intervalId: null, // IDundefined
orderTitleSrc: require('../../assets/image/img/order/order-26.png'),
};
},
directives: {
@ -71,8 +72,10 @@ export default {
},
},
mounted() {
this.yearorderData();
this.setData(); //
this.startInterval(); //
},
//
beforeDestroy() {
@ -82,6 +85,12 @@ export default {
}
},
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() {
const _this = this;
const time = 5 * 60 * 1000;
@ -143,7 +152,7 @@ export default {
width: 895px;
.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%;
width: 895px;
height: 56px;