From 951ed48400cea58066fc3f02b8d321aa935c108e Mon Sep 17 00:00:00 2001
From: dong_bo0602 <358256383@qq.com>
Date: Sat, 27 Jun 2020 14:04:03 +0800
Subject: [PATCH] =?UTF-8?q?=E5=9C=BA=E9=A6=86=E8=AE=A2=E5=8D=95=E5=88=97?=
=?UTF-8?q?=E8=A1=A8=E3=80=81=E8=AE=A2=E5=8D=95=E8=AF=A6=E6=83=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/myVenueOrder/myVenueOrder.js | 66 +++++++++++++++++++++
pages/myVenueOrder/myVenueOrder.json | 3 +
pages/myVenueOrder/myVenueOrder.wxml | 44 ++++++++++++++
pages/myVenueOrder/myVenueOrder.wxss | 51 +++++++++++++++++
pages/orderDetail/orderDetail.js | 66 +++++++++++++++++++++
pages/orderDetail/orderDetail.json | 3 +
pages/orderDetail/orderDetail.wxml | 67 ++++++++++++++++++++++
pages/orderDetail/orderDetail.wxss | 85 ++++++++++++++++++++++++++++
8 files changed, 385 insertions(+)
create mode 100644 pages/myVenueOrder/myVenueOrder.js
create mode 100644 pages/myVenueOrder/myVenueOrder.json
create mode 100644 pages/myVenueOrder/myVenueOrder.wxml
create mode 100644 pages/myVenueOrder/myVenueOrder.wxss
create mode 100644 pages/orderDetail/orderDetail.js
create mode 100644 pages/orderDetail/orderDetail.json
create mode 100644 pages/orderDetail/orderDetail.wxml
create mode 100644 pages/orderDetail/orderDetail.wxss
diff --git a/pages/myVenueOrder/myVenueOrder.js b/pages/myVenueOrder/myVenueOrder.js
new file mode 100644
index 0000000..c263f75
--- /dev/null
+++ b/pages/myVenueOrder/myVenueOrder.js
@@ -0,0 +1,66 @@
+// pages/myVenueOrder/myVenueOrder.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad: function (options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function () {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function () {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function () {
+
+ }
+})
\ No newline at end of file
diff --git a/pages/myVenueOrder/myVenueOrder.json b/pages/myVenueOrder/myVenueOrder.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/pages/myVenueOrder/myVenueOrder.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/myVenueOrder/myVenueOrder.wxml b/pages/myVenueOrder/myVenueOrder.wxml
new file mode 100644
index 0000000..542582a
--- /dev/null
+++ b/pages/myVenueOrder/myVenueOrder.wxml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+ 场馆
+ 篮球
+
+ 订单编号:12456789
+ 下单时间:2020-01-01 10:00:00
+ ¥15元
+
+
+
+
+
+
+
+
+ 场馆
+ 篮球
+
+ 订单编号:12456789
+ 下单时间:2020-01-01 10:00:00
+ ¥15元
+
+
+
+
+
+
+
+
+ 场馆
+ 篮球
+
+ 订单编号:12456789
+ 下单时间:2020-01-01 10:00:00
+ ¥15元
+
+
+
\ No newline at end of file
diff --git a/pages/myVenueOrder/myVenueOrder.wxss b/pages/myVenueOrder/myVenueOrder.wxss
new file mode 100644
index 0000000..214e7f4
--- /dev/null
+++ b/pages/myVenueOrder/myVenueOrder.wxss
@@ -0,0 +1,51 @@
+.venue{
+ padding: 10rpx 30rpx;
+}
+.order-box{
+ border-radius: 10rpx;
+ padding: 10rpx;
+ box-shadow:0px 0px 17rpx 0px rgba(0,0,0,0.1);
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 20rpx;
+}
+.venue-img{
+ width: 35%;
+ height: 180rpx;
+}
+.venue-img image{
+ width: 100%;
+ height: 100%;
+ border-radius: 10rpx;
+}
+.order-info{
+ width: 62%;
+}
+.venue-title{
+ font-size: 32rpx;
+ display: flex;
+ justify-content: space-between;
+}
+.title{
+ width: 70%;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+.project{
+ font-size: 28rpx;
+ background: rgba(159,21,18,.1);
+ color: #9F1512;
+ padding: 0 5rpx;
+ border-radius: 10rpx;
+}
+.number-time{
+ font-size: 26rpx;
+ color: #949494;
+ margin-top: 10rpx;
+}
+.price{
+ font-size: 30rpx;
+ color: #9F1512;
+ margin-top: 10rpx;
+}
\ No newline at end of file
diff --git a/pages/orderDetail/orderDetail.js b/pages/orderDetail/orderDetail.js
new file mode 100644
index 0000000..1fbd268
--- /dev/null
+++ b/pages/orderDetail/orderDetail.js
@@ -0,0 +1,66 @@
+// pages/orderDetail/orderDetail.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad: function (options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function () {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function () {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function () {
+
+ }
+})
\ No newline at end of file
diff --git a/pages/orderDetail/orderDetail.json b/pages/orderDetail/orderDetail.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/pages/orderDetail/orderDetail.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/orderDetail/orderDetail.wxml b/pages/orderDetail/orderDetail.wxml
new file mode 100644
index 0000000..4b3b415
--- /dev/null
+++ b/pages/orderDetail/orderDetail.wxml
@@ -0,0 +1,67 @@
+
+
+
+
+
+ 场馆
+
+ 订单编号:123456789
+
+
+ 下单时间:10:10:10
+
+
+ 价 格:15元
+
+
+
+
+ 预定详情
+
+
+
+ 2020-01-01
+ 12:00-13:00
+
+
+ 场地1
+ 15元
+ 取消预定
+
+
+
+
+ 2020-01-01
+ 12:00-13:00
+
+
+ 场地1
+ 15元
+ 取消预定
+
+
+
+
+ 2020-01-01
+ 12:00-13:00
+
+
+ 场地1
+ 15元
+ 取消预定
+
+
+
+
+ 2020-01-01
+ 12:00-13:00
+
+
+ 场地1
+ 15元
+ 取消预定
+
+
+
+
+全部取消
\ No newline at end of file
diff --git a/pages/orderDetail/orderDetail.wxss b/pages/orderDetail/orderDetail.wxss
new file mode 100644
index 0000000..bb039b6
--- /dev/null
+++ b/pages/orderDetail/orderDetail.wxss
@@ -0,0 +1,85 @@
+.venue{
+ padding: 15rpx 30rpx;
+ display: flex;
+ justify-content: space-between;
+ border-bottom: 3px solid #DEDEDE;
+}
+.venue-img{
+ width: 35%;
+ height: 180rpx;
+}
+.venue-img image{
+ width: 100%;
+ height: 100%;
+}
+.venue-info{
+ width: 63%;
+}
+.venue-title{
+ font-size: 32rpx;
+ color: #000;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.time-number{
+ font-size: 26rpx;
+ margin-top: 10rpx;
+}
+.time-number text{
+ color: #949494;
+}
+.book{
+ margin-top: 20rpx;
+ padding: 0 30rpx;
+ margin-bottom: 85rpx;
+}
+.book-title{
+ font-size: 32rpx;
+ padding-left: 25rpx;
+ border-left: 5px solid #9F1512;
+}
+.order{
+ margin-top: 20rpx;
+}
+.order-box{
+ display: inline-block;
+ width: 32%;
+ margin-right: 1%;
+ border: 1px solid #9F1512;
+ border-radius: 10rpx;
+ text-align: center;
+ margin-bottom: 10rpx;
+}
+.order-box:nth-child(3n){
+ margin-right: 0;
+}
+.top{
+ background: #9F1512;
+ color: #fff;
+ font-size: 28rpx;
+}
+.bottom{
+ font-size: 28rpx;
+}
+.cancel{
+ width: 70%;
+ margin: 0 auto 10rpx;
+ background: #9F1512;
+ color: #fff;
+ padding: 5rpx 0;
+ border-radius: 10rpx;
+}
+.cancel-all{
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 80rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background: #9F1512;
+ color: #fff;
+ font-size: 32rpx;
+}
\ No newline at end of file