diff --git a/components/chooseaddr/addradd/addradd.js b/components/chooseaddr/addradd/addradd.js
new file mode 100644
index 0000000..5ffe64e
--- /dev/null
+++ b/components/chooseaddr/addradd/addradd.js
@@ -0,0 +1,23 @@
+// components/chooseaddr/addradd/addradd.js
+Component({
+ /**
+ * 组件的属性列表
+ */
+ properties: {
+
+ },
+
+ /**
+ * 组件的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 组件的方法列表
+ */
+ methods: {
+
+ }
+})
diff --git a/components/chooseaddr/addradd/addradd.json b/components/chooseaddr/addradd/addradd.json
new file mode 100644
index 0000000..e8cfaaf
--- /dev/null
+++ b/components/chooseaddr/addradd/addradd.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/components/chooseaddr/addradd/addradd.wxml b/components/chooseaddr/addradd/addradd.wxml
new file mode 100644
index 0000000..aaf3911
--- /dev/null
+++ b/components/chooseaddr/addradd/addradd.wxml
@@ -0,0 +1 @@
+添加地址
\ No newline at end of file
diff --git a/components/chooseaddr/addradd/addradd.wxss b/components/chooseaddr/addradd/addradd.wxss
new file mode 100644
index 0000000..5815f93
--- /dev/null
+++ b/components/chooseaddr/addradd/addradd.wxss
@@ -0,0 +1,11 @@
+.btn {
+ width: 650rpx;
+ height: 98rpx;
+ background: rgba(69, 199, 120, 1);
+ border-radius: 49rpx;
+ margin: 0 auto;
+ font-size: 36rpx;
+ color: white;
+ line-height: 98rpx;
+ text-align: center;
+}
\ No newline at end of file
diff --git a/pages/chooseaddr/chooseaddr.json b/pages/chooseaddr/chooseaddr.json
index 854f0da..f7744d4 100644
--- a/pages/chooseaddr/chooseaddr.json
+++ b/pages/chooseaddr/chooseaddr.json
@@ -1,5 +1,6 @@
{
"usingComponents": {
- "address": "/components/chooseaddr/address/address"
+ "address": "/components/chooseaddr/address/address",
+ "addradd": "/components/chooseaddr/addradd/addradd"
}
}
\ No newline at end of file
diff --git a/pages/chooseaddr/chooseaddr.scss b/pages/chooseaddr/chooseaddr.scss
index a9379d7..3684fe8 100644
--- a/pages/chooseaddr/chooseaddr.scss
+++ b/pages/chooseaddr/chooseaddr.scss
@@ -2,4 +2,9 @@
.addr {
margin-left: 30rpx;
}
+ .btn1 {
+ position: fixed;
+ bottom: 149rpx;
+ left: 50rpx;
+ }
}
\ No newline at end of file
diff --git a/pages/chooseaddr/chooseaddr.wxml b/pages/chooseaddr/chooseaddr.wxml
index edbe96d..9243819 100644
--- a/pages/chooseaddr/chooseaddr.wxml
+++ b/pages/chooseaddr/chooseaddr.wxml
@@ -8,4 +8,7 @@
+
+
+
\ No newline at end of file
diff --git a/pages/chooseaddr/chooseaddr.wxss b/pages/chooseaddr/chooseaddr.wxss
index d19804d..ef5eca4 100644
--- a/pages/chooseaddr/chooseaddr.wxss
+++ b/pages/chooseaddr/chooseaddr.wxss
@@ -1,3 +1,9 @@
.chooseaddress .addr {
margin-left: 30rpx;
}
+
+.chooseaddress .btn1 {
+ position: fixed;
+ bottom: 149rpx;
+ left: 50rpx;
+}