diff --git a/pages.json b/pages.json
index c514991..2591d85 100644
--- a/pages.json
+++ b/pages.json
@@ -43,6 +43,18 @@
"style": {
"navigationBarTitleText": "申请健康码"
}
+ },
+ {
+ "path": "pages/my-code/my-code",
+ "style": {
+ "navigationBarTitleText": "我的健康打卡"
+ }
+ },
+ {
+ "path": "pages/my-trips/my-trips",
+ "style": {
+ "navigationBarTitleText": "我的行程"
+ }
}
],
"globalStyle": {
diff --git a/pages/add-stroke/add-stroke.vue b/pages/add-stroke/add-stroke.vue
index 2f2e194..e7f51f5 100644
--- a/pages/add-stroke/add-stroke.vue
+++ b/pages/add-stroke/add-stroke.vue
@@ -34,6 +34,8 @@
+
+
@@ -141,4 +143,16 @@ export default {
.primary-btn{
border-radius: 15rpx;
}
+ .history-btn{
+ position: fixed;
+ top: 30rpx;
+ right: 30rpx;
+ width: 96rpx;
+ height: 96rpx;
+ line-height: 96rpx;
+ padding: 0;
+ }
+ .history-btn::after{
+ border: none;
+ }
\ No newline at end of file
diff --git a/pages/apply-code/apply-code.vue b/pages/apply-code/apply-code.vue
index 3377855..9176c55 100644
--- a/pages/apply-code/apply-code.vue
+++ b/pages/apply-code/apply-code.vue
@@ -6,8 +6,8 @@
- *当前所在城市
-
+ *当前所在详细地址
+
*当前状态
@@ -66,6 +66,8 @@
+
+
@@ -76,7 +78,7 @@ export default {
data() {
return {
area: '',
- city: '',
+ address: '',
status: [
{
value: '0',
@@ -174,8 +176,8 @@ export default {
showToast('请输入当前所在地区');
return;
}
- if (!this.city) {
- showToast('请输入当前所在城市');
+ if (!this.address) {
+ showToast('请输入当前所在地址');
return;
}
if (!this.status) {
@@ -210,4 +212,16 @@ export default {
.primary-btn{
border-radius: 15rpx;
}
+ .history-btn{
+ position: fixed;
+ top: 30rpx;
+ right: 30rpx;
+ width: 96rpx;
+ height: 96rpx;
+ line-height: 96rpx;
+ padding: 0;
+ }
+ .history-btn::after{
+ border: none;
+ }
\ No newline at end of file
diff --git a/pages/index/components/home.vue b/pages/index/components/home.vue
index 5463b5a..d01ab80 100644
--- a/pages/index/components/home.vue
+++ b/pages/index/components/home.vue
@@ -1,13 +1,15 @@
-
+
-
+
-
-
+
+
@@ -59,61 +61,72 @@
diff --git a/pages/index/components/mine.vue b/pages/index/components/mine.vue
index 7272dcd..46db38d 100644
--- a/pages/index/components/mine.vue
+++ b/pages/index/components/mine.vue
@@ -16,22 +16,22 @@
@@ -39,30 +39,32 @@
diff --git a/pages/my-code/my-code.vue b/pages/my-code/my-code.vue
new file mode 100644
index 0000000..4bfdde3
--- /dev/null
+++ b/pages/my-code/my-code.vue
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+ {{ index+1 }}
+
+
+ {{ item.date }}
+
+
+
+
+
+
+ 当前所在地区:
+ {{ item.area }}
+
+
+
+ 当前所在详细地址:
+ {{ item.address }}
+
+
+
+ 当前状态:
+ {{ item.state }}
+
+
+
+ 就诊医院:
+ {{ item.hospital }}
+
+
+
+ 最近14天是否有武汉居住史、旅游史或武汉亲戚来访:
+ {{ item.tour }}
+
+
+
+ 最近14天是否有新冠肺炎患者或疑似患者接触史:
+ {{ item.touch }}
+
+
+
+ 当前体温:
+ {{ item.temperature }}℃
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/my-trips/my-trips.vue b/pages/my-trips/my-trips.vue
new file mode 100644
index 0000000..cd34f41
--- /dev/null
+++ b/pages/my-trips/my-trips.vue
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+ {{ index+1 }}
+
+
+ {{ item.date }}
+
+
+
+
+
+
+ 出发时间:
+ {{ item.startTime }}
+
+
+
+ 抵达时间:
+ {{ item.endTime }}
+
+
+
+ 出行交通方式:
+ {{ item.transport }}
+
+
+
+ 乘坐航班车次或车牌号码及座位号:
+ {{ item.carNumber }}
+
+
+
+
+
+
+
+
+
+
+
+