diff --git a/App.vue b/App.vue
index b67961c..ae332f2 100644
--- a/App.vue
+++ b/App.vue
@@ -10,11 +10,12 @@
diff --git a/pages/index/cart.vue b/pages/index/cart.vue
index 040b0bb..a2e6394 100644
--- a/pages/index/cart.vue
+++ b/pages/index/cart.vue
@@ -1,18 +1,19 @@
-
-
-
-
+
+
+
+
@@ -21,11 +22,15 @@
-
-
\ No newline at end of file
+
diff --git a/pages/mixins/globalMixin.js b/pages/mixins/globalMixin.js
new file mode 100644
index 0000000..e640075
--- /dev/null
+++ b/pages/mixins/globalMixin.js
@@ -0,0 +1,33 @@
+export const globalMixin = {
+ data() {
+ return {
+ bgColor:'transparent',
+ fontColor:'#fff',
+ leftIconColor: '#fff'
+ };
+ },
+ computed: {
+ customStyle() {
+ return {
+ height: '88rpx',
+ color: '#FF4546',
+ }
+ }
+ },
+ created() {
+ },
+ onPageScroll(e) {
+ if(e.scrollTop > 30) {
+ this.bgColor ='#fff'
+ this.fontColor ="#000",
+ this.leftIconColor ="#000"
+ }else{
+ this.bgColor ='transparent'
+ this.fontColor ="#fff",
+ this.leftIconColor ="#fff"
+ }
+ },
+ methods: {
+ }
+ };
+
\ No newline at end of file
diff --git a/pages_order/invoiceIssuance.vue b/pages_order/invoiceIssuance.vue
new file mode 100644
index 0000000..26a4450
--- /dev/null
+++ b/pages_order/invoiceIssuance.vue
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+ 夏日去撒野旅游计划~
+ 2024.10.28 10:00
+ 成都市东丽湖露营地32号
+
+ 总计¥800.00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages_order/invoiceRecords.vue b/pages_order/invoiceRecords.vue
new file mode 100644
index 0000000..2854aab
--- /dev/null
+++ b/pages_order/invoiceRecords.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+ 夏日去撒野旅游计划~
+ 2024.10.28 10:00
+ 成都市东丽湖露营地32号
+
+
+ 标准票
+ ×3
+ 已开票
+
+
+
+
+
+
+
+
+
+
diff --git a/pages_order/orderDetails.vue b/pages_order/orderDetails.vue
index 8bd5c9a..77ace6a 100644
--- a/pages_order/orderDetails.vue
+++ b/pages_order/orderDetails.vue
@@ -1,15 +1,15 @@
-
+
-
-
+
+
待参加
-
+
-
+
@@ -42,28 +42,22 @@
-
+
-
\ No newline at end of file
diff --git a/static/image/cart/evaluateIcon.png b/static/image/cart/evaluateIcon.png
new file mode 100644
index 0000000..3120968
Binary files /dev/null and b/static/image/cart/evaluateIcon.png differ
diff --git a/static/image/cart/selectIcon.png b/static/image/cart/selectIcon.png
new file mode 100644
index 0000000..b9a0efc
Binary files /dev/null and b/static/image/cart/selectIcon.png differ
diff --git a/static/image/cart/uncheckedIcon.png b/static/image/cart/uncheckedIcon.png
new file mode 100644
index 0000000..011e4b1
Binary files /dev/null and b/static/image/cart/uncheckedIcon.png differ
diff --git a/uni.scss b/uni.scss
index aa30bde..d60fa1e 100644
--- a/uni.scss
+++ b/uni.scss
@@ -13,6 +13,8 @@
*/
/* 颜色变量 */
$uni-color: #A3D250;
+$uni-color-background: #060504;
+$uni-color-card-background: #1B1713;
/* 行为相关颜色 */
$uni-color-primary: #FF4546;