diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a60a8c6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/project.config.json
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
diff --git a/pages/venue/venue.wxss b/pages/venue/venue.wxss
index aa6ecd2..dbd18e8 100644
--- a/pages/venue/venue.wxss
+++ b/pages/venue/venue.wxss
@@ -68,7 +68,7 @@
}
.name{
font-size: 30rpx;
- width: 70%;
+ width: 60%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
diff --git a/project.config.json b/project.config.json
deleted file mode 100644
index 61ce167..0000000
--- a/project.config.json
+++ /dev/null
@@ -1,61 +0,0 @@
-{
- "description": "项目配置文件",
- "packOptions": {
- "ignore": []
- },
- "setting": {
- "urlCheck": false,
- "es6": true,
- "enhance": false,
- "postcss": true,
- "preloadBackgroundData": false,
- "minified": true,
- "newFeature": true,
- "coverView": true,
- "nodeModules": false,
- "autoAudits": false,
- "showShadowRootInWxmlPanel": true,
- "scopeDataCheck": false,
- "uglifyFileName": false,
- "checkInvalidKey": true,
- "checkSiteMap": true,
- "uploadWithSourceMap": true,
- "babelSetting": {
- "ignore": [],
- "disablePlugins": [],
- "outputPath": ""
- },
- "useCompilerModule": true,
- "userConfirmedUseCompilerModuleSwitch": false,
- "compileHotReLoad": false,
- "useIsolateContext": true
- },
- "compileType": "miniprogram",
- "libVersion": "2.11.1",
- "appid": "wxe17874894f7ff27b",
- "projectname": "xz_mini",
- "debugOptions": {
- "hidedInDevtools": []
- },
- "isGameTourist": false,
- "simulatorType": "wechat",
- "simulatorPluginLibVersion": {},
- "condition": {
- "search": {
- "current": -1,
- "list": []
- },
- "conversation": {
- "current": -1,
- "list": []
- },
- "game": {
- "currentL": -1,
- "list": []
- },
- "miniprogram": {
- "current": -1,
- "list": []
- }
- }
-}
\ No newline at end of file