diff --git b/app.js a/app.js
new file mode 100644
index 0000000..e6d8559
--- /dev/null
+++ a/app.js
@@ -0,0 +1,106 @@
+//app.js
+App({
+  onLaunch: function () {
+   
+  },
+ /**
+  * 自定义post函数,返回Promise
+  * +-------------------
+  * @param {String}      url 接口网址
+  * @param {arrayObject} data 要传的数组对象 like: {name: 'name', age: 32}
+  * +-------------------
+  * @return {Promise}    promise 返回promise供后续操作
+  */
+ post: function (url, data, headerParams) {
+  wx.showNavigationBarLoading()
+  wx.showLoading({
+   title: '加载中',
+  })
+  var promise = new Promise((resolve, reject) => {
+   let that = this;
+   let postData = data;
+   let baseUrl = 'http://saloon.w.bronet.cn/api/';
+   //网络请求
+   let header = {
+    'content-type': 'application/x-www-form-urlencoded'
+   }
+   header = Object.assign(header, headerParams)
+   wx.request({
+    url: baseUrl + url,
+    data: postData,
+    method: 'POST',
+    header: header,
+    success: function (res) {//返回取得的数据
+     if (res.data.code == '20000') {
+      resolve(res.data.data);
+     } else if (res.data.code == '10001') {//用户未
+      
+     } else if (res.data.code == '40000') {
+      wx.showModal({
+       title: '提示',
+       content: res.data.msg,
+       showCancel: false,
+       success: function (res) {
+       }
+      })
+     } else if (res.data.code == '40005') {
+      wx.showModal({
+       title: '提示',
+       content: res.data.msg,
+       showCancel: false,
+       success: function (res) {
+        if (res.confirm) {
+         wx.reLaunch({
+          url: '/pages/start/start'
+         })
+        } else if (res.cancel) {
+         console.log('用户点击取消')
+        }
+       }
+      })
+     } else if (res.data.code == '40006') {
+
+     } else {
+      wx.showModal({
+       title: '提示',
+       content: res.data.msg,
+       showCancel: false,
+      })
+      reject(res.data)
+     }
+     wx.hideLoading()
+     wx.hideNavigationBarLoading()
+    },
+    fail: function (e) {
+     console.log(e)
+     reject('网络出错');
+     // wx.hideLoading()
+     wx.hideNavigationBarLoading()
+    }
+   })
+  });
+
+  return promise;
+ },
+ //根据年月日获取(星期等信息)////later=0 当前  later=1明天  later=2后天
+ dateLater(later) {
+  let dateObj = {};
+  let show_day = new Array('星期天', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六');
+  let date = new Date();
+  date.setDate(date.getDate() + later);
+  let day = date.getDay();
+  dateObj.year = date.getFullYear();
+  dateObj.month = ((date.getMonth() + 1) < 10 ? ("0" + (date.getMonth() + 1)) : date.getMonth() + 1);
+  dateObj.day = (date.getDate() < 10 ? ("0" + date.getDate()) : date.getDate());
+  dateObj.week = show_day[day];
+  dateObj.dataday = date.getFullYear() + '-' + ((date.getMonth() + 1) < 10 ? ("0" + (date.getMonth() + 1)) : date.getMonth() + 1) + '-' + (date.getDate() < 10 ? ("0" + date.getDate()) : date.getDate());
+  dateObj.houser = date.getHours();//当前时间点
+  console.log(date.getHours())
+  dateObj.housers = (date.getHours() < 10 ? ("0" + date.getHours()) : date.getHours()) + ':00:00';//当前时间点
+  dateObj.datadayhouser = date.getFullYear() + '/' + ((date.getMonth() + 1) < 10 ? ("0" + (date.getMonth() + 1)) : date.getMonth() + 1) + '/' + (date.getDate() < 10 ? ("0" + date.getDate()) : date.getDate()) + ' ' + (date.getHours() < 10 ? ("0" + date.getHours()) : date.getHours()) + ':00';//当前时间并时间点
+  return dateObj;
+ },
+  globalData: {
+    userInfo: null
+  }
+})
\ No newline at end of file
diff --git b/app.json a/app.json
new file mode 100644
index 0000000..35742e4
--- /dev/null
+++ a/app.json
@@ -0,0 +1,91 @@
+{
+ "pages": [
+  "pages/kaishi/kaishi",
+  "pages/index/index",
+  "pages/merchant/login/login",
+  "pages/merchant/account/account",
+  "pages/merchant/tixian/tixian",
+  "pages/merchant/tixian2/tixian2",
+  "pages/merchant/account_info/account_info",
+  "pages/merchant/account_manage/account_manage",
+  "pages/merchant/merchant_center/merchant_center",
+  "pages/merchant/merchant_register/merchant_register",
+  "pages/merchant/merchant_addgoods/merchant_addgoods",
+  "pages/merchant/add_combo/add_combo",
+  "pages/merchant/add_kazuo/add_kazuo",
+  "pages/merchant/one_add/one_add",
+  "pages/merchant/my_order/my_order",
+  "pages/merchant/pay_detail/pay_detail",
+  "pages/merchant/goodslist/goodslist",
+  "pages/merchant/merchant_index/merchant_index",
+  "pages/merchant/merchant_imgs/merchant_imgs",
+  "pages/my/my",
+  "pages/client_pay/client_pay",
+  "pages/apply_yes/apply_yes",
+  "pages/my_account/my_account",
+  "pages/choose_time/choose_time",
+  "pages/true_approve/true_approve",
+  "pages/location/location",
+  "pages/form/form",
+  "pages/plaza/plaza",
+  "pages/more_imgs/more_imgs",
+  "pages/facility/facility",
+  "pages/tuangou/tuanguo",
+  "pages/taocan_detail/taocan_detail",
+  "pages/my_order/my_order",
+  "pages/my_zhudui/my_zhudui",
+  "pages/evaluate/evaluate",
+  "pages/bar_detail/bar_detail",
+  "pages/my_class/my_class",
+  "pages/img_txt/img_txt",
+  "pages/start/start",
+  "pages/zudui_pay/zudui_pay",
+  "pages/share/share",
+  "pages/merchant/register/register",
+  "pages/merchant/register_yes/register_yes",
+  "pages/merchant/scan/scan",
+  "pages/merchant/merchant_registerinfo/merchant_registerinfo",
+  "pages/merchant/account_list/account_list",
+  "pages/merchant/edit_account/edit_account",
+  "pages/merchant/merchant_share/merchant_share",
+  "pages/merchant/merchant_explain/merchant_explain",
+  "pages/merchant/merchant_activity/merchant_activity",
+  "pages/merchant/merchant_info/merchant_info",
+  "pages/merchant/user_agree/user_agree",
+  "pages/my_zhuduidetail/my_zhuduidetail",
+  "pages/my_orderdetai/my_orderdetail",
+  "pages/login/login",
+  "pages/my_ordersuccess/my_ordersuccess"
+ ],
+ "window": {
+  "backgroundTextStyle": "light",
+  "navigationBarBackgroundColor": "#031A2F",
+  "navigationBarTitleText": "友从",
+  "navigationBarTextStyle": "white"
+ },
+ "tabBar": {
+  "color": "#CCCCCC",
+  "selectedColor": "#fff",
+  "backgroundColor": "#011125",
+  "list": [
+   {
+    "pagePath": "pages/index/index",
+    "text": "首页",
+    "iconPath": "imgs/icon2.png",
+    "selectedIconPath": "imgs/icon22.png"
+   },
+   {
+    "pagePath": "pages/plaza/plaza",
+    "text": "广场",
+    "iconPath": "imgs/icon1.png",
+    "selectedIconPath": "imgs/icon11.png"
+   },
+   {
+    "pagePath": "pages/my/my",
+    "text": "我的",
+    "iconPath": "imgs/icon3.png",
+    "selectedIconPath": "imgs/icon33.png"
+   }
+  ]
+ }
+}
\ No newline at end of file
diff --git b/app.wxss a/app.wxss
new file mode 100644
index 0000000..736e8a4
--- /dev/null
+++ a/app.wxss
@@ -0,0 +1,487 @@
+/**app.wxss**/
+.account_title {
+padding:0 27rpx;
+color:rgba(255,255,255,0.8);
+font-size:36rpx;
+}
+.account_subtitle {
+padding:0 27rpx;
+color:rgba(255,255,255,0.6);
+font-size:20rpx;
+margin:0 0 10rpx 0;
+
+}
+.my_content{
+ position: fixed;
+ top:0;
+ left:0;
+ bottom:0;
+ z-index:1;
+ height: 100%;
+ width:100%;
+}
+.my_content image{
+ width:100%;
+ height: 100%;
+ display: block;
+
+}
+
+.container {
+  height: 100%;
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  justify-content: space-between;
+  padding: 200rpx 0;
+  box-sizing: border-box;
+} 
+.button_btn{
+ margin: 700rpx 0 0 0;
+ height: 60rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size:36rpx;
+ color:#fff;
+ border-radius: 10rpx;
+ background: #509FD6;
+}
+
+.tixian_top{
+ margin: 16rpx 0 0 0;
+ background: #0768AC;
+ height: 43rpx;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding:0 30rpx;
+ color:#fff;
+ font-size:24rpx;
+}
+.tixian_minitxt{
+ font-size:17rpx;
+} 
+
+.button_btn:active{
+ opacity: 0.7;
+}
+.line{
+ margin: 30rpx 20rpx 0 20rpx;
+ height: 17rpx;
+ border-radius: 8rpx;
+ background: linear-gradient(to right, #C31727 , #892D71,#1F81BE);
+}
+.client_btn{
+ margin: 0 auto;
+ border-radius: 8rpx;
+ width: 700rpx;
+ height: 60rpx;
+ background: linear-gradient(to right, #227FBC , #892D71,#BE1730);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color:#fff;
+ font-size:36rpx;
+}
+.client_btn:active{
+ opacity: 0.7;
+}
+.waveWrapper {
+    overflow: hidden;
+    width: 100%;
+    position: fixed;
+    left: 0;
+    bottom:-1rpx;
+    height: 100rpx;
+    z-index:300;
+}
+.waveWrapper image {
+    width: 100%;
+    height: 100%;
+}
+
+.waveWrapperInner {
+    position: absolute;
+    width: 100%;
+    overflow: hidden;
+    bottom: -4px;
+    height: 100%;
+}
+
+.bgTop {
+    z-index: 15;
+    opacity: 0.5;
+}
+
+.bgMiddle {
+    z-index: 10;
+    opacity: 0.75;
+}
+
+.bgBottom {
+    z-index: 5;
+}
+.navigator_hover{
+background-color:none; 
+
+}
+.wave {
+    position: absolute;
+    left: 0;
+    width: 200%;
+    bottom: 0;
+    transform-origin: center bottom;
+}
+
+.waveAnimation .waveTop {
+    animation: move-wave 10s linear infinite;
+   
+}
+
+.waveAnimation .waveMiddle {
+    animation: move_wave 10s linear infinite;
+}
+
+.waveAnimation .waveBottom {
+    animation: move_wave 15s linear infinite;
+}
+@-webkit-keyframes move_wave {
+    0% {
+        transform: translateX(0) translateZ(0) scaleY(0.75);
+    }
+
+    50% {
+        transform: translateX(-25%) translateZ(0) scaleY(0.55);
+    }
+
+    100% {
+        transform: translateX(-50%) translateZ(0) scaleY(0.75);
+    }
+}
+
+@keyframes move_wave {
+    0% {
+        transform: translateX(0) translateZ(0) scaleY(0.75);
+    }
+
+    50% {
+        transform: translateX(-25%) translateZ(0) scaleY(0.55);
+    }
+
+    100% {
+        transform: translateX(-50%) translateZ(0) scaleY(0.75);
+    }
+}
+
+.bottom_img{
+ position: fixed;
+ bottom:0;
+ left:0;
+ z-index:10;
+ display: flex;
+ justify-content: center;
+ align-items: cneter;
+ height: 114rpx;
+ width:100%;
+}
+.bottom_img image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.formitem_rigth_jian {
+position:relative;
+margin:10rpx 20rpx 0 0;
+width:40rpx;
+height:40rpx;
+display:flex;
+transform:rotate(45deg);
+color:#fff;
+font-size:20rpx;
+align-items:center;
+justify-content:center;
+border-radius:10rpx;
+background:linear-gradient(0deg,#415DAA, #34BEB5);
+
+}
+.jian_txt {
+position:absolute;
+transform:rotate(-45deg);
+z-index:2;
+}
+.merchant_nav{
+ z-index:100;
+ position: fixed;
+ left:0;
+ bottom:0;
+ width:100%;
+ height: 128rpx;
+background: #0768AC;
+font-size:26rpx;
+padding: 0 130rpx;
+box-sizing: border-box;
+color:rgba(255,255,255,0.8);
+display: flex;
+align-items: center;
+justify-content: space-between;
+}
+.nav_icon{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
+.nav_iconimg{
+ height: 49rpx;
+ width:60rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 0 4rpx 0;
+}
+.nav_iconimg image{
+ width:100%;
+ height: 100%;
+ display:block;
+
+}
+.bottom_img{
+ position: fixed;
+ bottom:0;
+ left:0;
+ z-index:10;
+ display: flex;
+ justify-content: center;
+ align-items: cneter;
+ height: 114rpx;
+ width:100%;
+}
+.bottom_img image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.apply_vold{
+ position: fixed;
+ top:0;
+ left:0;
+ width:100%;
+ height: 100%;
+ background: rgba(0,0,0,0.2);
+ z-index: 10;
+ display: flex;
+ /* display: none; */
+ justify-content: center;
+ align-items: center;
+}
+.pickerview{
+ position: relative;
+ background: #fff;
+ width:80%;
+ border-radius: 8rpx;
+ margin: 0 auto;
+ 
+ padding:60rpx 0 0 0;
+}
+.pickerview .iconfont{
+ position: absolute;
+ font-weight: bold;
+ font-size: 40rpx;
+ top:-13rpx;
+ right:-9rpx;
+ color:#333;
+ z-index:100;
+}
+.pickerview_top{
+ width:90%;
+ padding:0 30rpx;
+ height: 288rpx;
+}
+.apply_vold_btn{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+.applybtn{
+ position: relative;
+ border:1rpx solid #f6f6f6;
+ color:#333;
+ font-size: 40rpx;
+ height: 80rpx;
+ width:50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.inofbtn{
+ position: absolute;
+ top:0;
+ left:0;
+ width:100%;
+ height: 100%;
+ z-index:10;
+ opacity: 0;
+}
+.applybtn:active{
+ opacity: 0.7;
+}
+.yes_applybtn{
+ background-color: #509FD6;
+ color:#fff;
+ border:1rpx solid #509FD6;
+}
+.column_view{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.txt_chooser{
+ color:#B5B5B5;
+}
+.vold_timet{
+ color:#333;
+ font-size:30rpx;
+ text-align: center;
+}
+.time_left{
+ position: absolute;
+ top:20rpx;
+ left:106rpx;
+}
+.time_rigth{
+ position: absolute;
+ top:20rpx;
+ right:104rpx;
+}
+@font-face {font-family: "iconfont";
+  src: url('//at.alicdn.com/t/font_959070_529dc7ft9xd.eot?t=1544776041904'); /* IE9*/
+  src: url('//at.alicdn.com/t/font_959070_529dc7ft9xd.eot?t=1544776041904#iefix') format('embedded-opentype'), /* IE6-IE8 */
+  url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff'),
+  url('//at.alicdn.com/t/font_959070_529dc7ft9xd.ttf?t=1544776041904') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
+  url('//at.alicdn.com/t/font_959070_529dc7ft9xd.svg?t=1544776041904#iconfont') format('svg'); /* iOS 4.1- */
+}
+
+.iconfont {
+  font-family:"iconfont" !important;
+  font-size:16px;
+  font-style:normal;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+.icon-maikefeng:before { content: "\e600"; }
+
+.icon-shouji:before { content: "\e601"; }
+
+.icon-xin1:before { content: "\e61a"; }
+
+.icon-iconfontsaoyisao:before { content: "\e602"; }
+
+.icon-qunfengdingwei:before { content: "\e6c6"; }
+
+.icon-iconset03100:before { content: "\e717"; }
+
+.icon-duigou:before { content: "\e60d"; }
+
+.icon-gerenxinxi:before { content: "\e619"; }
+
+.icon-shezhi2:before { content: "\e63a"; }
+
+.icon-suo01:before { content: "\e6f7"; }
+
+.icon-suo101:before { content: "\e6f8"; }
+
+.icon-emichenggong:before { content: "\e63d"; }
+
+.icon-luyinshuohuashengyin:before { content: "\e6b2"; }
+
+.icon-right:before { content: "\e614"; }
+
+.icon-duigou1:before { content: "\e65d"; }
+
+.icon-paixing:before { content: "\e66e"; }
+
+.icon-gerenxinxi1:before { content: "\e60f"; }
+
+.icon-xin:before { content: "\e633"; }
+
+.icon-jiushui:before { content: "\e640"; }
+
+.icon-qian:before { content: "\e641"; }
+
+.icon-kinds:before { content: "\e60e"; }
+
+.icon-xiangshang2:before { content: "\e625"; }
+
+.icon-02:before { content: "\e603"; }
+
+.icon-iconfontzhizuobiaozhunbduan22:before { content: "\e6dd"; }
+
+.icon-diancan:before { content: "\e608"; }
+
+.icon-jia:before { content: "\e643"; }
+
+.icon-xiangshang:before { content: "\e612"; }
+
+.icon-xiangxia:before { content: "\e615"; }
+
+.icon-tianjiachenggong:before { content: "\e65e"; }
+
+.icon-guanbi:before { content: "\e638"; }
+
+.icon-icon-test:before { content: "\e632"; }
+
+.icon-down:before { content: "\e7fa"; }
+
+.icon-sousuo:before { content: "\e613"; }
+
+.icon-gantanhao:before { content: "\e724"; }
+
+.icon-xingbie-nan:before { content: "\e616"; }
+
+.icon-xingbie-nv:before { content: "\e617"; }
+
+.icon-dingwei:before { content: "\e667"; }
+
+.icon-wenjian:before { content: "\e793"; }
+
+.icon-icon--:before { content: "\e733"; }
+
+.icon-xiaoxi:before { content: "\e62b"; }
+
+.icon-tupian:before { content: "\e610"; }
+
+.icon-baocuo:before { content: "\e622"; }
+
+.icon-tupian1:before { content: "\e61f"; }
+
+.icon-fangdajing:before { content: "\e637"; }
+
+.icon-xiaoxi1:before { content: "\e611"; }
+
+.icon-fenlei-:before { content: "\e606"; }
+
+.icon-jiu_:before { content: "\e618"; }
+
+.icon--gerenxinxi:before { content: "\e72b"; }
+
+.icon-jia1:before { content: "\e61b"; }
+
+.icon-jinzhi:before { content: "\e60a"; }
+
+.icon-liebiao:before { content: "\e60c"; }
+
+.icon-huiyuanhuangguanguanjun-xianxing:before { content: "\e7aa"; }
+
+.icon-youhuiquan-xianxing:before { content: "\e7db"; }
+
+.icon-charutupian:before { content: "\ec7f"; }
+
+.icon-ditu:before { content: "\e639"; }
+
+.icon-zhifeiji:before { content: "\e681"; }
+
+.icon-thin-_search_fin:before { content: "\e60b"; }
+
+.icon-jia2:before { content: "\e624"; }
diff --git b/imgs/anniutiao@3x.png a/imgs/anniutiao@3x.png
new file mode 100644
index 0000000..be71e19
Binary files /dev/null and a/imgs/anniutiao@3x.png differ
diff --git b/imgs/baomingchenggong@3x.png a/imgs/baomingchenggong@3x.png
new file mode 100644
index 0000000..a3b93ff
Binary files /dev/null and a/imgs/baomingchenggong@3x.png differ
diff --git b/imgs/beijing@3x.png a/imgs/beijing@3x.png
new file mode 100644
index 0000000..9992fbb
Binary files /dev/null and a/imgs/beijing@3x.png differ
diff --git b/imgs/bianjishangpin@3x.png a/imgs/bianjishangpin@3x.png
new file mode 100644
index 0000000..cce25f6
Binary files /dev/null and a/imgs/bianjishangpin@3x.png differ
diff --git b/imgs/chaoping@3x.png a/imgs/chaoping@3x.png
new file mode 100644
index 0000000..9a05cf4
Binary files /dev/null and a/imgs/chaoping@3x.png differ
diff --git b/imgs/code.png a/imgs/code.png
new file mode 100644
index 0000000..a60f7a9
Binary files /dev/null and a/imgs/code.png differ
diff --git b/imgs/daizhifu@3x.png a/imgs/daizhifu@3x.png
new file mode 100644
index 0000000..551b870
Binary files /dev/null and a/imgs/daizhifu@3x.png differ
diff --git b/imgs/dengjibeijing@3x.png a/imgs/dengjibeijing@3x.png
new file mode 100644
index 0000000..94f3e19
Binary files /dev/null and a/imgs/dengjibeijing@3x.png differ
diff --git b/imgs/denglubviejing@3x.png a/imgs/denglubviejing@3x.png
new file mode 100644
index 0000000..15134e3
Binary files /dev/null and a/imgs/denglubviejing@3x.png differ
diff --git b/imgs/dianoufengmian@3x.png a/imgs/dianoufengmian@3x.png
new file mode 100644
index 0000000..08f1793
Binary files /dev/null and a/imgs/dianoufengmian@3x.png differ
diff --git b/imgs/dianouneirjing@3x.png a/imgs/dianouneirjing@3x.png
new file mode 100644
index 0000000..2c1960d
Binary files /dev/null and a/imgs/dianouneirjing@3x.png differ
diff --git b/imgs/dianpuxiangce@3x.png a/imgs/dianpuxiangce@3x.png
new file mode 100644
index 0000000..b8753ab
Binary files /dev/null and a/imgs/dianpuxiangce@3x.png differ
diff --git b/imgs/dicengtupian@3x.png a/imgs/dicengtupian@3x.png
new file mode 100644
index 0000000..0db2dc9
Binary files /dev/null and a/imgs/dicengtupian@3x.png differ
diff --git b/imgs/dituxuanfu@3x.png a/imgs/dituxuanfu@3x.png
new file mode 100644
index 0000000..1ea13f9
Binary files /dev/null and a/imgs/dituxuanfu@3x.png differ
diff --git b/imgs/food.png a/imgs/food.png
new file mode 100644
index 0000000..fcc4741
Binary files /dev/null and a/imgs/food.png differ
diff --git b/imgs/goods.png a/imgs/goods.png
new file mode 100644
index 0000000..2e8f175
Binary files /dev/null and a/imgs/goods.png differ
diff --git b/imgs/guancghangxuanzhong@3x.png a/imgs/guancghangxuanzhong@3x.png
new file mode 100644
index 0000000..1c6b32b
Binary files /dev/null and a/imgs/guancghangxuanzhong@3x.png differ
diff --git b/imgs/guangchanng@3x.png a/imgs/guangchanng@3x.png
new file mode 100644
index 0000000..be3670c
Binary files /dev/null and a/imgs/guangchanng@3x.png differ
diff --git b/imgs/head.png a/imgs/head.png
new file mode 100644
index 0000000..39250ac
Binary files /dev/null and a/imgs/head.png differ
diff --git b/imgs/henhe@3x.png a/imgs/henhe@3x.png
new file mode 100644
index 0000000..eb8ef31
Binary files /dev/null and a/imgs/henhe@3x.png differ
diff --git b/imgs/hsouchishenfenzhneg@3x.png a/imgs/hsouchishenfenzhneg@3x.png
new file mode 100644
index 0000000..7643123
Binary files /dev/null and a/imgs/hsouchishenfenzhneg@3x.png differ
diff --git b/imgs/huashitiaojiu@3x.png a/imgs/huashitiaojiu@3x.png
new file mode 100644
index 0000000..065f7e3
Binary files /dev/null and a/imgs/huashitiaojiu@3x.png differ
diff --git b/imgs/huodongneirong@3x.png a/imgs/huodongneirong@3x.png
new file mode 100644
index 0000000..78c75e6
Binary files /dev/null and a/imgs/huodongneirong@3x.png differ
diff --git b/imgs/huodotupian@3x.png a/imgs/huodotupian@3x.png
new file mode 100644
index 0000000..bedd08a
Binary files /dev/null and a/imgs/huodotupian@3x.png differ
diff --git b/imgs/icon1.png a/imgs/icon1.png
new file mode 100644
index 0000000..3193275
Binary files /dev/null and a/imgs/icon1.png differ
diff --git b/imgs/icon11.png a/imgs/icon11.png
new file mode 100644
index 0000000..9dc46e0
Binary files /dev/null and a/imgs/icon11.png differ
diff --git b/imgs/icon2.png a/imgs/icon2.png
new file mode 100644
index 0000000..1c1f0d3
Binary files /dev/null and a/imgs/icon2.png differ
diff --git b/imgs/icon22.png a/imgs/icon22.png
new file mode 100644
index 0000000..1ad3541
Binary files /dev/null and a/imgs/icon22.png differ
diff --git b/imgs/icon3.png a/imgs/icon3.png
new file mode 100644
index 0000000..431df68
Binary files /dev/null and a/imgs/icon3.png differ
diff --git b/imgs/icon33.png a/imgs/icon33.png
new file mode 100644
index 0000000..fb257c1
Binary files /dev/null and a/imgs/icon33.png differ
diff --git b/imgs/id_n.png a/imgs/id_n.png
new file mode 100644
index 0000000..49cdac0
Binary files /dev/null and a/imgs/id_n.png differ
diff --git b/imgs/id_y.png a/imgs/id_y.png
new file mode 100644
index 0000000..eb67883
Binary files /dev/null and a/imgs/id_y.png differ
diff --git b/imgs/item.png a/imgs/item.png
new file mode 100644
index 0000000..a8614b4
Binary files /dev/null and a/imgs/item.png differ
diff --git b/imgs/juliweixuanzhong@3x.png a/imgs/juliweixuanzhong@3x.png
new file mode 100644
index 0000000..5a15409
Binary files /dev/null and a/imgs/juliweixuanzhong@3x.png differ
diff --git b/imgs/julixuanzhong@3x.png a/imgs/julixuanzhong@3x.png
new file mode 100644
index 0000000..3ecc68c
Binary files /dev/null and a/imgs/julixuanzhong@3x.png differ
diff --git b/imgs/lunbo1@3x.png a/imgs/lunbo1@3x.png
new file mode 100644
index 0000000..cb41b1a
Binary files /dev/null and a/imgs/lunbo1@3x.png differ
diff --git b/imgs/lunbo2@3x.png a/imgs/lunbo2@3x.png
new file mode 100644
index 0000000..ddfb95e
Binary files /dev/null and a/imgs/lunbo2@3x.png differ
diff --git b/imgs/lunbo3@3x.png a/imgs/lunbo3@3x.png
new file mode 100644
index 0000000..258b293
Binary files /dev/null and a/imgs/lunbo3@3x.png differ
diff --git b/imgs/lv.png a/imgs/lv.png
new file mode 100644
index 0000000..dc8c638
Binary files /dev/null and a/imgs/lv.png differ
diff --git b/imgs/manjian@3x.png a/imgs/manjian@3x.png
new file mode 100644
index 0000000..5a06de6
Binary files /dev/null and a/imgs/manjian@3x.png differ
diff --git b/imgs/nan@3x.png a/imgs/nan@3x.png
new file mode 100644
index 0000000..7699fb2
Binary files /dev/null and a/imgs/nan@3x.png differ
diff --git b/imgs/nanweixuanzhong@3x.png a/imgs/nanweixuanzhong@3x.png
new file mode 100644
index 0000000..524dade
Binary files /dev/null and a/imgs/nanweixuanzhong@3x.png differ
diff --git b/imgs/nv@3x.png a/imgs/nv@3x.png
new file mode 100644
index 0000000..c7b5dcd
Binary files /dev/null and a/imgs/nv@3x.png differ
diff --git b/imgs/nvxuanzhong@3x.png a/imgs/nvxuanzhong@3x.png
new file mode 100644
index 0000000..a03a737
Binary files /dev/null and a/imgs/nvxuanzhong@3x.png differ
diff --git b/imgs/pingjiabeijing@3x.png a/imgs/pingjiabeijing@3x.png
new file mode 100644
index 0000000..351c003
Binary files /dev/null and a/imgs/pingjiabeijing@3x.png differ
diff --git b/imgs/qdongtupian@3x.png a/imgs/qdongtupian@3x.png
new file mode 100644
index 0000000..3634153
Binary files /dev/null and a/imgs/qdongtupian@3x.png differ
diff --git b/imgs/qipaiyouxi@3x.png a/imgs/qipaiyouxi@3x.png
new file mode 100644
index 0000000..1214d7b
Binary files /dev/null and a/imgs/qipaiyouxi@3x.png differ
diff --git b/imgs/renzhnegbeijing@3x.png a/imgs/renzhnegbeijing@3x.png
new file mode 100644
index 0000000..9b09bf5
Binary files /dev/null and a/imgs/renzhnegbeijing@3x.png differ
diff --git b/imgs/santai@3x.png a/imgs/santai@3x.png
new file mode 100644
index 0000000..eec2eba
Binary files /dev/null and a/imgs/santai@3x.png differ
diff --git b/imgs/scan.png a/imgs/scan.png
new file mode 100644
index 0000000..c29cb04
Binary files /dev/null and a/imgs/scan.png differ
diff --git b/imgs/shaixuanweixuanzhong@3x.png a/imgs/shaixuanweixuanzhong@3x.png
new file mode 100644
index 0000000..6ae5cd6
Binary files /dev/null and a/imgs/shaixuanweixuanzhong@3x.png differ
diff --git b/imgs/shaixuanxuanzhong@3x.png a/imgs/shaixuanxuanzhong@3x.png
new file mode 100644
index 0000000..6e4143d
Binary files /dev/null and a/imgs/shaixuanxuanzhong@3x.png differ
diff --git b/imgs/shangjiaanniu1@3x.png a/imgs/shangjiaanniu1@3x.png
new file mode 100644
index 0000000..5c07da3
Binary files /dev/null and a/imgs/shangjiaanniu1@3x.png differ
diff --git b/imgs/shangjiabohui@3x.png a/imgs/shangjiabohui@3x.png
new file mode 100644
index 0000000..07ffda5
Binary files /dev/null and a/imgs/shangjiabohui@3x.png differ
diff --git b/imgs/shangjiadianpuxiangpian@3x.png a/imgs/shangjiadianpuxiangpian@3x.png
new file mode 100644
index 0000000..7c64135
Binary files /dev/null and a/imgs/shangjiadianpuxiangpian@3x.png differ
diff --git b/imgs/shangjiatuiguang@3x.png a/imgs/shangjiatuiguang@3x.png
new file mode 100644
index 0000000..4b45b5f
Binary files /dev/null and a/imgs/shangjiatuiguang@3x.png differ
diff --git b/imgs/shangjiaxinxi@3x.png a/imgs/shangjiaxinxi@3x.png
new file mode 100644
index 0000000..380b813
Binary files /dev/null and a/imgs/shangjiaxinxi@3x.png differ
diff --git b/imgs/shangjiazhongxin@3x.png a/imgs/shangjiazhongxin@3x.png
new file mode 100644
index 0000000..17cb684
Binary files /dev/null and a/imgs/shangjiazhongxin@3x.png differ
diff --git b/imgs/shangpinlibeiao@3x.png a/imgs/shangpinlibeiao@3x.png
new file mode 100644
index 0000000..da53274
Binary files /dev/null and a/imgs/shangpinlibeiao@3x.png differ
diff --git b/imgs/shenaghudenglubeijing@3x.png a/imgs/shenaghudenglubeijing@3x.png
new file mode 100644
index 0000000..194d888
Binary files /dev/null and a/imgs/shenaghudenglubeijing@3x.png differ
diff --git b/imgs/shenfenhzhengfanmian@3x.png a/imgs/shenfenhzhengfanmian@3x.png
new file mode 100644
index 0000000..9f4040b
Binary files /dev/null and a/imgs/shenfenhzhengfanmian@3x.png differ
diff --git b/imgs/shenfenzhnegzhengmian@3x.png a/imgs/shenfenzhnegzhengmian@3x.png
new file mode 100644
index 0000000..0b0ab89
Binary files /dev/null and a/imgs/shenfenzhnegzhengmian@3x.png differ
diff --git b/imgs/shiyongshuoming@3x.png a/imgs/shiyongshuoming@3x.png
new file mode 100644
index 0000000..75c24e3
Binary files /dev/null and a/imgs/shiyongshuoming@3x.png differ
diff --git b/imgs/shoujihao@3x.png a/imgs/shoujihao@3x.png
new file mode 100644
index 0000000..e96677d
Binary files /dev/null and a/imgs/shoujihao@3x.png differ
diff --git b/imgs/shouye@3x.png a/imgs/shouye@3x.png
new file mode 100644
index 0000000..0f164e1
Binary files /dev/null and a/imgs/shouye@3x.png differ
diff --git b/imgs/shouyebanner.png a/imgs/shouyebanner.png
new file mode 100644
index 0000000..dd7c0e9
Binary files /dev/null and a/imgs/shouyebanner.png differ
diff --git b/imgs/shouyebanner@2x.png a/imgs/shouyebanner@2x.png
new file mode 100644
index 0000000..c789b3b
Binary files /dev/null and a/imgs/shouyebanner@2x.png differ
diff --git b/imgs/shouyebanner@3x.png a/imgs/shouyebanner@3x.png
new file mode 100644
index 0000000..0554c7b
Binary files /dev/null and a/imgs/shouyebanner@3x.png differ
diff --git b/imgs/shouyeweixuanzhong@3x.png a/imgs/shouyeweixuanzhong@3x.png
new file mode 100644
index 0000000..3a36b2e
Binary files /dev/null and a/imgs/shouyeweixuanzhong@3x.png differ
diff --git b/imgs/tiaojiushi.png a/imgs/tiaojiushi.png
new file mode 100644
index 0000000..24618be
Binary files /dev/null and a/imgs/tiaojiushi.png differ
diff --git b/imgs/tiaojiushi@3x.png a/imgs/tiaojiushi@3x.png
new file mode 100644
index 0000000..acbc848
Binary files /dev/null and a/imgs/tiaojiushi@3x.png differ
diff --git b/imgs/tigongcanshi@3x.png a/imgs/tigongcanshi@3x.png
new file mode 100644
index 0000000..858f52e
Binary files /dev/null and a/imgs/tigongcanshi@3x.png differ
diff --git b/imgs/tijiao@3x.png a/imgs/tijiao@3x.png
new file mode 100644
index 0000000..21fd0e9
Binary files /dev/null and a/imgs/tijiao@3x.png differ
diff --git b/imgs/tuangoubeijing@3x.png a/imgs/tuangoubeijing@3x.png
new file mode 100644
index 0000000..6167b30
Binary files /dev/null and a/imgs/tuangoubeijing@3x.png differ
diff --git b/imgs/tuiyuan@3x.png a/imgs/tuiyuan@3x.png
new file mode 100644
index 0000000..4206635
Binary files /dev/null and a/imgs/tuiyuan@3x.png differ
diff --git b/imgs/tuiyuanxuanzong@3x.png a/imgs/tuiyuanxuanzong@3x.png
new file mode 100644
index 0000000..0812e2b
Binary files /dev/null and a/imgs/tuiyuanxuanzong@3x.png differ
diff --git b/imgs/tupianj@3x.png a/imgs/tupianj@3x.png
new file mode 100644
index 0000000..62c50e4
Binary files /dev/null and a/imgs/tupianj@3x.png differ
diff --git b/imgs/wode@3x.png a/imgs/wode@3x.png
new file mode 100644
index 0000000..262b832
Binary files /dev/null and a/imgs/wode@3x.png differ
diff --git b/imgs/wodexuanzhong@3x.png a/imgs/wodexuanzhong@3x.png
new file mode 100644
index 0000000..14c22b3
Binary files /dev/null and a/imgs/wodexuanzhong@3x.png differ
diff --git b/imgs/woman.png a/imgs/woman.png
new file mode 100644
index 0000000..a26f015
Binary files /dev/null and a/imgs/woman.png differ
diff --git b/imgs/xiaoliangweixuanzhong.png a/imgs/xiaoliangweixuanzhong.png
new file mode 100644
index 0000000..d691666
Binary files /dev/null and a/imgs/xiaoliangweixuanzhong.png differ
diff --git b/imgs/xiaoliangweixuanzhong@2x.png a/imgs/xiaoliangweixuanzhong@2x.png
new file mode 100644
index 0000000..d37b94d
Binary files /dev/null and a/imgs/xiaoliangweixuanzhong@2x.png differ
diff --git b/imgs/xiaoliangweixuanzhong@3x.png a/imgs/xiaoliangweixuanzhong@3x.png
new file mode 100644
index 0000000..fd21669
Binary files /dev/null and a/imgs/xiaoliangweixuanzhong@3x.png differ
diff --git b/imgs/xiaoliangxuanzhong@3x.png a/imgs/xiaoliangxuanzhong@3x.png
new file mode 100644
index 0000000..84b7444
Binary files /dev/null and a/imgs/xiaoliangxuanzhong@3x.png differ
diff --git b/imgs/xingxing_n.png a/imgs/xingxing_n.png
new file mode 100644
index 0000000..a6d6ed4
Binary files /dev/null and a/imgs/xingxing_n.png differ
diff --git b/imgs/xingxing_y.png a/imgs/xingxing_y.png
new file mode 100644
index 0000000..cc3a456
Binary files /dev/null and a/imgs/xingxing_y.png differ
diff --git b/imgs/xiugaimima@3x.png a/imgs/xiugaimima@3x.png
new file mode 100644
index 0000000..13e4278
Binary files /dev/null and a/imgs/xiugaimima@3x.png differ
diff --git b/imgs/xuanzhong@3x.png a/imgs/xuanzhong@3x.png
new file mode 100644
index 0000000..21be02d
Binary files /dev/null and a/imgs/xuanzhong@3x.png differ
diff --git b/imgs/yanzhengam@3x.png a/imgs/yanzhengam@3x.png
new file mode 100644
index 0000000..8c228f4
Binary files /dev/null and a/imgs/yanzhengam@3x.png differ
diff --git b/imgs/yes.png a/imgs/yes.png
new file mode 100644
index 0000000..30a3e89
Binary files /dev/null and a/imgs/yes.png differ
diff --git b/imgs/yiqilaiba@3x.png a/imgs/yiqilaiba@3x.png
new file mode 100644
index 0000000..7450df8
Binary files /dev/null and a/imgs/yiqilaiba@3x.png differ
diff --git b/imgs/yiquxiao@3x.png a/imgs/yiquxiao@3x.png
new file mode 100644
index 0000000..01f02ca
Binary files /dev/null and a/imgs/yiquxiao@3x.png differ
diff --git b/imgs/yizhifu@3x.png a/imgs/yizhifu@3x.png
new file mode 100644
index 0000000..d616acf
Binary files /dev/null and a/imgs/yizhifu@3x.png differ
diff --git b/imgs/yonghuduanbeijing.png a/imgs/yonghuduanbeijing.png
new file mode 100644
index 0000000..60d99cb
Binary files /dev/null and a/imgs/yonghuduanbeijing.png differ
diff --git b/imgs/yonghushouyedenglubiejing@3x.png a/imgs/yonghushouyedenglubiejing@3x.png
new file mode 100644
index 0000000..4fd6cec
Binary files /dev/null and a/imgs/yonghushouyedenglubiejing@3x.png differ
diff --git b/imgs/youhuishezhi@3x.png a/imgs/youhuishezhi@3x.png
new file mode 100644
index 0000000..63b16e3
Binary files /dev/null and a/imgs/youhuishezhi@3x.png differ
diff --git b/imgs/yunyingzhanghao@3x.png a/imgs/yunyingzhanghao@3x.png
new file mode 100644
index 0000000..3f54356
Binary files /dev/null and a/imgs/yunyingzhanghao@3x.png differ
diff --git b/imgs/zhnaghuguanli@3x.png a/imgs/zhnaghuguanli@3x.png
new file mode 100644
index 0000000..c7eb572
Binary files /dev/null and a/imgs/zhnaghuguanli@3x.png differ
diff --git b/imgs/zhongheweuxuanzhong@3x.png a/imgs/zhongheweuxuanzhong@3x.png
new file mode 100644
index 0000000..6b6cbce
Binary files /dev/null and a/imgs/zhongheweuxuanzhong@3x.png differ
diff --git b/imgs/zhonghexuanzhong@3x.png a/imgs/zhonghexuanzhong@3x.png
new file mode 100644
index 0000000..807f33f
Binary files /dev/null and a/imgs/zhonghexuanzhong@3x.png differ
diff --git b/imgs/zhucangbiaoyan@3x.png a/imgs/zhucangbiaoyan@3x.png
new file mode 100644
index 0000000..28edcdc
Binary files /dev/null and a/imgs/zhucangbiaoyan@3x.png differ
diff --git b/imgs/zhucanggeshou@3x.png a/imgs/zhucanggeshou@3x.png
new file mode 100644
index 0000000..6c2a4ec
Binary files /dev/null and a/imgs/zhucanggeshou@3x.png differ
diff --git b/imgs/zuduixinxi@3x.png a/imgs/zuduixinxi@3x.png
new file mode 100644
index 0000000..aa81e32
Binary files /dev/null and a/imgs/zuduixinxi@3x.png differ
diff --git b/pages/apply_yes/apply_yes.js a/pages/apply_yes/apply_yes.js
new file mode 100644
index 0000000..f551b3d
--- /dev/null
+++ a/pages/apply_yes/apply_yes.js
@@ -0,0 +1,66 @@
+// pages/apply_yes/apply_yes.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 b/pages/apply_yes/apply_yes.json a/pages/apply_yes/apply_yes.json
new file mode 100644
index 0000000..24ad82a
--- /dev/null
+++ a/pages/apply_yes/apply_yes.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "申请成功"}
\ No newline at end of file
diff --git b/pages/apply_yes/apply_yes.wxml a/pages/apply_yes/apply_yes.wxml
new file mode 100644
index 0000000..8e7731a
--- /dev/null
+++ a/pages/apply_yes/apply_yes.wxml
@@ -0,0 +1,10 @@
+<!--pages/apply_yes/apply_yes.wxml-->
+<view class='line'></view>
+<view class='apply_yesbox'>
+ <view class='apply_yesimg'>
+  <image src='../../imgs/baomingchenggong@3x.png'></image>
+ </view>
+ <view>报名成功啦!!</view>
+ <view class='apply_subtitle'>队长审核中···</view>
+</view>
+<view class='client_btn '>继续报名</view>
\ No newline at end of file
diff --git b/pages/apply_yes/apply_yes.wxss a/pages/apply_yes/apply_yes.wxss
new file mode 100644
index 0000000..fa4a0b8
--- /dev/null
+++ a/pages/apply_yes/apply_yes.wxss
@@ -0,0 +1,26 @@
+/* pages/apply_yes/apply_yes.wxss */
+@import '/pages/client_pay/client_pay.wxss';
+.apply_yesbox{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ color:#fff;
+ font-size:46rpx;
+}
+.apply_yesimg{
+ margin: 250rpx auto 46rpx auto;
+ width:230rpx;
+ height: 230rpx;
+ overflow: auto;
+}
+.apply_yesimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.apply_subtitle{
+ margin: 17rpx 0 80rpx 0;
+ color:rgba(255,255,255,0.8);
+ font-size:26rpx;
+}
\ No newline at end of file
diff --git b/pages/bar_detail/bar_detail.js a/pages/bar_detail/bar_detail.js
new file mode 100644
index 0000000..31ef7e3
--- /dev/null
+++ a/pages/bar_detail/bar_detail.js
@@ -0,0 +1,100 @@
+// pages/bar_detail/bar_detail.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  bartrue: true,
+  showplay: true,
+  choosetime: '18:00',
+  evaluatestate: true
+ },
+ setshowplayno() {
+  this.setData({
+   showplay: false
+  })
+ },
+ voidfun() {
+
+ },
+ gofacility() {
+  let that = this;
+  wx.navigateTo({
+   url: '/pages/facility/facility',
+  })
+
+ },
+ bindChangetime(e) {
+  console.log(e);
+  this.setData({
+   choosetime: e.detail.value
+  })
+
+ },
+ hidebartrue() {
+  this.setData({
+   bartrue: false
+  })
+ },
+ showbartrue() {
+  this.setData({
+   bartrue: true
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/bar_detail/bar_detail.json a/pages/bar_detail/bar_detail.json
new file mode 100644
index 0000000..f57bac9
--- /dev/null
+++ a/pages/bar_detail/bar_detail.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "酒吧详情"}
\ No newline at end of file
diff --git b/pages/bar_detail/bar_detail.wxml a/pages/bar_detail/bar_detail.wxml
new file mode 100644
index 0000000..f8513ce
--- /dev/null
+++ a/pages/bar_detail/bar_detail.wxml
@@ -0,0 +1,208 @@
+<!--pages/bar_detail/bar_detail.wxml-->
+<view wx:if='{{bartrue}}'>
+<view class='formbox'>
+ <view class='order_img' bindtap='gofacility'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>评价4.8</view>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'>
+    <text class='jian_txt'> 减</text>
+   </view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+ <view class='formitem center_formitem'>
+  9:00至凌晨3:00营业
+  <text class='iconfont icon-right'></text>
+ </view>
+ <navigator class='formitem' hover-class="none" url='/pages/location/location'>
+  <view>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>距地铁10号线国贸站C口215米</view>
+ </navigator>
+</view>
+<view class='line'></view>
+<view class='account_title'>组队信息</view>
+<view class='account_subtitle'>Team information</view>
+<!-- plaza_active -->
+<navigator class='team_user plaza_user' url='/pages/form/form' hover-class='navigator_hover' wx:for='{{[1,1,1]}}' wx:key>
+ <view class='team_left'>
+  <view class='teamimg'>
+   <image src='../../imgs/goods.png'></image>
+  </view>
+  <view>张三</view>
+ </view>
+ <view class='team_center'>
+  <view>组队人数3人</view>
+  <view>预算金额1000元</view>
+ </view>
+ <view class='team_rigth'>去组队></view>
+</navigator>
+<view class='more_txt'>更多</view>
+<view class='team_box'>
+ <view class='account_title'>套餐专区</view>
+ <view class='account_subtitle'>Dinner party</view>
+ <swiper class='detail_nav ' display-multiple-items='3'>
+  <swiper-item wx:for='{{[1,1,1,1,1]}}' wx:key>
+   <navigator class="detail_navcell  detail_navcell{{index}}" url='/pages/taocan_detail/taocan_detail' hover-class="none">
+    <view>普通套餐</view>
+    <view class='detail_centertxt'>小卡座+6瓶饮料+果盘...</view>
+    <view class='detail_nimis'>¥
+     <text class='bix'>98.</text>00</view>
+   </navigator>
+  </swiper-item>
+
+ </swiper>
+</view>
+<view class='team_box'>
+ <view class='account_title'>选择卡座</view>
+ <view class='account_subtitle'>Choice of goods</view>
+ <view class='accont_choosebox'>
+  <picker mode="date" bindchange="bindChangetime" class='accont_chooseboxleft'>
+   <view>时间</view>
+   <view>
+    <view class='choose_time'>{{choosetime}}</view>
+    <view class='choose_minitime'>
+     <text class='iconfont icon-xiangxia'></text>
+    </view>
+   </view>
+  </picker>
+
+
+  <view class='accont_chooseboxrigth'>
+   <swiper circular='true' vertical='true' display-multiple-items='2'>
+   <swiper-item wx:for='{{[1,1,1,1]}}' wx:key>
+    <navigator  hover-class="none" bindtap='hidebartrue'>
+    <view class='accont_chooseboxitem'>散台(2-8人)
+     <text class='chooseboxitem'>最低消费500元</text>
+    </view>
+    </navigator>
+    </swiper-item>
+   
+    </swiper>
+  </view>
+
+ </view>
+</view>
+<swiper class='goodsmain_item' display-multiple-items='5'>
+ <swiper-item wx:for='{{[1,1,1,1,1,1,1,1]}}' wx:key>
+  <view class='goods_cell'>
+  <view class='goods_cell_num'>1</view>
+   <view class='goods_cellimg'>
+    <image src='../../../imgs/goods.png'></image>
+   </view>
+   <view class='goods_celltip'>百威啤酒</view>
+   <view class='goods_cellnum'>
+    <view>¥
+     <text class='goods_nini'>30</text>.00</view>
+    <view class='iconfont icon-jia2'></view>
+   </view>
+  </view>
+ </swiper-item>
+</swiper>
+<view class='account_title'>用户评价</view>
+<view class='account_subtitle'>User evaluation</view>
+<view class='tuanguo_tap'>
+ <view class='tuantop_item tuantop_item2'>
+  <text class="iconfont {{evaluatestate?'icon-charutupian':'icon-tupian1'}}"></text> 晒图(12)</view>
+ <view class='tuantop_item tuantop_item1'>
+  <text class="iconfont {{evaluatestate?'icon-xiaoxi':'icon-xiaoxi1'}}"></text> 差评(12)</view>
+ <view class='tuantop_item '>
+  <text class="iconfont {{evaluatestate?'icon-xin':'icon-xin1'}}"></text> 好评(12)</view>
+</view>
+<navigator class='assess_item' hover-class='navigator_hover' url='/pages/evaluate/evaluate' wx:for='{{[1,1]}}' wx:key>
+ <view class='assess_itemletf'>
+  <view class='assess_itemhead'>
+   <image src='../../imgs/head.png'></image>
+  </view>
+  <view>听海的声音</view>
+ </view>
+ <view class='assess_itemrigth'>
+  <image src='../../imgs/pingjiabeijing@3x.png'></image>
+  <view class='assess_itemrigthtxt'>
+   <view class='assess_itemrigthtime'>2018-09-18</view>
+   <view class='assess_itemrigthimg'>
+    <image src='../../imgs/food.png'></image>
+   </view>
+   <view>
+    <view class='asssessbottom'>
+     <view class='asssessbottomtxt'>感觉不错...</view>
+     <view class='startbox'>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+     </view>
+    </view>
+   </view>
+  </view>
+ </view>
+</navigator>
+<view class='client_btn'>组队购买</view>
+<view class='client_btn'>支付金额</view>
+
+<view class='play_mold' wx:if='{{showplay}}' bindtap='setshowplayno'>
+ <view class='play_main' catchtap='voidfun'>
+  <view class='play_img'>
+   <image src='../../imgs/huodotupian@3x.png'></image>
+  </view>
+  <view class='client_btn play_btn' catchtap='setshowplayno'>关闭</view>
+ </view>
+
+</view>
+</view>
+
+<view wx:else>
+<view class='line'></view>
+ <view class='account_title choosebox'>预订卡座</view>
+ <view class='account_subtitle'>Reservation card seat</view>
+ <view class='choose_item'>
+   <view class='choose_main'>
+   <view>散台(2~8人)</view>
+   <view>最低消费500元</view>
+   </view>
+   <view class='choose_main choose_mainbuttom'>
+   <view>选择到店时间</view>
+   <view class='choose_nav'>19:30 <text class='iconfont icon-xiangxia'></text></view>
+   </view>
+ </view>
+  <view class='choose_item'>
+   <view class='choose_main'>
+   <view>手机号码</view>
+   <view><input placeholder='请输入手机号'></input></view>
+   </view>
+   <view class='choose_main choose_mainbuttom'>
+   <view>姓名</view>
+   <view ><input placeholder='请输入您的姓名'></input></view>
+   </view>
+   <view class='choose_sex'>
+   <view class='iconfont icon-xingbie-nan sex_active'></view>
+   <view class='iconfont icon-xingbie-nv'></view>
+   </view>
+ </view>
+ <view class='choose_remark'>
+ <view class='remark_txt'>备注</view>
+ <view class='remarkmian'>
+ <textarea placeholder='商家可能跟您联系确认信息' placeholder-class='text_p'></textarea>
+ </view>
+ </view>
+ <view class='client_btn' bindtap='showbartrue'>确定选择</view>
+</view>
\ No newline at end of file
diff --git b/pages/bar_detail/bar_detail.wxss a/pages/bar_detail/bar_detail.wxss
new file mode 100644
index 0000000..0af5b04
--- /dev/null
+++ a/pages/bar_detail/bar_detail.wxss
@@ -0,0 +1,225 @@
+/* pages/bar_detail/bar_detail.wxss */
+@import '/pages/form/form.wxss';
+@import '/pages/plaza/plaza.wxss';
+@import '/pages/taocan_detail/taocan_detail.wxss';
+
+swiper{
+ height: 140rpx;
+}
+.detail_nav{
+ padding:30rpx 27rpx;
+ background: #041B30;
+ display: flex;
+ align-items: center;
+ justify-content: space-around;
+ 
+}
+.detail_navcell{
+margin: 0 20rpx;
+background:  linear-gradient(45deg, #2180BC, #5F4E8F,#A01A5F,#B91739);  
+/* height: 120rpx !important; */
+padding:10rpx;
+width:210rpx !important;
+box-sizing: border-box;
+border-radius: 8rpx;
+color:rgba(255,255,255,0.7);
+font-size:28rpx;
+overflow: hidden;
+}
+.detail_navcell:active{
+ opacity: 0.7;
+}
+.detail_navcell1{
+ background:  linear-gradient(45deg, #F08729, #DE4E57,#D43C68,#AD2C82);
+}
+.detail_navcell2{
+ background:  linear-gradient(45deg, #34BEB6, #27BAD4,#2F90C9,#3F63AD);
+}
+.detail_centertxt{
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ font-size:21rpx;
+}
+.detail_nimis{
+ text-align: right;
+ font-size:21rpx;
+}
+.detail_nimis .bix{
+ font-size:28rpx;
+}
+.accont_choosebox{
+ display: flex;
+ align-items: center;
+ 
+}
+.accont_chooseboxleft{
+ display: flex;
+ justify-content: center;
+ flex-direction: column;
+ height: 160rpx;
+ padding:0 0 0 46rpx;
+ color:rgba(255,255,255,0.7);
+ font-size:28rpx;
+ width:30%;
+ background: linear-gradient(to right, #041D32 , #010F24);
+}
+.accont_chooseboxrigth{
+ width:70%;
+ color:rgba(255,255,255,0.7);
+ font-size:28rpx;
+}
+
+
+.choose_time {
+ margin: 10rpx 0 0 0;
+display:inline-block;
+background:linear-gradient(45deg,  #8E8E8E,#eee); 
+font-size:24rpx;
+color:#000;
+font-weight: bold;
+padding:10rpx 10rpx;
+}
+.choose_minitime {
+display:inline-block;
+margin:0 0 0 10rpx;
+padding:10rpx 2rpx;
+background:linear-gradient(45deg, #8E8E8E,#eee); 
+font-size:24rpx;
+color:#000;
+}
+.choose_minitime .iconfont {
+color:#000;
+margin:0;
+font-size:20rpx;
+
+}
+.accont_chooseboxitem{
+ margin: 0 0 10rpx 0;
+ padding:23rpx 30rpx;
+ background: linear-gradient(to right, #041D32 , #010F24);
+}
+.chooseboxitem{
+ color:rgba(255,255,255,0.4);
+ font-size:22rpx;
+}
+.goodsmain_item{
+ padding:0 27rpx 27rpx 27rpx;
+ display: flex;
+ align-items: center;
+ background: linear-gradient(to right, #041D32 , #010F24);
+ height: 230rpx;
+}
+.goods_cellbox{
+ display: flex;
+ align-items: center;
+ border:none;
+}
+.goods_cell{
+ position: relative;
+ width:120rpx;
+ padding:40rpx 0 0 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+.goods_cell_num{
+ position: absolute;
+ top:28rpx;
+ right: -5rpx;
+ z-index:10;
+ min-width:30rpx;
+ min-height: 30rpx;
+ background: red;
+ color:#fff;
+ font-size:22rpx;
+ border-radius: 50%;
+ overflow: hidden;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.goods_cellimg{
+ width:100rpx;
+ height: 100rpx;
+ border-radius: 8rpx;
+ overflow: hidden;
+}
+.goods_cellimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+ border-radius: 8rpx;
+}
+.goods_celltip{
+ margin: 6rpx 0 14rpx 0;
+ border-radius: 8rpx;
+ color:#9E9E9F;
+ font-size:17rpx;
+ padding:0 10rpx;
+ border:1rpx solid #9E9E9F; 
+}
+.goods_cellnum{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ width:100rpx;
+ color:#9E9E9F;
+ font-size:17rpx;
+}
+.goods_nini{
+ font-size:24rpx;
+}
+ 
+.goods_cellnum .iconfont{
+ font-size:20rpx;
+ color:#fff;
+ border-radius: 50%;
+ padding:5prx;
+ background: linear-gradient(to right, #BD1731 , #6A4587,#247DBA);
+}
+.play_mold{
+
+ position: fixed;
+ width:100%;
+ height: 100%;
+ top:50%;
+ left:50%;
+ transform: translate(-50%,-50%);
+ background: rgba(255,255,255,0.2);
+ z-index:100;
+ display: flex;
+ /* display: none; */
+ align-items: center;
+ justify-content: center;
+}
+.play_main{
+ width:380rpx;
+ height: 590rpx;
+ border-radius: 10rpx;
+ background: linear-gradient(180deg, #354F8D, #36BFB3);
+ padding:16rpx;
+}
+.play_img{
+ height: 500rpx;
+ width:100%;
+}
+.play_img image{
+ width:100%;
+ height: 100%;
+ display: block;
+
+}
+.play_btn{
+ width:100%;
+ margin: 20rpx 0 0 0;
+}
+.more_txt{
+ color:#fff;
+ padding:20rpx;
+ text-align: center;
+ font-size:26rpx;
+ background: linear-gradient(to right, #041D32 , #010F24);
+ margin: 10rpx 0;
+}
+@import '/pages/choose_time/choose_time.wxss';
\ No newline at end of file
diff --git b/pages/choose_time/choose_time.js a/pages/choose_time/choose_time.js
new file mode 100644
index 0000000..aeec2f3
--- /dev/null
+++ a/pages/choose_time/choose_time.js
@@ -0,0 +1,70 @@
+// pages/choose_time/choose_time.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ gozudui_pay() {
+  wx.navigateTo({
+   url: '/pages/zudui_pay/zudui_pay',
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/choose_time/choose_time.json a/pages/choose_time/choose_time.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/choose_time/choose_time.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/choose_time/choose_time.wxml a/pages/choose_time/choose_time.wxml
new file mode 100644
index 0000000..4d3f52d
--- /dev/null
+++ a/pages/choose_time/choose_time.wxml
@@ -0,0 +1,36 @@
+<!--pages/choose_time/choose_time.wxml-->
+<view class='line'></view>
+ <view class='account_title choosebox'>预订卡座</view>
+ <view class='account_subtitle'>Reservation card seat</view>
+ <view class='choose_item'>
+   <view class='choose_main'>
+   <view>散台(2~8人)</view>
+   <view>最低消费500元</view>
+   </view>
+   <view class='choose_main choose_mainbuttom'>
+   <view>选择到店时间</view>
+   <view class='choose_nav'>19:30 <text class='iconfont icon-xiangxia'></text></view>
+   </view>
+ </view>
+  <view class='choose_item'>
+
+   <view class='choose_main'>
+   <view>手机号码</view>
+   <view><input placeholder='请输入手机号'></input></view>
+   </view>
+   <view class='choose_main choose_mainbuttom'>
+   <view>姓名</view>
+   <view ><input placeholder='请输入您的姓名'></input></view>
+   </view>
+   <view class='choose_sex'>
+   <view class='iconfont icon-xingbie-nan sex_active'></view>
+   <view class='iconfont icon-xingbie-nv'></view>
+   </view>
+ </view>
+ <view class='choose_remark'>
+ <view class='remark_txt'>备注</view>
+ <view class='remarkmian'>
+ <textarea placeholder='商家可能跟您联系确认信息' placeholder-class='text_p'></textarea>
+ </view>
+ </view>
+ <view class='client_btn' bindtap='gozudui_pay'>确定选择</view>
diff --git b/pages/choose_time/choose_time.wxss a/pages/choose_time/choose_time.wxss
new file mode 100644
index 0000000..48a0114
--- /dev/null
+++ a/pages/choose_time/choose_time.wxss
@@ -0,0 +1,99 @@
+/* pages/choose_time/choose_time.wxss */
+@import '/pages/my_account/my_account.wxss';
+page{
+ background: #031A2F;
+}
+.choosebox{
+ margin: 47rpx 0 0 0;
+ color:rgba(255,255,255,0.8);
+}
+.choose_item{
+ position: relative;
+ background:linear-gradient(to right, #041D32 , #010F24);
+ margin: 0 0 40rpx 0;
+ padding:20rpx 27rpx;
+ font-size:26rpx;
+ color:rgba(255,255,255,0.6);
+}
+.choose_main{
+ width:60%;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+.choose_nav{
+ display: flex;
+ width:130rpx;
+ justify-content: space-between;
+ align-items: center;
+ color:rgba(0,0,0,0.3);
+ background: #D5D6D6;
+ border-radius: 5rpx;
+ font-size:25rpx;
+ padding:0 15rpx;
+}
+.choose_nav .iconfont{
+ color: #000;
+ font-size:23rpx;
+}
+.choose_mainbuttom{
+ margin: 30rpx 0 0 0;
+}
+.choose_sex{
+ display: flex;
+ 
+ align-items: center;
+ justify-content: space-between;
+ position: absolute;
+ right: 100rpx;
+ bottom:20rpx;
+}
+.choose_sex .iconfont{
+ margin: 0 30rpx 0 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding:6rpx 26rpx;
+ background: #fff;
+ border-radius: 10rpx;
+ color:rgba(0,0,0,0.3);
+ font-size:24rpx;
+
+}
+.choose_sex .sex_active{
+ background: linear-gradient(to right, #C31727 , #892D71,#1F81BE);
+ color:rgba(255,255,255,0.8);
+}
+.choose_remark{
+ position: relative;
+ margin: 40rpx 0 100rpx 0;
+ padding:30rpx 40rpx 80rpx 122rpx;
+ background: #041C31;
+ color:rgba(255,255,255,0.6);
+ font-size:26rpx;
+ 
+}
+.remark_txt{
+ position: absolute;
+ z-index:10;
+ top:20rpx;
+ left:27rpx;
+ color:rgba(255,255,255,0.6);
+ font-size: 26rpx;
+}
+.remarkmian{
+ background: #4E5A68;
+ 
+ height: 300rpx;
+}
+.remarkmian textarea{
+ width:100%;
+ height: 100%;
+ padding:14rpx 20rpx;
+ color:rgba(255,255,255,0.8);
+ font-size:26rpx;
+}
+.text_p{
+  color:rgba(255,255,255,0.8);
+ font-size:26rpx;
+}
\ No newline at end of file
diff --git b/pages/client_pay/client_pay.js a/pages/client_pay/client_pay.js
new file mode 100644
index 0000000..6c8a8db
--- /dev/null
+++ a/pages/client_pay/client_pay.js
@@ -0,0 +1,66 @@
+// pages/client_pay/client_pay.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 b/pages/client_pay/client_pay.json a/pages/client_pay/client_pay.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/client_pay/client_pay.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/client_pay/client_pay.wxml a/pages/client_pay/client_pay.wxml
new file mode 100644
index 0000000..16b6137
--- /dev/null
+++ a/pages/client_pay/client_pay.wxml
@@ -0,0 +1,17 @@
+<!--pages/client_pay/client_pay.wxml-->
+<view class='line'></view>
+
+<view class='client_payitembox'>
+<view class='client_payitem'>
+<view>余额抵扣(2.00元)</view>
+<view class='iconfont icon-duigou1'></view>
+</view>
+<view class='client_payitem'>
+<view>微信支付</view>
+<view>支付金额¥16</view>
+</view>
+</view>
+<view class='pay_all'>
+合计 <text class='pay_num'>¥18.00</text>
+</view>
+<view class='client_btn client_btns'>确定付款</view>
diff --git b/pages/client_pay/client_pay.wxss a/pages/client_pay/client_pay.wxss
new file mode 100644
index 0000000..8a48ddf
--- /dev/null
+++ a/pages/client_pay/client_pay.wxss
@@ -0,0 +1,39 @@
+/* pages/client_pay/client_pay.wxss */
+page{
+ background: #021328;
+}
+.client_payitembox{
+ margin: 40rpx 0 0 0;
+}
+.client_payitem{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background: #03192E;
+ padding:20rpx 27rpx 20rpx 27rpx;
+ color: rgba(255,255,255,0.8);
+ font-size:26rpx;
+}
+.client_payitem .iconfont{
+ color:#fff;
+}
+.pay_all{
+ margin: 40rpx 0 0 0;
+ background: #03192E;
+ color: rgba(255,255,255,0.8);
+ font-size:36rpx;
+ text-align: right;
+ height: 60rpx;
+ line-height: 60rpx;
+ padding:0 27rpx;
+}
+.pay_num{
+ margin: 0 0 0 30rpx;
+ font-size:26rpx;
+}
+.client_btns{
+ position: absolute;
+ bottom:200rpx;
+ left:27rpx;
+
+}
\ No newline at end of file
diff --git b/pages/evaluate/evaluate.js a/pages/evaluate/evaluate.js
new file mode 100644
index 0000000..7cdd2a5
--- /dev/null
+++ a/pages/evaluate/evaluate.js
@@ -0,0 +1,89 @@
+// pages/evaluate/evaluate.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  posi: -1,//评分的结束索引,实际从0开始,-1表示无评分,0为一颗星
+  stars: ['../../imgs/xingxing_n.png', '../../imgs/xingxing_n.png', '../../imgs/xingxing_n.png', '../../imgs/xingxing_n.png','../../imgs/xingxing_n.png'],//评分描述配置
+  text:''
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ setstars(e){
+  let that=this;
+  let posi = parseInt(e.currentTarget.dataset.index);
+  let stars = that.data.stars;
+  for (let i = 0; i<stars.length;i++){
+   if (i <= posi){
+    stars[i] ='../../imgs/xingxing_y.png';
+   }else{
+    stars[i] = '../../imgs/xingxing_n.png'
+   }
+  }
+  that.setData({
+   posi: posi,
+   stars: stars
+  })
+ },
+ settext(e){
+  this.setData({
+   text:e.detail.value
+  })
+
+ },
+ 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 b/pages/evaluate/evaluate.json a/pages/evaluate/evaluate.json
new file mode 100644
index 0000000..f397b6a
--- /dev/null
+++ a/pages/evaluate/evaluate.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "评价"
+}
\ No newline at end of file
diff --git b/pages/evaluate/evaluate.wxml a/pages/evaluate/evaluate.wxml
new file mode 100644
index 0000000..45ea807
--- /dev/null
+++ a/pages/evaluate/evaluate.wxml
@@ -0,0 +1,35 @@
+<!--pages/evaluate/evaluate.wxml-->
+<view class='line'></view>
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'><text class='jian_txt'> 减</text></view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+</view>
+
+<view class='startbox'>
+ <view class='start' wx:for='{{stars}}' wx:key="" data-index='{{index}}' bindtap='setstars'>
+  <image src='{{item}}'></image>
+ </view>
+</view>
+<view class='evaluatebox'>
+ <view class='evaluatemain'>
+  <textarea placeholder='请输入评价内容' bindinput='settext'></textarea>
+ </view>
+ <view class='imgs'>
+  <view class='img addimg'>
+  <view class='iconfont icon-jia2'></view>
+  <view>添加图片</view>
+  </view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/evaluate/evaluate.wxss a/pages/evaluate/evaluate.wxss
new file mode 100644
index 0000000..c0c6d06
--- /dev/null
+++ a/pages/evaluate/evaluate.wxss
@@ -0,0 +1,74 @@
+/* pages/evaluate/evaluate.wxss */
+@import '/pages/form/form.wxss';
+.formbox{
+ margin: 20rpx 27rpx 0 27rpx;
+ padding:16rpx 0 0 0;
+ border-radius: 8rpx;
+}
+.order_img{
+ border-radius: 0;
+}
+.startbox{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: #fff;
+ border-radius: 8rpx;
+ margin: 20rpx 27rpx 20rpx 27rpx;
+ padding:33rpx 95rpx 54rpx 95rpx;
+}
+.start{
+ margin: 0 15rpx 0 0;
+ width:78rpx;
+ height: 78rpx;
+ overflow: hidden;
+}
+.start image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.evaluatebox{
+ border-radius: 8rpx;
+ margin: 0 27rpx 60rpx 27rpx;
+ background: #fff;
+ padding:33rpx 60rpx 33rpx 60rpx;
+ color:#999;
+ font-size:24rpx;
+}
+.evaluatemain{
+ height: 300rpx;
+}
+.evaluatemain textarea{
+height: 100%;
+width:100%;
+
+}
+.imgs{
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+}
+.img{
+ width:120rpx;
+ height: 120rpx;
+ border-radius: 8rpx;
+ background: #F2F2F2;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ overflow: hidden;
+}
+.img .iconfont{
+ font-size:77rpx;
+}
+.img image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+ .addimg{
+  padding:10rpx;
+  color:#CCCCCC;
+ }
diff --git b/pages/facility/facility.js a/pages/facility/facility.js
new file mode 100644
index 0000000..fa4626c
--- /dev/null
+++ a/pages/facility/facility.js
@@ -0,0 +1,66 @@
+// pages/facility/facility.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 b/pages/facility/facility.json a/pages/facility/facility.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/facility/facility.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/facility/facility.wxml a/pages/facility/facility.wxml
new file mode 100644
index 0000000..593b3d3
--- /dev/null
+++ a/pages/facility/facility.wxml
@@ -0,0 +1,88 @@
+<!--pages/facility/facility.wxml-->
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/item.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>评价4.8</view>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'></view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+ <view class='formitem center_formitem'>
+  9:00至凌晨3:00营业
+  <text class='iconfont icon-right'></text>
+ </view>
+ <view class='formitem'>
+  <view>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>距地铁10号线国贸站C口215米</view>
+ </view>
+</view>
+<view class='line'></view>
+<view class='account_title'>店铺照片</view>
+<view class='account_subtitle'>Facilities services</view>
+<view class='imgsbox' wx:for='{{[1,1]}}' wx:key>
+ <view class='imgsbox_item' wx:for='{{[1,1,1]}}' wx:key>
+  <image src='../../imgs/goods.png'></image>
+ </view>
+</view>
+<navigator class='imgs_more' url='/pages/more_imgs/more_imgs' hover-class="none">查看更多></navigator>
+<view class='account_title'>设施服务</view>
+<view class='account_subtitle'>Facilities services</view>
+<view class='facility_item'>
+ <view class='facility_itemleft'>演艺人员</view>
+ <view class='facility_itemrigth'>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>调酒师</view>
+  </view>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>驻场歌手</view>
+  </view>
+ </view>
+</view>
+<view class='facility_item facility_item1'>
+ <view class='facility_itemleft'>设施</view>
+ <view class='facility_itemrigth'>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>40人卡座30个</view>
+  </view>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>40人散台30个</view>
+  </view>
+ </view>
+</view>
+<view class='facility_item facility_item2'>
+ <view class='facility_itemleft'>服务</view>
+ <view class='facility_itemrigth facility_buttomrigth'>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>花式调酒</view>
+  </view>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>提供餐食</view>
+  </view>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>驻场表演</view>
+  </view>
+  <view class='facility_item_cell'>
+   <view class='facilitycellimg'></view>
+   <view>棋牌游戏</view>
+  </view>
+
+
+ </view>
+
+</view>
\ No newline at end of file
diff --git b/pages/facility/facility.wxss a/pages/facility/facility.wxss
new file mode 100644
index 0000000..8447ce9
--- /dev/null
+++ a/pages/facility/facility.wxss
@@ -0,0 +1,63 @@
+/* pages/facility/facility.wxss */
+@import '/pages/form/form.wxss';
+@import '/pages/more_imgs/more_imgs.wxss';
+.account_title{
+ margin: 20rpx 0 0 0;
+}
+.imgs_more{
+ margin: 17rpx 0 30rpx 0;
+ padding:4rpx 0;
+ text-align: center;
+ color:#009FE8;
+ font-size:22rpx;
+ background: linear-gradient(to right, #041C31 , #000B1F); 
+}
+.facility_item{
+ margin: 0 0 40rpx 0;
+ display: flex;
+ align-items: center;
+ font-size:36rpx;
+ padding:30rpx 10rpx 30rpx 40rpx;
+ color:rgba(255,255,255,0.7);
+ background:linear-gradient(to right, #C9171D , #862F73,#386DAC);  
+}
+.facility_itemleft{
+ width:32%;
+}
+.facility_itemrigth{
+ width:50%;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ font-size:22rpx;
+}
+.facility_item_cell{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
+.facilitycellimg{
+ margin: 0 0 4rpx 0;
+ border:1rpx solid #fff;
+ border-radius: 8rpx;
+ width:56rpx;
+ height: 56rpx;
+ display: block;
+ align-items: center;
+ justify-content: center;
+}
+.facilitycellimg image{
+width:100%;
+height: 100%;
+display: block;
+}
+.facility_buttomrigth{
+ width:60%;
+}
+.facility_item1{
+  background:linear-gradient(to right, #A92A85 , #CB386F,#E46347);  
+}
+.facility_item2{
+  background:linear-gradient(to right, #415DAA , #377ABB,#28BAD2);  
+}
\ No newline at end of file
diff --git b/pages/form/form.js a/pages/form/form.js
new file mode 100644
index 0000000..17625b9
--- /dev/null
+++ a/pages/form/form.js
@@ -0,0 +1,80 @@
+// pages/form/form.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ ifhide:false
+ },
+ sethide(){
+  this.setData({
+   ifhide: !this.data.ifhide
+  })
+
+ },
+ yes_btn(){
+  wx.navigateTo({
+   url: '/pages/apply_yes/apply_yes',
+   success: function(res) {},
+   fail: function(res) {},
+   complete: function(res) {},
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/form/form.json a/pages/form/form.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/form/form.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/form/form.wxml a/pages/form/form.wxml
new file mode 100644
index 0000000..c0ef353
--- /dev/null
+++ a/pages/form/form.wxml
@@ -0,0 +1,69 @@
+<!--pages/form/form.wxml-->
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/item.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>评价4.8</view>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'><text class='jian_txt'> 减</text></view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+ <view class='formitem center_formitem'>
+  9:00至凌晨3:00营业
+  <text class='iconfont icon-right'></text>
+ </view>
+ <view class='formitem'>
+  <view>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>距地铁10号线国贸站C口215米</view>
+ </view>
+</view>
+<view class='line'></view>
+<view class='account_title'>队伍信息</view>
+<view class='account_subtitle'>Team information</view>
+<view class='form_info'>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>发起人</view>
+  <view class='form_itemrigth'>张三</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>组队人数</view>
+  <view class='form_itemrigth'>3人</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>预算金额</view>
+  <view class='form_itemrigth'>1000元</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>组队说明</view>
+  <view class='form_itemrigth'>一起组队一起浪</view>
+ </view>
+</view>
+<view class='no_team'>
+<view class='form_infoitem'>
+  <view class='form_itemleft'>隐藏组队</view>
+  <view class='form_itemrigth'>隐藏</view>
+ </view>
+ <!-- <view>隐藏组队</view> -->
+ <view class="team_choose {{ifhide?'team_choose_active':''}}" bindtap='sethide'>
+  <view class='team_chooseyes'></view>
+ </view>
+</view>
+<view class='team_box'>
+ <view class='account_title'>报名队员</view>
+ <view class='account_subtitle'>Enrolment</view>
+ <view class='team_user' wx:for='{{[1,1]}}' wx:key>
+  <view class='teamimg'>
+   <image src='../../imgs/goods.png'></image>
+  </view>
+  <view>张三</view>
+ </view>
+</view>
+<view class='client_btn yes_btn' bindtap='yes_btn'>确定参加</view>
\ No newline at end of file
diff --git b/pages/form/form.wxss a/pages/form/form.wxss
new file mode 100644
index 0000000..83a5ed6
--- /dev/null
+++ a/pages/form/form.wxss
@@ -0,0 +1,162 @@
+/* pages/form/form.wxss */
+@import '/pages/merchant/my_order/my_order.wxss';
+page{
+ background: #010F23;
+}
+.formbox{
+ background: #fff;
+ margin: 0 27rpx 0 27rpx;
+ border-radius: 0 0 10rpx 10rpx;
+}
+.order_img {
+margin:18rpx 0 0 0;
+position:relative;
+height:224rpx;
+border-radius: 8rpx 8rpx 0 0;
+overflow: hidden;
+
+}
+.formitem{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding:6rpx 24rpx 16rpx 24rpx;
+ color:#231815;
+ font-size:22rpx;
+}
+.formitem_rigth{
+ height: 46rpx;
+ display: flex;
+ align-items: center;
+}
+.formitem_rigth_jian{
+ position: relative;
+ margin: 10rpx 20rpx 0 0;
+ width:40rpx;
+ height: 40rpx;
+ display: flex;
+ transform:rotate(45deg);
+ color:#fff;
+ font-size:20rpx;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10rpx;
+background: linear-gradient(0deg,#415DAA, #34BEB5); 
+}
+.formitem_rigth_jian image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.center_formitem{
+ align-items: center;
+ justify-content: center;
+ font-size: 36rpx;
+ font-weight: bold;
+ color:#2CA6E0;
+}
+.center_formitem .iconfont{
+ padding:8rpx 0 0 0;
+ color:#3E3A39;
+ font-size:36rpx;
+}
+.formitem .iconfont{
+ color:#2CA6E0;
+}
+.form_nimi{
+ color:#9E9E9F
+}
+.form_info{
+ position: relative;
+ background: #02152A;
+ padding:10rpx 27rpx;
+ font-size:26rpx;
+ color:rgba(255,255,255,0.8);
+}
+.form_infoitem{
+ width:100%;
+ padding:6rpx 0;
+ display: flex;
+ align-items: center;
+}
+.form_itemleft{
+ width:35%;
+}
+.form_itemrigth{
+ height: 50%;
+ color:rgba(2555,255,255,0.4);
+}
+.team_box{
+ margin: 50rpx 0 60rpx 0;
+}
+.team_user{
+ margin: 0 0 10rpx 0;
+ display: flex;
+ align-items: center;
+ padding:20rpx 16rpx;
+ color:rgba(255,255,255,0.6);
+ font-size: 36rpx;
+ background:linear-gradient(to right, #041D32 , #010F24);
+
+}
+.teamimg{
+ margin: 0 45rpx 0 0;
+ width:92rpx;
+ height: 92rpx;
+ border-radius: 8rpx;
+ overflow: hidden;
+}
+.teamimg image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.yes_btn{
+ margin: 0 27rpx 60rpx 27rpx;
+}
+.no_team{
+ position: relative;
+ margin: 17rpx 0 0 0;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background: #03182D;
+ padding:30rpx 27rpx;
+ font-size:26rpx;
+ color:rgba(255,255,255,0.8);
+}
+.switchclass{
+ height: 30rpx;
+}
+.team_choose{
+position: absolute;
+background: #B5B5B6;
+height: 27rpx;
+top:50%;
+transform: translateY(-50%);
+right: 32rpx;
+width:67rpx;
+border-radius: 12rpx;
+}
+.team_choose_active{
+ background: #04be02;
+}
+.team_chooseyes{
+ position: absolute;
+ z-index:10;
+ left:0;
+ top:0;
+ width:27rpx;
+ height: 27rpx;
+ border-radius: 50%;
+ background: #fff;
+}
+.team_choose_active .team_chooseyes{
+  left:40rpx;
+}
+.jian_txt{
+ position: absolute;
+ transform:rotate(-45deg);
+ z-index:2;
+
+}
\ No newline at end of file
diff --git b/pages/img_txt/img_txt.js a/pages/img_txt/img_txt.js
new file mode 100644
index 0000000..b4d90ef
--- /dev/null
+++ a/pages/img_txt/img_txt.js
@@ -0,0 +1,66 @@
+// pages/img_txt/img_txt.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 b/pages/img_txt/img_txt.json a/pages/img_txt/img_txt.json
new file mode 100644
index 0000000..17daae7
--- /dev/null
+++ a/pages/img_txt/img_txt.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "详情"}
\ No newline at end of file
diff --git b/pages/img_txt/img_txt.wxml a/pages/img_txt/img_txt.wxml
new file mode 100644
index 0000000..cd0ef64
--- /dev/null
+++ a/pages/img_txt/img_txt.wxml
@@ -0,0 +1,30 @@
+<!--pages/img_txt/img_txt.wxml-->
+<view class='line'></view>
+<view class='account_title'>用户注册协议</view>
+<view class='account_subtitle'>User registration protocol</view>
+<view class='img_txt'>
+0356-96517 (China), log on Party B's website or go to Party B's business outlets to consult or complain.
+
+Two. Obligation
+(1) Party A shall abide by the regulations of the Jincheng bank on electronic banking.
+
+(2) Party A shall provide the relevant information required by Party B and fill in the relevant application form for the registration, cancellation and alteration of online banking. Party A shall ensure that the information provided is true, complete and effective.
+
+(3) Party A should login directly to Party B's website (http://www.jinchengbank.com) when conducting online banking business, rather than through the links provided by e-mail or other websites.
+
+(4) Party A shall properly keep the user name, login password, registration card number, password, U shield and user certificate of its own online bank, and shall not lend to others for use, and shall be responsible for financial transactions completed through the above information.
+
+(5) Party A shall set and keep passwords in accordance with the principle of confidentiality; avoid using information clearly related to himself such as name, birthday, telephone number and simple number as passwords; shall not provide passwords to anyone other than those prescribed by law; and shall take effective measures to prevent his
+0356-96517 (China), log on Party B's website or go to Party B's business outlets to consult or complain.
+
+Two. Obligation
+(1) Party A shall abide by the regulations of the Jincheng bank on electronic banking.
+
+(2) Party A shall provide the relevant information required by Party B and fill in the relevant application form for the registration, cancellation and alteration of online banking. Party A shall ensure that the information provided is true, complete and effective.
+
+(3) Party A should login directly to Party B's website (http://www.jinchengbank.com) when conducting online banking business, rather than through the links provided by e-mail or other websites.
+
+(4) Party A shall properly keep the user name, login password, registration card number, password, U shield and user certificate of its own online bank, and shall not lend to others for use, and shall be responsible for financial transactions completed through the above information.
+
+(5) Party A shall set and keep passwords in accordance with the principle of confidentiality; avoid using information clearly related to himself such as name, birthday, telephone number and simple number as passwords; shall not provide passwords to anyone other than those prescribed by law; and shall take effective measures to prevent his
+</view>
diff --git b/pages/img_txt/img_txt.wxss a/pages/img_txt/img_txt.wxss
new file mode 100644
index 0000000..46a4450
--- /dev/null
+++ a/pages/img_txt/img_txt.wxss
@@ -0,0 +1,14 @@
+/* pages/img_txt/img_txt.wxss */
+page{
+ background: #010E23;
+}
+.account_title{
+ margin: 20rpx 0 0 0;
+}
+.img_txt{
+ background: #021428;
+ padding:30rpx 34rpx 60rpx 34rpx;
+ color:rgba(255,255,255,0.6);
+ font-size:26rpx;
+ line-height: 40rpx;
+}
\ No newline at end of file
diff --git b/pages/index/index.js a/pages/index/index.js
new file mode 100644
index 0000000..213199d
--- /dev/null
+++ a/pages/index/index.js
@@ -0,0 +1,72 @@
+//index.js
+Page({
+
+  /**
+   * 页面的初始数据
+   */
+  data: {
+   rankstate:0//0综合,1距离,2销量,3筛选
+  },
+  setrankstate(e){
+   
+   this.setData({
+    rankstate: e.currentTarget.dataset.rankstate
+   })
+
+  },
+  /**
+   * 生命周期函数--监听页面加载
+   */
+  onLoad: function (options) {
+    
+  },
+
+  /**
+   * 生命周期函数--监听页面初次渲染完成
+   */
+  onReady: function () {
+    
+  },
+
+  /**
+   * 生命周期函数--监听页面显示
+   */
+  onShow: function () {
+    
+  },
+
+  /**
+   * 生命周期函数--监听页面隐藏
+   */
+  onHide: function () {
+    
+  },
+
+  /**
+   * 生命周期函数--监听页面卸载
+   */
+  onUnload: function () {
+    
+  },
+
+  /**
+   * 页面相关事件处理函数--监听用户下拉动作
+   */
+  onPullDownRefresh: function () {
+    
+  },
+
+  /**
+   * 页面上拉触底事件的处理函数
+   */
+  onReachBottom: function () {
+    
+  },
+
+  /**
+   * 用户点击右上角分享
+   */
+  onShareAppMessage: function () {
+    
+  }
+})
diff --git b/pages/index/index.json a/pages/index/index.json
new file mode 100644
index 0000000..6ff92ab
--- /dev/null
+++ a/pages/index/index.json
@@ -0,0 +1,4 @@
+{
+ 
+ "navigationBarTitleText": "首页"
+}
\ No newline at end of file
diff --git b/pages/index/index.wxml a/pages/index/index.wxml
new file mode 100644
index 0000000..8faaa17
--- /dev/null
+++ a/pages/index/index.wxml
@@ -0,0 +1,54 @@
+<!--index.wxml-->
+<navigator class='index_img' hover-class='navigator_hover' url='/pages/tuangou/tuanguo'>
+ <image src='../../../imgs/dianoufengmian@3x.png'></image>
+</navigator >
+<view class='index_class'>
+ <navigator class='index_classcell' hover-class='navigator_hover' url='/pages/tuangou/tuanguo'>
+  <view>品质团购</view>
+  <view class='index_classcellsub'>Quality group purchase</view>
+ </navigator>
+ <navigator class='index_classcell index_classcell1' hover-class='navigator_hover' url='/pages/tuangou/tuanguo'>
+  <view>热门团购</view>
+  <view class='index_classcellsub'>Hot group buying</view>
+ </navigator>
+ <navigator class='index_classcell index_classcell2' hover-class='navigator_hover' url='/pages/tuangou/tuanguo'>
+  <view>限量抢购</view>
+  <view class='index_classcellsub'>Limited purchase</view>
+ </navigator>
+</view>
+<view class='index_title'>热门酒吧</view>
+<view class='plaza_nav'>
+ <view class="plaza_navitem {{rankstate==0?'navitem_active':''}}"  data-rankstate='0' bindtap='setrankstate' >
+  <view class=' plaza_navitemimg iconfont icon-fenlei-'></view>
+  <view>综合排序</view>
+ </view>
+ <view class="plaza_navitem {{rankstate==1?'navitem_active':''}}"  data-rankstate='1' bindtap='setrankstate'>
+  <view class='plaza_navitemimg iconfont icon-qunfengdingwei'></view>
+  <view>距离最近</view>
+ </view>
+ <view class="plaza_navitem {{rankstate==2?'navitem_active':''}}"  data-rankstate='2' bindtap='setrankstate'>
+  <view class='plaza_navitemimg iconfont icon-paixing'></view>
+  <view>销量最好</view>
+ </view>
+ <view  class="plaza_navitem {{rankstate==3?'navitem_active':''}}"  data-rankstate='3' bindtap='setrankstate'>
+  <view class='plaza_navitemimg iconfont icon-sousuo'></view>
+  <view>筛选</view>
+ </view>
+</view>
+<view class='formbox plazabox'>
+ <navigator class='order_img plaza_img' hover-class='navigator_hover' url='/pages/bar_detail/bar_detail'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>月售120单</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </navigator>
+ <view class='formitem'>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'> <text class='jian_txt'> 减</text>
+  </view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/index/index.wxss a/pages/index/index.wxss
new file mode 100644
index 0000000..4c1dcc0
--- /dev/null
+++ a/pages/index/index.wxss
@@ -0,0 +1,70 @@
+/**index.wxss**/
+@import '/pages/plaza/plaza.wxss';
+.index_img{
+ margin: 0 0 44rpx 0;
+ height: 240rpx;
+}
+.index_img image{
+ width:100%;
+ height: 100%;
+}
+.index_class{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ margin: 0 27rpx;
+}
+.index_classcell{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ color:rgba(255,255,255,0.7);
+ font-size:36rpx;
+ width:30%;
+ height: 190rpx;
+ border-radius: 8rpx;
+ background:linear-gradient(45deg, #36BFB2, #25AEDA,#415DAA);
+}
+.index_classcellsub{
+ font-size: 14rpx;
+}
+.index_classcell1{
+ background:linear-gradient(45deg, #F18927, #D94063,#A92A85);
+}
+.index_classcell2{
+ background:linear-gradient(45deg, #F5C7B2, #BE5195,#6E248D);
+}
+.index_title{
+ position: relative;
+ margin: 30rpx 0 ;
+ text-align: center;
+ color:rgba(255,255,255,0.7);
+ font-size:36rpx;
+}
+.index_title::after{
+ position: absolute;
+ left:30rpx;
+ top:50%;
+ transform: translateY(-50%);
+ width:250rpx;
+ height: 3rpx;
+ background: #ffffff;
+ border-radius: 2rpx;
+ content: ''
+}
+.index_title::before{
+ position: absolute;
+ right:30rpx;
+ top:50%;
+ transform: translateY(-50%);
+ width:250rpx;
+ height: 3rpx;
+ background: #ffffff;
+ border-radius: 2rpx;
+ content: ''
+}
+.order_img {
+border-radius: 0;
+}
+
diff --git b/pages/kaishi/kaishi.js a/pages/kaishi/kaishi.js
new file mode 100644
index 0000000..40c14c0
--- /dev/null
+++ a/pages/kaishi/kaishi.js
@@ -0,0 +1,125 @@
+// pages/kaishi/kaishi.js
+const app=getApp();
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  imgUrls: [
+   '../../imgs/lunbo1@3x.png',
+   '../../imgs/lunbo2@3x.png',
+   '../../imgs/lunbo3@3x.png'
+  ],
+  indexs:0,
+  color:'#cccccc',
+  indicatorDots: false,
+  autoplay: true,
+  activecolor:'#ffffff',
+  interval: 5000,
+  duration: 1000
+ },
+
+ start(e) {
+  let that = this;
+  app.globalData.userInfo = e.detail.userInfo;
+
+  wx.login({
+   success: function (s) {
+    let url = 'wxapp/public/getSessionKey';
+    if (s.code) {
+     var code = s.code;
+     var param = {
+      code: code
+     }
+     app.post(url, param).then((res) => {
+      that.login(res.openid, res.session_key, e.detail.encryptedData, e.detail.iv);
+     }).catch((errMsg) => {
+      console.log(errMsg);
+     })
+    }
+   }
+  });
+ },
+ login(openid, session_key, encrypted_data, iv) {
+  let that = this;
+  let param = {
+   openid: openid,
+   session_key: session_key,
+   encrypted_data: encrypted_data,
+   iv: iv
+  }
+  let url = 'wxapp/public/login';
+  app.post(url, param).then((res) => {
+   wx.setStorageSync('token', res.token);
+   wx.navigateTo({
+    url: '/pages/login/login',
+    success: function (res) { },
+    fail: function (res) { },
+    complete: function (res) { },
+   })
+  }).catch((errMsg) => {
+   console.log(errMsg);
+  })
+ },
+ changeindexs(e){
+  this.setData({
+   indexs: e.detail.current
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/kaishi/kaishi.json a/pages/kaishi/kaishi.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/kaishi/kaishi.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/kaishi/kaishi.wxml a/pages/kaishi/kaishi.wxml
new file mode 100644
index 0000000..9586b57
--- /dev/null
+++ a/pages/kaishi/kaishi.wxml
@@ -0,0 +1,29 @@
+<!--pages/kaishi/kaishi.wxml-->
+<swiper  indicator-dots="{{indicatorDots}}"  interval="{{interval}}" duration="{{duration}}" indicator-active-color='{{activecolor}}'  indicator-color='{{color}}' current='{{indexs}}' bindchange='changeindexs'>
+ <block wx:for="{{imgUrls}}" wx:key>
+  <swiper-item>
+   <image src="{{item}}" class="slide-image" width="355" height="150" />
+  </swiper-item>
+ 
+ </block>
+ <swiper-item>
+   <view class='start_main'>
+    <image src='../../imgs/yonghushouyedenglubiejing@3x.png'></image>
+    <view class='head_txt'>
+     <view class='head_title'>从友</view>
+     <view>From·Friends</view>
+     <view class='head_subtitle'>让娱乐更简单</view>
+    </view>
+    <view class='logo'>
+     <image src='../../imgs/qdongtupian@3x.png'></image>
+    </view>
+   </view>
+   <view class='start_btnbox'>
+    <button class='start_btn' open-type='getUserInfo' bindgetuserinfo='start'>
+     <text class='txt'>一起来吧</text> </button>
+   </view>
+  </swiper-item>
+</swiper>
+<view class='botsbox'>
+<view class='bots {{index==indexs?"activecolor":""}}' wx:for='{{imgUrls.length+1}}' wx:key ></view>
+</view>
\ No newline at end of file
diff --git b/pages/kaishi/kaishi.wxss a/pages/kaishi/kaishi.wxss
new file mode 100644
index 0000000..54771e2
--- /dev/null
+++ a/pages/kaishi/kaishi.wxss
@@ -0,0 +1,37 @@
+/* pages/kaishi/kaishi.wxss */
+@import '/pages/start/start.wxss';
+swiper{
+ position: fixed;
+ top:0;
+ left:0;
+ width:100%;
+ height: 100%;
+ z-index:1;
+}
+swiper image{
+ width:100%;
+ height: 100%;
+ 
+}
+.botsbox{
+ position: fixed;
+ left:50%;
+ transform: translateX(-50%);
+ /* width:100%; */
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 16rpx;
+ bottom:8%;
+ z-index:100;
+}
+.bots{
+ background: #C8C9CA;
+ width:16rpx;
+ height: 16rpx;
+ border-radius: 50%;
+ margin: 0 10rpx;
+}
+.activecolor{
+ background: #fff;
+}
\ No newline at end of file
diff --git b/pages/location/location.js a/pages/location/location.js
new file mode 100644
index 0000000..e1eae71
--- /dev/null
+++ a/pages/location/location.js
@@ -0,0 +1,78 @@
+// pages/location/location.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ openMap: function () {
+  wx.getLocation({
+   type: 'gcj02', // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
+   success: function (res) {
+    // success
+    wx.openLocation({
+     latitude: res.latitude, // 纬度,范围为-90~90,负数表示南纬
+     longitude: res.longitude, // 经度,范围为-180~180,负数表示西经
+     scale: 28, // 缩放比例
+    })
+   }
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/location/location.json a/pages/location/location.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/location/location.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/location/location.wxml a/pages/location/location.wxml
new file mode 100644
index 0000000..4e8283d
--- /dev/null
+++ a/pages/location/location.wxml
@@ -0,0 +1,12 @@
+<!--pages/location/location.wxml-->
+<view class='location_top'>
+<map></map>
+</view>
+<view class='location_bottom'>
+<view class='location_bottomtitle'> <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+<view class='location_itembox'>
+<view class='location_item'><text class='iconfont icon-zhifeiji'></text>查看路线</view>
+<button type="default" bindtap="openMap" class='location_item location_item1' style='color:#ffffff'><text class='iconfont icon-ditu'></text>本机地图</button>
+<view class='location_item location_item2'><text class='iconfont icon-gantanhao'></text>报错</view>
+</view>
+</view>
diff --git b/pages/location/location.wxss a/pages/location/location.wxss
new file mode 100644
index 0000000..ce588e4
--- /dev/null
+++ a/pages/location/location.wxss
@@ -0,0 +1,72 @@
+/* pages/location/location.wxss */
+.location_top{
+ position: fixed;
+ top:0;
+ left:0;
+ width:100%;
+ height: 86%;
+ background: rebeccapurple;
+}
+.location_top map{
+ width:100%;
+ height: 100%;
+}
+.location_bottom{
+ padding:30rpx 20rpx 20rpx 20rpx;
+ position: fixed;
+ height: 16%;
+ box-sizing: border-box;
+ width: 100%;
+ background: #010D21;
+ font-size:24rpx;
+ color:rgba(255, 255, 255, 0.8);
+ bottom:0;
+ left:0;
+}
+.location_bottomtitle .iconfont{
+ 
+ color:#2A79B6;
+}
+.location_itembox{
+ margin: 20rpx 0 60rpx 0;
+ display: flex;
+ align-items: center;
+ justify-content: space-around;
+ color:#fff;
+ font-size:28rpx;
+}
+.location_item{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding:20rpx 0;
+ height: 80rpx;
+ width:30%;
+ font-size:28rpx;
+ color:#ffffff;
+ box-sizing: border-box;
+ border-radius: 8rpx;
+ background: linear-gradient(45deg, #C31727 , #892D71,#1F81BE);
+}
+.button-hover{
+  color:#ffffff;
+}
+.location_item1{
+ background: linear-gradient(45deg, #F28C25 , #DB475E,#BF3377,#B42F7D);
+} 
+.location_item2{
+ background: linear-gradient(45deg, #36BFB2 , #23B6DF,#367EBD,#3E66B0);
+} 
+.location_item:active{
+ opacity: 0.7;
+}
+.location_item .iconfont{
+ margin: 0 20rpx 0 0;
+ color:#fff;
+}
+.location_item .iconfont.icon-gantanhao{
+ margin: 0 30rpx 0 0;
+}
+.location_bottomtitle{
+ margin: 0 0 0 14rpx;
+}
\ No newline at end of file
diff --git b/pages/login/login.js a/pages/login/login.js
new file mode 100644
index 0000000..cf55fb2
--- /dev/null
+++ a/pages/login/login.js
@@ -0,0 +1,99 @@
+// pages/login/login.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  timer: '', //定时器名字
+  codetxt:'输入验证码',
+  downsec: '60', //倒计时初始值
+ },
+ //倒计时
+ downsec() {
+  let that=this;
+  let downsec = that.data.downsec;
+  if (downsec == '60')
+  that.setData({
+   timer: setInterval(function () { //这里把setInterval赋值给变量名为timer的变量
+    //每隔一秒countDownNum就减一,实现同步
+    downsec--;
+    //然后把countDownNum存进data,好让用户知道时间在倒计着
+    that.setData({
+     downsec: downsec,
+     codetxt: downsec + 's'
+    })
+    //在倒计时还未到0时,这中间可以做其他的事情,按项目需求来
+    if (downsec == 0) {
+     that.setData({
+      downsec: '60',
+      codetxt: '获取验证码'
+     })
+     //这里特别要注意,计时器是始终一直在走的,如果你的时间为0,那么就要关掉定时器!不然相当耗性能
+     //因为timer是存在data里面的,所以在关掉时,也要在data里取出后再关闭
+     clearInterval(that.data.timer);
+     //关闭定时器之后,可作其他处理codes go here
+    }
+   }, 1000)
+  })
+ },
+ goindex(){
+  wx.switchTab({url: '/pages/index/index',})
+
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/login/login.json a/pages/login/login.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/login/login.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/login/login.wxml a/pages/login/login.wxml
new file mode 100644
index 0000000..39fb4aa
--- /dev/null
+++ a/pages/login/login.wxml
@@ -0,0 +1,24 @@
+<!--pages/login/login.wxml-->
+<view class='my_content'>
+ <image src='../../../imgs/denglubviejing@3x.png'></image>
+ <view class='login_box'>
+  <view class='input_item'>
+   <input placeholder='绑定手机' placeholder-class='input_place'></input>
+  </view>
+  <view class='input_item'>
+   <input placeholder='输入手机号' placeholder-class='input_place'></input>
+  </view>
+  <view class='input_item code'>
+   <input placeholder='绑定手机' placeholder-class='input_place'></input>
+   <view class='code_txt' bindtap='downsec'>{{codetxt}}</view>
+  </view>
+  <view class='agree'>
+   <text class='iconfont icon-duigou'></text> 已阅读
+   <navigator class='agree_txt'url='/pages/img_txt/img_txt' hover-class="none">《用户注册协议》</navigator>
+  </view>
+  <view class='goindex' bindtap='goindex'>
+   <view class='goindex_txt' >进入首页</view>
+  </view>
+ </view>
+
+</view>
diff --git b/pages/login/login.wxss a/pages/login/login.wxss
new file mode 100644
index 0000000..df467d1
--- /dev/null
+++ a/pages/login/login.wxss
@@ -0,0 +1,2 @@
+/* pages/login/login.wxss */
+@import '/pages/merchant/login/login.wxss';
diff --git b/pages/merchant/account/account.js a/pages/merchant/account/account.js
new file mode 100644
index 0000000..f7c42e5
--- /dev/null
+++ a/pages/merchant/account/account.js
@@ -0,0 +1,66 @@
+// pages/account/account.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 b/pages/merchant/account/account.json a/pages/merchant/account/account.json
new file mode 100644
index 0000000..17fd37a
--- /dev/null
+++ a/pages/merchant/account/account.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarBackgroundColor": "#509FD6",
+ "navigationBarTitleText": "添加运营账号"
+ }
\ No newline at end of file
diff --git b/pages/merchant/account/account.wxml a/pages/merchant/account/account.wxml
new file mode 100644
index 0000000..ff03213
--- /dev/null
+++ a/pages/merchant/account/account.wxml
@@ -0,0 +1,23 @@
+<!--pages/account/account.wxml-->
+<view class='account_box'>
+ <view class='input_box'>
+  <text class='iconfont icon-shouji'></text>
+  <input placeholder='输入手机号' placeholder-class='placeinput'></input>
+ </view>
+ <view class='input_box acc_code'>
+ <view class='input_left '>
+ <text class='iconfont icon-suo101'></text>
+  <input placeholder='验证码' placeholder-class='placeinput'></input>
+ </view>
+ <view class='getcode'>获取验证码</view>
+  
+ </view>
+ <view class='input_box'>
+  <text class='iconfont icon-suo01'></text>
+  <input placeholder='输入登陆密码' placeholder-class='placeinput'></input>
+ </view>
+ <view class='button_btn tixian_bottombtn'>确定保存</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/account/account.wxss a/pages/merchant/account/account.wxss
new file mode 100644
index 0000000..c3f8eb7
--- /dev/null
+++ a/pages/merchant/account/account.wxss
@@ -0,0 +1,65 @@
+/* pages/account/account.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.account_box{
+ margin: 68rpx 30rpx 0 30rpx;
+}
+.input_box{
+ display: flex;
+ 
+ align-items: center;
+ padding:20rpx 0;
+ border-bottom:1rpx solid #9E9E9F;
+ color:#9E9E9F;
+ font-size:32rpx;
+}
+.placeinput{
+ color:#9E9E9F;
+ font-size:30rpx;
+}
+.input_box input{
+ width:90%;
+ margin: 0 0 0 20rpx;
+}
+.input_box .iconfont{
+ color:#509FD6;
+ font-weight: bold;
+}
+.acc_code{
+ justify-content: space-between;
+}
+.getcode{
+ background: #509FD6;
+ font-size:24rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding:10rpx 40rpx;
+ border-radius: 20rpx;
+ color:#fff;
+ 
+
+}
+.input_left{
+ display: flex;
+ width:70%;
+ align-items: center;
+}
+.input_left input{
+ width:90%;
+}
+.button_btn{
+ margin: 615rpx 0 0 0;
+ height: 60rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size:36rpx;
+ color:#fff;
+ border-radius: 10rpx;
+ background: #509FD6;
+}
+.button_btn:active{
+ opacity: 0.7;
+}
\ No newline at end of file
diff --git b/pages/merchant/account_info/account_info.js a/pages/merchant/account_info/account_info.js
new file mode 100644
index 0000000..32f2d8a
--- /dev/null
+++ a/pages/merchant/account_info/account_info.js
@@ -0,0 +1,66 @@
+// pages/merchant/account_info/account_info.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 b/pages/merchant/account_info/account_info.json a/pages/merchant/account_info/account_info.json
new file mode 100644
index 0000000..a87368c
--- /dev/null
+++ a/pages/merchant/account_info/account_info.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "账号明细",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/account_info/account_info.wxml a/pages/merchant/account_info/account_info.wxml
new file mode 100644
index 0000000..7165209
--- /dev/null
+++ a/pages/merchant/account_info/account_info.wxml
@@ -0,0 +1,21 @@
+<!--pages/merchant/account_info/account_info.wxml-->
+<view class='account_infotop'>
+ <view class='head_box'>
+  <view class='head'>
+   <image src='../../../imgs/woman.png'></image>
+  </view>
+  <view class='head_txt'>商家名称</view>
+ </view>
+</view>
+<view class='account_itembox'>
+<view class='account_item' wx:for='{{[1,1,1,1]}}'>
+ <view class='account_txtbox'>
+  <view>提现</view>
+  <view>-125</view>
+ </view>
+ <view>2018-09-08 15:20</view>
+</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/account_info/account_info.wxss a/pages/merchant/account_info/account_info.wxss
new file mode 100644
index 0000000..3d0ca3c
--- /dev/null
+++ a/pages/merchant/account_info/account_info.wxss
@@ -0,0 +1,58 @@
+/* pages/merchant/account_info/account_info.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.account_infotop{
+ position: relative;
+ height: 213rpx;
+ background: linear-gradient(to right, #415DAA , #2D97CC,#33BEB9);
+ box-sizing: border-box;
+}
+.head_box{
+ position: absolute;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ left:50%;
+ transform: translateX(-50%);
+ top:110rpx;
+ width:187rpx;
+ text-align: center;
+}
+.head{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ 
+ width:187rpx;
+ height: 187rpx;
+ border-radius: 50%;
+ border:4rpx #fff solid;
+}
+.head image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.head_txt{
+ margin: 20rpx 0 0 0;
+ color:#231815;
+ font-size:24rpx;
+}
+.account_itembox{
+ margin: 170rpx 0 0 0;
+}
+.account_item{
+ padding:30rpx 50rpx 30rpx 75rpx;
+height: 115rpx;
+margin: 0 0 20rpx 0;
+ box-sizing: border-box;
+ background: #EEEEEF;
+ color:#3E3A39;
+ font-size:25rpx;
+}
+.account_txtbox{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
diff --git b/pages/merchant/account_list/account_list.js a/pages/merchant/account_list/account_list.js
new file mode 100644
index 0000000..3da70fd
--- /dev/null
+++ a/pages/merchant/account_list/account_list.js
@@ -0,0 +1,71 @@
+// pages/merchant/account_list/account_list.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ goaddaccount(){
+  wx.navigateTo({
+   url: '/pages/merchant/account/account',
+  })
+
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/account_list/account_list.json a/pages/merchant/account_list/account_list.json
new file mode 100644
index 0000000..fc57a2d
--- /dev/null
+++ a/pages/merchant/account_list/account_list.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarBackgroundColor": "#509FD6",
+ "navigationBarTitleText": "运营账号管理"
+}
\ No newline at end of file
diff --git b/pages/merchant/account_list/account_list.wxml a/pages/merchant/account_list/account_list.wxml
new file mode 100644
index 0000000..fd55c73
--- /dev/null
+++ a/pages/merchant/account_list/account_list.wxml
@@ -0,0 +1,14 @@
+<!--pages/merchant/account_list/account_list.wxml-->
+<view class='account_box'>
+ <navigator class='input_box' hover-class="none" url='/pages/merchant/edit_account/edit_account'>
+  <view>
+  <text class='iconfont icon-shouji'></text>
+  123456789234
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ <view class='button_btn tixian_bottombtn' bindtap='goaddaccount'>添加账号</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/account_list/account_list.wxss a/pages/merchant/account_list/account_list.wxss
new file mode 100644
index 0000000..db65a37
--- /dev/null
+++ a/pages/merchant/account_list/account_list.wxss
@@ -0,0 +1,14 @@
+/* pages/merchant/account_list/account_list.wxss */
+@import '../account/account.wxss';
+page{
+ padding:0 0 114rpx 0;
+}
+.input_box{
+ padding:10rpx 0;
+ color:#231815;
+ font-size:24rpx;
+justify-content: space-between;
+}
+.input_box .icon-right{
+ color:#231815;
+}
\ No newline at end of file
diff --git b/pages/merchant/account_manage/account_manage.js a/pages/merchant/account_manage/account_manage.js
new file mode 100644
index 0000000..ea5e2aa
--- /dev/null
+++ a/pages/merchant/account_manage/account_manage.js
@@ -0,0 +1,66 @@
+// pages/merchant/account_manage/account_manage.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 b/pages/merchant/account_manage/account_manage.json a/pages/merchant/account_manage/account_manage.json
new file mode 100644
index 0000000..8c322e8
--- /dev/null
+++ a/pages/merchant/account_manage/account_manage.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "账户管理",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/account_manage/account_manage.wxml a/pages/merchant/account_manage/account_manage.wxml
new file mode 100644
index 0000000..a0607bd
--- /dev/null
+++ a/pages/merchant/account_manage/account_manage.wxml
@@ -0,0 +1,16 @@
+<!--pages/merchant/account_manage/account_manage.wxml-->
+<view class='account_infotop'>
+ <view class='head_box'>
+  <view class='head'>
+   <image src='../../../imgs/woman.png'></image>
+  </view>
+  <view class='head_txt'>商家名称</view>
+ </view>
+</view>
+<view class='account_price'>¥<text class='bignum'>98.</text>00</view>
+<view class='account_tip'>账户余额</view>
+<navigator class='button_btn account_btn1' url='/pages/merchant/tixian2/tixian2' hover-class="none" >提现</navigator>
+<navigator class='button_btn account_btn2' url='/pages/merchant/account_info/account_info' hover-class="none">明细</navigator>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
diff --git b/pages/merchant/account_manage/account_manage.wxss a/pages/merchant/account_manage/account_manage.wxss
new file mode 100644
index 0000000..3917ad5
--- /dev/null
+++ a/pages/merchant/account_manage/account_manage.wxss
@@ -0,0 +1,30 @@
+/* pages/merchant/account_manage/account_manage.wxss */
+@import '../account_info/account_info.wxss';
+page{
+ padding:0 0 114rpx 0;
+}
+.tixian_twonum{
+ justify-content: center;
+ color:#3E3A39;
+ font-weight: bold;
+ font-size: 42rpx;
+ margin: 0;
+}
+.bignum{
+ font-size: 76rpx;
+}
+.account_price{
+ margin: 176rpx 0 0 0;
+ text-align: center;
+}
+.account_tip{
+ color:#3E3A39;
+ font-size:28rpx;
+ text-align: center;
+}
+.account_btn1{
+ margin: 140rpx 32rpx 66rpx 32rpx;
+}
+.account_btn2{
+ margin: 0 32rpx ;
+}
\ No newline at end of file
diff --git b/pages/merchant/add_combo/add_combo.js a/pages/merchant/add_combo/add_combo.js
new file mode 100644
index 0000000..d6b0867
--- /dev/null
+++ a/pages/merchant/add_combo/add_combo.js
@@ -0,0 +1,66 @@
+// pages/merchant/add_combo/add_combo.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  ifeidt: false
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/add_combo/add_combo.json a/pages/merchant/add_combo/add_combo.json
new file mode 100644
index 0000000..c6d135d
--- /dev/null
+++ a/pages/merchant/add_combo/add_combo.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "添加套餐",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/add_combo/add_combo.wxml a/pages/merchant/add_combo/add_combo.wxml
new file mode 100644
index 0000000..2c60680
--- /dev/null
+++ a/pages/merchant/add_combo/add_combo.wxml
@@ -0,0 +1,111 @@
+<!--pages/merchant/add_combo/add_combo.wxml-->
+<!--pages/merchant/merchant_addgoods/merchant_addgoods.wxml-->
+<view class='tixian_top reg_top'>上传图片
+ <text class='tixian_minitxt'>Upload pictures</text>
+</view>
+<view class='merchant_img'>
+ <view class='addicon'>
+  <text class='iconfont icon-jia2'></text>
+ </view>
+ <image src='../../../imgs/item.png'></image>
+</view>
+<view class='merchant_itembox merchant_bottom'>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>套餐名称</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入套餐名称'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>套餐价格</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入套餐价格'></input>
+   </view>
+  </view>
+  <view>元</view>
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>限购数量</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入商品简介'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+  <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>限购数量</view>
+   <view class='merchant_txt'>
+    <input placeholder='可限制套餐限购数(限量抢购/半招待)'></input>
+   </view>
+  </view>
+  <view>组</view>
+ </view>
+  <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>选择卡座</view>
+   <view class='merchant_txt'>
+    <input placeholder='选择套餐所属卡座'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+  <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>套餐简介</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入套餐简介'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+</view>
+
+<view class='tixian_top'>
+<view>套餐商品<text class='tixian_minitxt'>Package food</text></view>
+<view>删除</view>
+</view>
+
+<view class='merchant_itembox merchant_bottom'>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商品名称
+
+</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入商品名称'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商品数量</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入商品数量'></input>
+   </view>
+  </view>
+  <view>元</view>
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商品价格</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入商品价格'></input>
+   </view>
+  </view>
+ </view> 
+</view>
+<view class='button_btn addgoods_btn' wx:if='{{ifeidt}}'>确定添加</view>
+<view class='btnbox' wx:else>
+<view class='button_btn eidt_btn'>确定修改</view>
+<view class='button_btn eidt_btn'>删除商品</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/add_combo/add_combo.wxss a/pages/merchant/add_combo/add_combo.wxss
new file mode 100644
index 0000000..1a6e25f
--- /dev/null
+++ a/pages/merchant/add_combo/add_combo.wxss
@@ -0,0 +1,5 @@
+/* pages/merchant/add_combo/add_combo.wxss */
+@import '/pages/merchant/merchant_addgoods/merchant_addgoods.wxss';
+page{
+ padding:0 0 114rpx 0;
+}
\ No newline at end of file
diff --git b/pages/merchant/add_kazuo/add_kazuo.js a/pages/merchant/add_kazuo/add_kazuo.js
new file mode 100644
index 0000000..e271521
--- /dev/null
+++ a/pages/merchant/add_kazuo/add_kazuo.js
@@ -0,0 +1,66 @@
+// pages/merchant/add_kazuo/add_kazuo.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  ifeidt:false
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/add_kazuo/add_kazuo.json a/pages/merchant/add_kazuo/add_kazuo.json
new file mode 100644
index 0000000..fc97756
--- /dev/null
+++ a/pages/merchant/add_kazuo/add_kazuo.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "添加卡座",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/add_kazuo/add_kazuo.wxml a/pages/merchant/add_kazuo/add_kazuo.wxml
new file mode 100644
index 0000000..2942ddf
--- /dev/null
+++ a/pages/merchant/add_kazuo/add_kazuo.wxml
@@ -0,0 +1,51 @@
+<!--pages/merchant/add_kazuo/add_kazuo.wxml-->
+<view class='merchant_itembox merchant_bottom'>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>卡座名称</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入卡座名称'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>卡座人数</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入卡座人数'></input>
+   </view>
+  </view>
+ 
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>最低消费</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入最低消费'></input>
+   </view>
+  </view>
+  <view >元</view>
+ </view>
+  <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>可预约时间</view>
+   <view class='merchant_txt'>
+    <view class='choose_time'>18:00</view>
+    <view class='choose_minitime'>
+    <text class='iconfont icon-xiangxia'></text>
+    </view>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+</view>
+<view class='button_btn addgoods_btn' wx:if='{{ifeidt}}'>确定添加</view>
+
+<view class='btnbox' wx:else>
+<view class='button_btn eidt_btn'>保存</view>
+<view class='button_btn eidt_btn'>删除</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/add_kazuo/add_kazuo.wxss a/pages/merchant/add_kazuo/add_kazuo.wxss
new file mode 100644
index 0000000..5dfe7dc
--- /dev/null
+++ a/pages/merchant/add_kazuo/add_kazuo.wxss
@@ -0,0 +1,35 @@
+/* pages/merchant/add_kazuo/add_kazuo.wxss */
+@import '../merchant_addgoods/merchant_addgoods.wxss';
+page{
+ padding:0 0 114rpx 0;
+}
+.choose_time{
+ display: inline-block;
+ background: #509FD6;
+ font-size:24rpx;
+ color:#fff;
+ /* height: 40rpx; */
+
+ box-sizing: border-box;
+ padding: 10rpx 30rpx;
+ border-radius: 10rpx 0 0 10rpx;
+}
+.choose_minitime{
+ position: relative;
+ display: inline-block;
+ margin: 0 0 0 10rpx;
+ padding: 10rpx 2rpx;
+ /* height: 40rpx; */
+ background: #509FD6;
+ font-size:24rpx;
+ border-radius: 0 5rpx 5rpx 0;
+ color:#fff;
+}
+.choose_minitime .iconfont{
+ position: relative;
+ color:#fff;
+ top:0;
+ left:0;
+ margin: 0;
+ font-size:20rpx;
+}
diff --git b/pages/merchant/edit_account/edit_account.js a/pages/merchant/edit_account/edit_account.js
new file mode 100644
index 0000000..c3e6e98
--- /dev/null
+++ a/pages/merchant/edit_account/edit_account.js
@@ -0,0 +1,66 @@
+// pages/merchant/edit_account/edit_account.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 b/pages/merchant/edit_account/edit_account.json a/pages/merchant/edit_account/edit_account.json
new file mode 100644
index 0000000..180d50b
--- /dev/null
+++ a/pages/merchant/edit_account/edit_account.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarBackgroundColor": "#509FD6",
+ "navigationBarTitleText": "编辑运营账号"
+}
\ No newline at end of file
diff --git b/pages/merchant/edit_account/edit_account.wxml a/pages/merchant/edit_account/edit_account.wxml
new file mode 100644
index 0000000..a45843c
--- /dev/null
+++ a/pages/merchant/edit_account/edit_account.wxml
@@ -0,0 +1,16 @@
+<!--pages/merchant/edit_account/edit_account.wxml-->
+<view class='account_box'>
+ <view class='input_box'>
+  <text class='iconfont icon-shouji'></text>
+  <input placeholder='输入手机号' placeholder-class='placeinput'></input>
+ </view>
+ <view class='input_box'>
+  <text class='iconfont icon-suo01'></text>
+  <input placeholder='修改密码' placeholder-class='placeinput'></input>
+ </view>
+ <view class='button_btn tixian_bottombtn'>确定保存</view>
+ <view class='button_btn edit_btn'>删除</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/edit_account/edit_account.wxss a/pages/merchant/edit_account/edit_account.wxss
new file mode 100644
index 0000000..4fc6378
--- /dev/null
+++ a/pages/merchant/edit_account/edit_account.wxss
@@ -0,0 +1,8 @@
+/* pages/merchant/edit_account/edit_account.wxss */
+@import '../account/account.wxss';
+page{
+ padding:0 0 114rpx 0;
+}
+.edit_btn{
+ margin: 50rpx 0 0 0;
+}
\ No newline at end of file
diff --git b/pages/merchant/goodslist/goodslist.js a/pages/merchant/goodslist/goodslist.js
new file mode 100644
index 0000000..0b1df54
--- /dev/null
+++ a/pages/merchant/goodslist/goodslist.js
@@ -0,0 +1,104 @@
+// pages/merchant/goodslist/goodslist.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ goaddkazuo(){
+  let that=this;
+  wx.navigateTo({
+   url: '/pages/merchant/add_kazuo/add_kazuo'
+  })
+ },
+ goaddgoods(){
+  let that=this;
+  wx.navigateTo({
+   url: '/pages/merchant/merchant_addgoods/merchant_addgoods'
+  })
+ },
+ goadd_combo(){
+  let that = this;
+  wx.navigateTo({
+   url: '/pages/merchant/add_combo/add_combo'
+  })
+ },
+ goone_add(){
+  let that = this;
+  wx.navigateTo({
+   url: '/pages/merchant/one_add/one_add'
+  })
+ },
+ gomerchant_index(){
+  wx.reLaunch({
+   url:'/pages/merchant/merchant_index/merchant_index'
+  })
+ },
+ gogoodslist(){
+  wx.reLaunch({
+   url:'/pages/merchant/goodslist/goodslist'
+  })
+ },
+ gomerchant_center(){
+  wx.reLaunch({
+   url:'/pages/merchant/merchant_center/merchant_center'
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/goodslist/goodslist.json a/pages/merchant/goodslist/goodslist.json
new file mode 100644
index 0000000..462e029
--- /dev/null
+++ a/pages/merchant/goodslist/goodslist.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "商品列表",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/goodslist/goodslist.wxml a/pages/merchant/goodslist/goodslist.wxml
new file mode 100644
index 0000000..daa4744
--- /dev/null
+++ a/pages/merchant/goodslist/goodslist.wxml
@@ -0,0 +1,109 @@
+<!--pages/merchant/goodslist/goodslist.wxml-->
+<view class='tixian_top reg_top'>
+ <view>
+  我的订单
+  <text class='tixian_minitxt'>My order</text>
+ </view>
+</view>
+<view class='my_ordertop'>
+ <navigator class='order_item' url='/pages/merchant/my_order/my_order' hover-class="none">
+  <view class='order_topicon'>
+   <text class='iconfont icon-qian'></text>
+  </view>
+  <view>待支付</view>
+ </navigator>
+ <navigator class='order_item' url='/pages/merchant/my_order/my_order' hover-class="none">
+  <view class='order_topicon'>
+   <text class='iconfont icon-iconfontzhizuobiaozhunbduan22'></text>
+  </view>
+  <view>已支付</view>
+ </navigator>
+ <navigator class='order_item' url='/pages/merchant/my_order/my_order' hover-class="none">
+  <view class='order_topicon'>
+   <text class='iconfont icon-jinzhi'></text>
+  </view>
+  <view>已取消</view>
+ </navigator>
+</view>
+<view class='tixian_top reg_top'>
+ <view>
+  卡座设置
+  <text class='tixian_minitxt'>Card holder setting</text>
+ </view>
+</view>
+<view class='goodsmain'>
+ <view class='goodsmain_item' wx:for='{{[1,1]}}' wx:key>
+  <view>散台(2-8人)</view>
+  <view class='goods_mini'>最低消费500元</view>
+ </view>
+ <view class='goodsmain_btn' bindtap='goaddkazuo'>+添加卡座</view>
+</view>
+
+<view class='tixian_top reg_top'>
+ <view>
+  套餐设置
+  <text class='tixian_minitxt'>Set menu</text>
+ </view>
+</view>
+<view class='goodsmain'>
+ <view class='goodsmain_item taocan_item' wx:for='{{[1,1]}}' wx:key>
+  <view class='goodsmain_itemimg'>
+   <image src='../../../imgs/item.png'></image>
+  </view>
+  <view class='goods_imgtxtbox'>
+   <view class='goods_imgtxtleft'>
+   <view class='goods_imgtxtlefttitle'>
+   <view>普通套餐</view>
+   <view>¥125.<text>00</text></view>
+   </view>
+   <view class='goods_mini'>小卡座+一打百威+一份果盘</view>
+   </view>
+   <view class='iconfont icon-right'></view>
+  </view>
+ </view>
+ <view class='goodsmain_btn' bindtap='goadd_combo'>+添加套餐</view>
+</view>
+
+
+<view class='tixian_top reg_top'>
+ <view>
+  商品设置
+  <text class='tixian_minitxt'>Commodity setup</text>
+ </view>
+</view>
+<view class='goodsmain'>
+
+ <view class='goodsmain_item goods_cellbox'>
+ <view class='goods_cell' wx:for='{{[1,1,1,1]}}'>
+ <view class='goods_cellimg'>
+  <image src='../../../imgs/goods.png'></image>
+ </view>
+ <view class='goods_celltip'>百威啤酒</view>
+ <view class='goods_cellnum'>¥125.00</view>
+ </view>
+ 
+ 
+ </view>
+ <view class='goodsmain_btn' bindtap='goaddgoods'>+添加商品</view>
+ <view class='goodsmain_btn' bindtap='goone_add'>+一键添加</view>
+</view>
+<view class='merchant_nav'>
+ <view class='nav_icon' bindtap='gomerchant_index'>
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/zuduixinxi@3x.png'></image>
+  </view>
+  <view>商家首页</view>
+ </view>
+  <view class='nav_icon'>
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/shangpinlibeiao@3x.png'></image>
+  </view>
+  <view>商品列表</view>
+ </view>
+  <view class='nav_icon' bindtap='gomerchant_center'>
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/shangjiazhongxin@3x.png'></image>
+  </view>
+  <view>商家中心</view>
+ </view>
+</view>
diff --git b/pages/merchant/goodslist/goodslist.wxss a/pages/merchant/goodslist/goodslist.wxss
new file mode 100644
index 0000000..299f406
--- /dev/null
+++ a/pages/merchant/goodslist/goodslist.wxss
@@ -0,0 +1,111 @@
+/* pages/merchant/goodslist/goodslist.wxss */
+@import '../my_order/my_order.wxss';
+page{
+ padding:0 0 127rpx 0;
+}
+.my_ordertop{
+ background: #fff;
+ padding:26rpx 100rpx 16rpx 100rpx;
+}
+.order_item {
+color:#231815;
+font-size:25rpx;
+}
+.order_item .iconfont{
+ color:#fff;
+}
+.tixian_minitxt{
+ margin: 0 0 0 12rpx;
+}
+.goodsmain_item{
+ padding:5rpx 0;
+ border-bottom:1rpx solid rgb(224, 224, 231);
+}
+.goodsmain_item:last-child{
+ border:none;
+}
+.goodsmain{
+ margin: 30rpx 53rpx 50rpx 53rpx; 
+ color:#509FD6;
+ font-size:24rpx;
+}
+.goods_mini{
+ margin: 6rpx 0;
+ color:#9E9E9F;
+ font-size:18rpx;
+}
+.goodsmain_btn{
+ margin: 30rpx 0 40rpx 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 8rpx;
+ height: 48rpx;
+ background: #509FD6;
+ font-size:28rpx;
+ color:rgba(255,255,255,0.8);
+}
+.goodsmain_itemimg{
+ height: 223rpx;
+ margin: 0 0 27rpx 0;
+}
+.goodsmain_itemimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.goods_imgtxtbox{
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ 
+}
+.goods_imgtxtleft{
+ width:90%;
+}
+.goods_imgtxtlefttitle{
+
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ color:#509FD6;
+ font-size:24rpx;
+}
+.taocan_item{
+ margin: 0 0 20rpx 0;
+}
+.goods_cell{
+ width: 25%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+
+}
+.goods_cellimg{
+ width:100rpx;
+ height: 100rpx;
+ border-radius: 8rpx;
+ overflow: hidden;
+}
+.goods_cellimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.goods_celltip{
+ margin: 6rpx 0 14rpx 0;
+ border-radius: 8rpx;
+ color:#9E9E9F;
+ font-size:17rpx;
+ padding:0 10rpx;
+ border:1rpx solid #9E9E9F; 
+}
+.goods_cellnum{
+ color:#9E9E9F;
+ font-size:17rpx;
+}
+.goods_cellbox{
+ display: flex;
+ align-items: center;
+ border:none;
+}
\ No newline at end of file
diff --git b/pages/merchant/login/login.js a/pages/merchant/login/login.js
new file mode 100644
index 0000000..9e7e918
--- /dev/null
+++ a/pages/merchant/login/login.js
@@ -0,0 +1,71 @@
+// pages/login/login.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ goregister(){
+  wx.navigateTo({
+   url: '/pages/merchant/register/register'
+  })
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/login/login.json a/pages/merchant/login/login.json
new file mode 100644
index 0000000..4ac8886
--- /dev/null
+++ a/pages/merchant/login/login.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "登陆"}
\ No newline at end of file
diff --git b/pages/merchant/login/login.wxml a/pages/merchant/login/login.wxml
new file mode 100644
index 0000000..86d8b9f
--- /dev/null
+++ a/pages/merchant/login/login.wxml
@@ -0,0 +1,24 @@
+<!--pages/login/login.wxml-->
+<view class='my_content'>
+ <image src='../../../imgs/shenaghudenglubeijing@3x.png'></image>
+ <view class='login_box'>
+  <view class='input_item'>
+   <input placeholder='绑定手机' placeholder-class='input_place'></input>
+  </view>
+  <view class='input_item'>
+   <input placeholder='输入手机号' placeholder-class='input_place'></input>
+  </view>
+  <view class='input_item code'>
+   <input placeholder='绑定手机' placeholder-class='input_place'></input>
+   <view class='code_txt' bindtap='down'>获取验证码</view>
+  </view>
+  <view class='agree'>
+   <text class='iconfont icon-duigou'></text> 已阅读
+   <navigator class='agree_txt'url='/pages/merchant/user_agree/user_agree' hover-class="none">《用户注册协议》</navigator>
+  </view>
+  <view class='goindex' bindtap='goregister'>
+   <view class='goindex_txt' >进入首页</view>
+  </view>
+ </view>
+
+</view>
\ No newline at end of file
diff --git b/pages/merchant/login/login.wxss a/pages/merchant/login/login.wxss
new file mode 100644
index 0000000..3aa58d4
--- /dev/null
+++ a/pages/merchant/login/login.wxss
@@ -0,0 +1,85 @@
+/* pages/login/login.wxss */
+page{
+ background: #010938;
+}
+.login_box{
+ position: absolute;
+ top:0;
+ left:50%;
+ transform: translateX(-50%);
+ overflow-y: scroll;
+ height: 100%;
+width:530rpx;
+margin: 170rpx auto 0 auto;
+color:#fff;
+font-size:28rpx;
+}
+.input_item{
+ padding:16rpx 0;
+ border-bottom:1rpx solid #fff;
+ margin: 0 0 26rpx 0;
+}
+.input_place{
+ color:#fff;
+ font-size: 28rpx;
+}
+.code{
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.code input{
+ width:60%;
+}
+.code_txt{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding:2rpx 10rpx;
+ box-sizing: border-box;
+ width:178rpx;
+ height: 44rpx;
+ border:1rpx solid #fff;
+ border-radius: 10rpx;
+}
+.agree{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.agree_txt{
+ color:#009FE8;
+}
+.agree .iconfont{
+ display: inline-block;
+ border:1rpx solid rgba(255,255,255,0.7);
+ color:rgba(255,255,255,0.7);
+ margin: 0 13rpx 0 0;
+ font-size:20rpx;
+ border-radius: 33%;
+}
+.goindex{
+ position: fixed;
+ padding:27rpx 0;
+ bottom:300rpx;
+ left:50%;
+ transform: translateX(-50%);
+ width: 530rpx;
+
+ display: flex;
+ justify-items: center;
+ justify-content: center;
+ border-top:1rpx solid #fff;
+ border-bottom:1rpx solid #fff;
+}
+
+.goindex_txt{
+padding:4rpx 20rpx;
+background: rgba(255,255,255,0.7);
+border-radius: 10rpx;
+color:rgba(255,255,255,0.7);
+}
+.goindex_txt::active{
+opacity: 0.7;
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_activity/merchant_activity.js a/pages/merchant/merchant_activity/merchant_activity.js
new file mode 100644
index 0000000..db3e406
--- /dev/null
+++ a/pages/merchant/merchant_activity/merchant_activity.js
@@ -0,0 +1,66 @@
+// pages/merchant/merchant_activity/merchant_activity.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+ifshowadd:false
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/merchant_activity/merchant_activity.json a/pages/merchant/merchant_activity/merchant_activity.json
new file mode 100644
index 0000000..cf9323a
--- /dev/null
+++ a/pages/merchant/merchant_activity/merchant_activity.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "使用说明",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_activity/merchant_activity.wxml a/pages/merchant/merchant_activity/merchant_activity.wxml
new file mode 100644
index 0000000..ad76f45
--- /dev/null
+++ a/pages/merchant/merchant_activity/merchant_activity.wxml
@@ -0,0 +1,19 @@
+<!--pages/merchant/merchant_activity/merchant_activity.wxml-->
+<view class='tixian_top'>
+ <view>上传活动图片
+  <text class='tixian_minitxt'>Upload active pictures</text>
+ </view>
+</view>
+<view class='shareimg'>
+ <view class='add_activity'wx:if='{{ifshowadd}}'>
+  <view class='add_icon' >
+   <view class='iconfont icon-jia2'></view>
+  </view>
+ </view>
+ <image src='../../../imgs/huodotupian@3x.png'></image>
+</view>
+<view class='active_imgsize'>720*520大小</view>
+<view class='button_btn share_btn'>{{ifshowadd?'确定上传':'分享易拉宝邀请注册'}}</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_activity/merchant_activity.wxss a/pages/merchant/merchant_activity/merchant_activity.wxss
new file mode 100644
index 0000000..43688ff
--- /dev/null
+++ a/pages/merchant/merchant_activity/merchant_activity.wxss
@@ -0,0 +1,42 @@
+/* pages/merchant/merchant_activity/merchant_activity.wxss */
+@import '/pages/merchant/merchant_share/merchant_share.wxss';
+page{
+ padding:0 0 114rpx 0;
+}
+.shareimg{
+ position: relative;
+ margin: 169rpx auto 10rpx auto;
+ box-shadow: none;
+ border-radius: 20rpx;
+}
+.active_imgsize{
+ font-size:24rpx;
+ color:#595757;
+ text-align: center;
+}
+.add_activity{
+ position: absolute;
+ top:0;
+ left:0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: rgba(255,255,255,0.8);
+ z-index:2;
+ width:100%;
+ height: 100%;
+}
+.add_icon{
+ z-index:3;
+ width:185rpx;
+ height: 122rpx;
+ border-radius: 8rpx;
+ border:1rpx dashed #0768AC;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.add_icon .iconfont{
+color:#0768AC;
+font-size:60rpx;
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_addgoods/merchant_addgoods.js a/pages/merchant/merchant_addgoods/merchant_addgoods.js
new file mode 100644
index 0000000..4f759ab
--- /dev/null
+++ a/pages/merchant/merchant_addgoods/merchant_addgoods.js
@@ -0,0 +1,67 @@
+// pages/merchant/merchant_addgoods/merchant_addgoods.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  ifeidt:false
+
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/merchant_addgoods/merchant_addgoods.json a/pages/merchant/merchant_addgoods/merchant_addgoods.json
new file mode 100644
index 0000000..113dbb1
--- /dev/null
+++ a/pages/merchant/merchant_addgoods/merchant_addgoods.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "添加商品",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_addgoods/merchant_addgoods.wxml a/pages/merchant/merchant_addgoods/merchant_addgoods.wxml
new file mode 100644
index 0000000..ad0647e
--- /dev/null
+++ a/pages/merchant/merchant_addgoods/merchant_addgoods.wxml
@@ -0,0 +1,48 @@
+<!--pages/merchant/merchant_addgoods/merchant_addgoods.wxml-->
+<view class='tixian_top reg_top'>上传图片
+ <text class='tixian_minitxt'>Upload pictures</text>
+</view>
+<view class='merchant_img'>
+ <view class='addicon'>
+  <text class='iconfont icon-jia2'></text>
+ </view>
+ <image src='../../../imgs/item.png'></image>
+</view>
+<view class='merchant_itembox merchant_bottom'>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商品名称</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入商品名称'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商品价格</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入商品价格'></input>
+   </view>
+  </view>
+  <view>元</view>
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商品简介</view>
+   <view class='merchant_txt'>
+    <input placeholder='输入商品简介'></input>
+   </view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+</view>
+<view class='button_btn addgoods_btn' wx:if='{{ifeidt}}'>确定添加</view>
+
+<view class='btnbox' wx:else>
+<view class='button_btn eidt_btn'>确定修改</view>
+<view class='button_btn eidt_btn'>删除商品</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_addgoods/merchant_addgoods.wxss a/pages/merchant/merchant_addgoods/merchant_addgoods.wxss
new file mode 100644
index 0000000..292a1ff
--- /dev/null
+++ a/pages/merchant/merchant_addgoods/merchant_addgoods.wxss
@@ -0,0 +1,14 @@
+/* pages/merchant/merchant_addgoods/merchant_addgoods.wxss */
+@import '../merchant_register/merchant_register.wxss';
+page{
+ padding:0 0 114rpx 0;
+}
+.addgoods_btn{
+ margin: 400rpx 32rpx 0 32rpx;
+}
+.btnbox{
+  margin: 400rpx 32rpx 0 32rpx;
+}
+.eidt_btn{
+ margin: 0 0 20rpx 0;
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_center/merchant_center.js a/pages/merchant/merchant_center/merchant_center.js
new file mode 100644
index 0000000..aa64d37
--- /dev/null
+++ a/pages/merchant/merchant_center/merchant_center.js
@@ -0,0 +1,81 @@
+// pages/merchant/merchant_center/merchant_center.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ onLoad: function (options) {
+
+ },
+ gomerchant_index(){
+  wx.reLaunch({
+   url:'/pages/merchant/merchant_index/merchant_index'
+  })
+ },
+ gogoodslist(){
+  wx.reLaunch({
+   url:'/pages/merchant/goodslist/goodslist'
+  })
+ },
+ gomerchant_center(){
+  wx.reLaunch({
+   url:'/pages/merchant/merchant_center/merchant_center'
+  })
+ },
+
+ /**
+  * 生命周期函数--监听页面初次渲染完成
+  */
+ onReady: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面显示
+  */
+ onShow: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面隐藏
+  */
+ onHide: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面卸载
+  */
+ onUnload: function () {
+
+ },
+
+ /**
+  * 页面相关事件处理函数--监听用户下拉动作
+  */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+  * 页面上拉触底事件的处理函数
+  */
+ onReachBottom: function () {
+
+ },
+
+ /**
+  * 用户点击右上角分享
+  */
+ onShareAppMessage: function () {
+
+ }
+})
\ No newline at end of file
diff --git b/pages/merchant/merchant_center/merchant_center.json a/pages/merchant/merchant_center/merchant_center.json
new file mode 100644
index 0000000..835f23c
--- /dev/null
+++ a/pages/merchant/merchant_center/merchant_center.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "商家中心",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_center/merchant_center.wxml a/pages/merchant/merchant_center/merchant_center.wxml
new file mode 100644
index 0000000..6dc4aeb
--- /dev/null
+++ a/pages/merchant/merchant_center/merchant_center.wxml
@@ -0,0 +1,80 @@
+<!--pages/merchant/merchant_center/merchant_center.wxml-->
+<view class='account_infotop'>
+ <view class='head_box'>
+  <view class='head'>
+   <image src='../../../imgs/woman.png'></image>
+  </view>
+  <view class='head_txt'>商家名称</view>
+ </view>
+</view>
+<view class='merchant_itembox'>
+ <navigator class='merchant_tiem' hover-class="none" url='/pages/merchant/merchant_info/merchant_info'>
+  <view>
+   <text class='iconfont icon-wenjian'></text>商家信息
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ <navigator class='merchant_tiem' hover-class="none" url='/pages/merchant/account_manage/account_manage'>
+  <view>
+   <text class='iconfont icon-02'></text>账号管理
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ <view class='merchant_tiem'>
+  <view>
+   <text class='iconfont icon-02'></text>优惠设置
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <navigator class='merchant_tiem' hover-class="none" url='/pages/merchant/merchant_imgs/merchant_imgs'>
+  <view>
+   <text class='iconfont icon-tupian'></text>商家相册
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ <navigator class='merchant_tiem' hover-class="none" url='/pages/merchant/merchant_activity/merchant_activity'>
+  <view>
+   <text class='iconfont icon-iconset03100'></text>活动内容
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ <navigator class='merchant_tiem' hover-class="none" url='/pages/merchant/account_list/account_list'>
+  <view>
+   <text class='iconfont icon-gerenxinxi1'></text>运营账号管理
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ <navigator class='merchant_tiem'  hover-class="none" url='/pages/merchant/merchant_share/merchant_share'>
+  <view>
+   <text class='iconfont icon-zhifeiji'></text>商家推广
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ <navigator class='merchant_tiem' hover-class="none" url='/pages/merchant/merchant_explain/merchant_explain' >
+  <view>
+   <text class='iconfont icon-icon--'></text>使用说明
+  </view>
+  <view class='iconfont icon-right'></view>
+ </navigator>
+ 
+</view>
+<view class='merchant_nav'>
+ <view class='nav_icon' bindtap='gomerchant_index'>
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/zuduixinxi@3x.png'></image>
+  </view>
+  <view>商家首页</view>
+ </view>
+  <view class='nav_icon'  bindtap='gogoodslist'>
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/shangpinlibeiao@3x.png'></image>
+  </view>
+  <view>商品列表</view>
+ </view>
+  <view class='nav_icon' >
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/shangjiazhongxin@3x.png'></image>
+  </view>
+  <view>商家中心</view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_center/merchant_center.wxss a/pages/merchant/merchant_center/merchant_center.wxss
new file mode 100644
index 0000000..a63658d
--- /dev/null
+++ a/pages/merchant/merchant_center/merchant_center.wxss
@@ -0,0 +1,24 @@
+/* pages/merchant/merchant_center/merchant_center.wxss */
+@import '../account_info/account_info.wxss';
+page{
+ padding:0 0 127rpx 0;
+}
+.merchant_itembox{
+ margin: 130rpx 30rpx 0 30rpx;
+}
+.merchant_tiem{
+ padding:20rpx 0;
+ border-bottom:#eee 1px solid;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ color:#231815;
+ font-size:24rpx;
+}
+.merchant_tiem .iconfont{
+ color:#509FD6;
+ margin: 0 22rpx 0 0;
+}
+.merchant_tiem .icon-right{
+ color:#231815;
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_explain/merchant_explain.js a/pages/merchant/merchant_explain/merchant_explain.js
new file mode 100644
index 0000000..bd57fe7
--- /dev/null
+++ a/pages/merchant/merchant_explain/merchant_explain.js
@@ -0,0 +1,66 @@
+// pages/merchant/merchant_explain/merchant_explain.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 b/pages/merchant/merchant_explain/merchant_explain.json a/pages/merchant/merchant_explain/merchant_explain.json
new file mode 100644
index 0000000..cf9323a
--- /dev/null
+++ a/pages/merchant/merchant_explain/merchant_explain.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "使用说明",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_explain/merchant_explain.wxml a/pages/merchant/merchant_explain/merchant_explain.wxml
new file mode 100644
index 0000000..68af650
--- /dev/null
+++ a/pages/merchant/merchant_explain/merchant_explain.wxml
@@ -0,0 +1,4 @@
+<!--pages/merchant/merchant_explain/merchant_explain.wxml-->
+<view class='explain_mian'>
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin sodales pulvinar tempor. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam fermentum, nulla luctus pharetra vulputate, felis tellus mollis orci, sed rhoncus sapien nunc eget.
+</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_explain/merchant_explain.wxss a/pages/merchant/merchant_explain/merchant_explain.wxss
new file mode 100644
index 0000000..57322cf
--- /dev/null
+++ a/pages/merchant/merchant_explain/merchant_explain.wxss
@@ -0,0 +1,7 @@
+/* pages/merchant/merchant_explain/merchant_explain.wxss */
+.explain_mian{
+ color:#595757;
+ margin: 37rpx 32rpx 0 32rpx;
+ font-size:24rpx;
+line-height: 40rpx;
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_imgs/merchant_imgs.js a/pages/merchant/merchant_imgs/merchant_imgs.js
new file mode 100644
index 0000000..dd289fb
--- /dev/null
+++ a/pages/merchant/merchant_imgs/merchant_imgs.js
@@ -0,0 +1,66 @@
+// pages/merchant/merchant_imgs/merchant_imgs.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 b/pages/merchant/merchant_imgs/merchant_imgs.json a/pages/merchant/merchant_imgs/merchant_imgs.json
new file mode 100644
index 0000000..6786052
--- /dev/null
+++ a/pages/merchant/merchant_imgs/merchant_imgs.json
@@ -0,0 +1,5 @@
+{
+  "navigationBarTitleText": "商家相册",
+  "navigationBarTextStyle": "white",
+  "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_imgs/merchant_imgs.wxml a/pages/merchant/merchant_imgs/merchant_imgs.wxml
new file mode 100644
index 0000000..e167dcd
--- /dev/null
+++ a/pages/merchant/merchant_imgs/merchant_imgs.wxml
@@ -0,0 +1,17 @@
+<!--pages/merchant/merchant_imgs/merchant_imgs.wxml-->
+<view class='button_btn merchant_imgbtn'>上传图片</view>
+<view class='merchant_nav1'>
+<view class='merchant_navitem'>
+<view class='active'>全部</view>
+<view>环境</view>
+<view>其他</view>
+</view>
+</view>
+<view class='imgsbox' wx:for='{{[1,1,1]}}' wx:key>
+<view class='imgsbox_item' wx:for='{{[1,1,1]}}' wx:key>
+<image src='../../../imgs/goods.png'></image>
+</view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_imgs/merchant_imgs.wxss a/pages/merchant/merchant_imgs/merchant_imgs.wxss
new file mode 100644
index 0000000..fb7c499
--- /dev/null
+++ a/pages/merchant/merchant_imgs/merchant_imgs.wxss
@@ -0,0 +1,49 @@
+/* pages/merchant/merchant_imgs/merchant_imgs.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.merchant_imgbtn{
+ margin: 30rpx 32rpx 24rpx 32rpx;
+}
+.merchant_nav1{
+ height: 80rpx;
+ background: #0768AC;
+}
+.merchant_navitem{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding:0 84rpx;
+ height: 60rpx;
+ color:#231815;
+ font-size:36rpx;
+ border:1rpx solid rgba(255,255,255,0.7);
+}
+.merchant_navitem view{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 100%;
+}
+.merchant_navitem .active{
+ color:#fff;
+ border-bottom:4rpx solid #fff;
+}
+.imgsbox{
+ margin: 17rpx 0 0 0;
+ background: #509FD6;
+ display: flex;
+ justify-content: space-around;
+ align-items: center;
+ padding:20rpx 34rpx;
+}
+.imgsbox_item{
+ width:192rpx;
+ height: 152rpx;
+ border-radius: 8rpx;
+}
+.imgsbox_item image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_index/merchant_index.js a/pages/merchant/merchant_index/merchant_index.js
new file mode 100644
index 0000000..af76d3a
--- /dev/null
+++ a/pages/merchant/merchant_index/merchant_index.js
@@ -0,0 +1,85 @@
+// pages/merchant/merchant_index/merchant_index.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ goscan(){
+  wx.navigateTo({
+   url:'/pages/merchant/scan/scan'
+  })
+ },
+ gomerchant_index(){
+  wx.reLaunch({
+   url:'/pages/merchant/merchant_index/merchant_index'
+  })
+ },
+ gogoodslist(){
+  wx.reLaunch({
+   url:'/pages/merchant/goodslist/goodslist'
+  })
+ },
+ gomerchant_center(){
+  wx.reLaunch({
+   url:'/pages/merchant/merchant_center/merchant_center'
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/merchant_index/merchant_index.json a/pages/merchant/merchant_index/merchant_index.json
new file mode 100644
index 0000000..762c0af
--- /dev/null
+++ a/pages/merchant/merchant_index/merchant_index.json
@@ -0,0 +1,5 @@
+{
+  "navigationBarTitleText": "首页",
+  "navigationBarTextStyle": "white",
+  "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_index/merchant_index.wxml a/pages/merchant/merchant_index/merchant_index.wxml
new file mode 100644
index 0000000..530f90b
--- /dev/null
+++ a/pages/merchant/merchant_index/merchant_index.wxml
@@ -0,0 +1,66 @@
+<!--pages/merchant/merchant_index/merchant_index.wxml-->
+<navigator class='index_head' hover-class="none" url='/pages/merchant/goodslist/goodslist'>
+ <image src='../../../imgs/item.png'></image>
+</navigator>
+<view class='index_item'>
+ <view class='index_itemhead'>
+  <image src='../../../imgs/goods.png'></image>
+ </view>
+ <view class='index_itemtxt'>
+  <view>张三</view>
+  <view>3人</view>
+ </view>
+ <view class='index_access'>组队说明组队说明组队说明 组队说明组队说明
+ </view>
+ <view class='index_num'>预算1000</view>
+</view>
+<view class='index_btn'>
+ <view>接受</view>
+ <view>拒绝</view>
+</view>
+<view class='index_item'>
+ <view class='index_itemhead'>
+  <image src='../../../imgs/goods.png'></image>
+ </view>
+ <view class='index_itemtxt'>
+  <view>张三</view>
+  <view>3人</view>
+ </view>
+ <view class='index_access'>组队说明组队说明组队说明 组队说明组队说明
+ </view>
+ <view class='index_num'>预算1000</view>
+</view>
+<view class='order_pel'>
+ <view class='order_pel_imgs'>
+  <view class='order_pel_imgsitem' wx:for='{{[1,1,1,1]}}' wx:key>
+   <image src='../../../imgs/goods.png'></image>
+  </view>
+ </view>
+ <view>已有3人报名</view>
+</view>
+<view class='index_sao'>
+ <view class='index_saocode' bindtap='goscan'>
+  <text class='iconfont icon-iconfontsaoyisao'></text>
+ </view>
+ <view>扫描二维码</view>
+</view>
+<view class='merchant_nav'>
+ <view class='nav_icon' >
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/zuduixinxi@3x.png'></image>
+  </view>
+  <view>商家首页</view>
+ </view>
+  <view class='nav_icon'  bindtap='gogoodslist'>
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/shangpinlibeiao@3x.png'></image>
+  </view>
+  <view>商品列表</view>
+ </view>
+  <view class='nav_icon' bindtap='gomerchant_center'>
+  <view class='nav_iconimg'>
+   <image src='../../../imgs/shangjiazhongxin@3x.png'></image>
+  </view>
+  <view>商家中心</view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_index/merchant_index.wxss a/pages/merchant/merchant_index/merchant_index.wxss
new file mode 100644
index 0000000..33636d3
--- /dev/null
+++ a/pages/merchant/merchant_index/merchant_index.wxss
@@ -0,0 +1,105 @@
+/* pages/merchant/merchant_index/merchant_index.wxss */
+@import '../my_order/my_order.wxss';
+page{
+ padding:0 0 127rpx 0;
+}
+.index_head{
+ height: 240rpx;
+}
+.index_head image{
+ width:100%;
+ height:100%;
+}
+.index_item{
+ margin: 15rpx 0 0 0;
+ display: flex;
+ align-items: center;
+  background: linear-gradient(to right, #415DAA , #24B2DC,#35BFB5);
+  padding:25rpx 52rpx 40rpx 25rpx;
+}
+.index_itemhead{
+ width:92rpx;
+ height: 92rpx;
+ border-radius: 8rpx;
+ overflow: hidden;
+ margin: 0 40rpx 0 0;
+}
+.index_itemhead image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.index_itemtxt{
+ width:17%;
+ color:#fff;
+ font-size:32rpx;
+ 
+}
+.index_access{
+ width:43%;
+ color:#fff;
+ font-size:18rpx;
+
+
+}
+.index_num{
+ width:20%;
+ font-size:28rpx;
+ text-align: right;
+ color:#fff;
+ 
+}
+.index_btn{
+ margin: 10rpx 0 30rpx 0;
+ background: #509FD6;
+ padding:0 150rpx;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ height: 60rpx;
+}
+
+.index_btn view{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 8rpx;
+ height: 36rpx;
+ width:134rpx;
+ background: #fff;
+ color:#509FD6;
+ font-size: 28rpx;
+}
+.index_btn view:active{
+ opacity: 0.7;
+}
+.order_pel {
+ padding:10rpx 25rpx;
+}
+.index_sao{
+ padding:30rpx 0 20rpx 0;
+ background: #509FD6;
+ color:#fff;
+ font-size:28rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
+.index_saocode{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width:115rpx;
+ height: 115rpx;
+ margin: 0 0 8rpx 0;
+ /* border:1rpx solid #fff;  */
+}
+.index_saocode .iconfont{
+ font-size: 147rpx;
+}
+.index_saocode image{
+ width:100%;
+ height:100%;
+ display: block;
+}
diff --git b/pages/merchant/merchant_info/merchant_info.js a/pages/merchant/merchant_info/merchant_info.js
new file mode 100644
index 0000000..6496fa3
--- /dev/null
+++ a/pages/merchant/merchant_info/merchant_info.js
@@ -0,0 +1,66 @@
+// pages/merchant/merchant_info/merchant_info.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 b/pages/merchant/merchant_info/merchant_info.json a/pages/merchant/merchant_info/merchant_info.json
new file mode 100644
index 0000000..f060f9d
--- /dev/null
+++ a/pages/merchant/merchant_info/merchant_info.json
@@ -0,0 +1,5 @@
+{
+  "navigationBarTitleText": "商户信息",
+  "navigationBarTextStyle": "white",
+  "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_info/merchant_info.wxml a/pages/merchant/merchant_info/merchant_info.wxml
new file mode 100644
index 0000000..0e0b7ab
--- /dev/null
+++ a/pages/merchant/merchant_info/merchant_info.wxml
@@ -0,0 +1,87 @@
+<!--pages/merchant/merchant_info/merchant_info.wxml-->
+<view class='merchant_itembox merchant_reg'>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商户名</view>
+   <view class='merchant_txt'><input placeholder='请输入商家名称' placeholder-class='placeholderclass'></input></view>
+  </view>
+
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>类 型</view>
+   <view class='merchant_txt'>选择类型</view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>城市</view>
+   <view class='merchant_txt'>选择城市</view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>详细地址</view>
+   <view class='merchant_txt'><input placeholder='填写详细地址' placeholder-class='placeholderclass'></input></view>
+  </view>
+  <view class='iconfont icon-dingwei'></view>
+ </view>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>营业时间</view>
+   <view class='merchant_txt'>请选择营业时间</view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ 
+</view>
+<view class='merchant_itembox merchant_reg'>
+</view>
+<view class='tixian_top reg_top'>店铺内景及活动
+ <text class='tixian_minitxt'>Shop Inside View and Activities</text>
+</view>
+<view class='merchant_img'>
+ <view class='addicon'>
+  <text class='iconfont icon-jia2'></text>
+ </view>
+ <image src='../../../imgs/item.png'></image>
+</view>
+<view class='tixian_top reg_top'>店铺封面
+ <text class='tixian_minitxt'>Shop cover</text>
+</view>
+<view class='merchant_img'>
+ <view class='addicon'>
+  <text class='iconfont icon-jia2'></text>
+ </view>
+ <image src='../../../imgs/item.png'></image>
+</view>
+<view class='tixian_top '>
+ <view>设施服务
+  <text class='tixian_minitxt'>Facilities services</text>
+ </view>
+ <view>删除</view>
+</view>
+<view class='merchant_itembox merchant_bottom' wx:for='{{[1,1]}}'>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip blue_tip'>标签</view>
+   <view class='merchant_txt'><input placeholder='输入酒吧服务设施标签如“演艺人员' placeholder-class='input_p'></input></view>
+  </view> 
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip blue_tip'>具体</view>
+   <view class='merchant_txt'> 
+   <input placeholder='输入此标签具体内容如“调酒师”' placeholder-class='input_p' ></input>
+   
+   </view>
+  </view>
+ 
+ </view>
+ <view class='iconfont icon-guanbi'></view>
+</view>
+<view class='button_btn add_item'>+酒吧设施</view>
+<view class='button_btn reg_btn' bindtap='gomerchant_yes'>确定修改</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_info/merchant_info.wxss a/pages/merchant/merchant_info/merchant_info.wxss
new file mode 100644
index 0000000..b29a13b
--- /dev/null
+++ a/pages/merchant/merchant_info/merchant_info.wxss
@@ -0,0 +1,2 @@
+/* pages/merchant/merchant_info/merchant_info.wxss */
+@import '/pages/merchant/merchant_register/merchant_register.wxss';
\ No newline at end of file
diff --git b/pages/merchant/merchant_register/merchant_register.js a/pages/merchant/merchant_register/merchant_register.js
new file mode 100644
index 0000000..6bb2d3a
--- /dev/null
+++ a/pages/merchant/merchant_register/merchant_register.js
@@ -0,0 +1,71 @@
+// pages/merchant/merchant_register /merchant_register.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ gomerchant_yes(){
+  wx.navigateTo({
+   url: '/pages/merchant/register_yes/register_yes',
+  })
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/merchant_register/merchant_register.json a/pages/merchant/merchant_register/merchant_register.json
new file mode 100644
index 0000000..75f88ed
--- /dev/null
+++ a/pages/merchant/merchant_register/merchant_register.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "完善信息",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_register/merchant_register.wxml a/pages/merchant/merchant_register/merchant_register.wxml
new file mode 100644
index 0000000..ae1c46b
--- /dev/null
+++ a/pages/merchant/merchant_register/merchant_register.wxml
@@ -0,0 +1,49 @@
+<!--pages/merchant/merchant_register /merchant_register.wxml-->
+
+<view class='merchant_itembox merchant_reg'>
+</view>
+<view class='tixian_top reg_top'>店铺内景及活动
+ <text class='tixian_minitxt'>Shop Inside View and Activities</text>
+</view>
+<view class='merchant_img'>
+ <view class='addicon'>
+  <text class='iconfont icon-jia2'></text>
+ </view>
+ <image src='../../../imgs/item.png'></image>
+</view>
+<view class='tixian_top reg_top'>店铺封面
+ <text class='tixian_minitxt'>Shop cover</text>
+</view>
+<view class='merchant_img'>
+ <view class='addicon'>
+  <text class='iconfont icon-jia2'></text>
+ </view>
+ <image src='../../../imgs/item.png'></image>
+</view>
+<view class='tixian_top '>
+ <view>设施服务
+  <text class='tixian_minitxt'>Facilities services</text>
+ </view>
+ <view>删除</view>
+</view>
+<view class='merchant_itembox merchant_bottom' wx:for='{{[1,1]}}'>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip blue_tip'>标签</view>
+   <view class='merchant_txt'><input placeholder='输入酒吧服务设施标签如“演艺人员' placeholder-class='input_p'></input></view>
+  </view> 
+ </view>
+ <view class='merchant_tiem maerchant_input'>
+  <view class='merchant_left'>
+   <view class='merchant_tip blue_tip'>具体</view>
+   <view class='merchant_txt'> 
+   <input placeholder='输入此标签具体内容如“调酒师”' placeholder-class='input_p' ></input>
+   
+   </view>
+  </view>
+ 
+ </view>
+ <view class='iconfont icon-guanbi'></view>
+</view>
+<view class='button_btn add_item'>+添加卡座</view>
+<view class='button_btn reg_btn' bindtap='gomerchant_yes'>提交审核</view>
\ No newline at end of file
diff --git b/pages/merchant/merchant_register/merchant_register.wxss a/pages/merchant/merchant_register/merchant_register.wxss
new file mode 100644
index 0000000..4efb6e6
--- /dev/null
+++ a/pages/merchant/merchant_register/merchant_register.wxss
@@ -0,0 +1,103 @@
+/* pages/merchant/merchant_register/merchant_register.wxss */
+@import '../merchant_center/merchant_center.wxss';
+.merchant_reg{
+ margin: 54rpx 32rpx 0 32rpx;
+}
+.maerchant_input{
+ padding:10rpx 0;
+ border-bottom:none;
+}
+.merchant_txt{
+ color:#9E9E9F;
+ font-size:24rpx;
+}
+.input_p{
+ color:#9E9E9F;
+ font-size:24rpx;
+}
+.merchant_left{
+ width:90%;
+ display: flex;
+ align-items: center;
+ color:#231815;
+}
+.merchant_tip{
+ width:28%;
+}
+.merchant_txt{
+ width:70%;
+ 
+}
+.merchant_txt input{
+ width:100%;
+ height: 100%;
+}
+.merchant_tiem .iconfont{
+ width:2%;
+}
+.merchant_tiem .icon-dingwei{
+ color:#509FD6;
+}
+.reg_top{
+ justify-content: left;
+ align-items: center;
+}
+ .tixian_minitxt{
+ margin: 0 0 0 15rpx;
+}
+.merchant_img{
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 16rpx 30rpx 0 30rpx;
+ height: 221rpx;
+ border-radius: 10rpx;
+ overflow: hidden;
+}
+.merchant_img image{
+ display: block;
+ height: 100%;
+ width: 100%;
+}
+.addicon{
+ width:185rpx;
+ height: 122rpx;
+ border:1px #fff dashed;
+ border-radius: 10rpx;
+ position: absolute;
+ /* top:50%; */
+ left:50%;
+ transform: translateX(-50%);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.addicon .iconfont{
+ color:#fff;
+ font-size:68rpx;
+}
+.merchant_bottom{
+ position: relative;
+ margin: 40rpx 100rpx 0 32rpx;
+}
+.merchant_bottom  .iconfont{
+ position: absolute;
+ top:50%;
+ right: -68rpx;
+ color:#509FD6;
+ transform: translateY(-50%);
+}
+.add_item{
+ margin: 27rpx 47rpx 57rpx 47rpx;
+ height: 47rpx;
+ color:#FFFFFF;
+ font-size: 28rpx;
+ font-weight: normal;
+}
+.reg_btn{
+ margin: 0 32rpx 70rpx 32rpx;
+}
+.blue_tip{
+ color:#509FD6;
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_registerinfo/merchant_registerinfo.js a/pages/merchant/merchant_registerinfo/merchant_registerinfo.js
new file mode 100644
index 0000000..4676722
--- /dev/null
+++ a/pages/merchant/merchant_registerinfo/merchant_registerinfo.js
@@ -0,0 +1,66 @@
+// pages/merchant/merchant_registerinfo/merchant_registerinfo.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 b/pages/merchant/merchant_registerinfo/merchant_registerinfo.json a/pages/merchant/merchant_registerinfo/merchant_registerinfo.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/merchant/merchant_registerinfo/merchant_registerinfo.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/merchant/merchant_registerinfo/merchant_registerinfo.wxml a/pages/merchant/merchant_registerinfo/merchant_registerinfo.wxml
new file mode 100644
index 0000000..7b010c0
--- /dev/null
+++ a/pages/merchant/merchant_registerinfo/merchant_registerinfo.wxml
@@ -0,0 +1,2 @@
+<!--pages/merchant/merchant_registerinfo/merchant_registerinfo.wxml-->
+
diff --git b/pages/merchant/merchant_registerinfo/merchant_registerinfo.wxss a/pages/merchant/merchant_registerinfo/merchant_registerinfo.wxss
new file mode 100644
index 0000000..c240974
--- /dev/null
+++ a/pages/merchant/merchant_registerinfo/merchant_registerinfo.wxss
@@ -0,0 +1 @@
+/* pages/merchant/merchant_registerinfo/merchant_registerinfo.wxss */
\ No newline at end of file
diff --git b/pages/merchant/merchant_share/merchant_share.js a/pages/merchant/merchant_share/merchant_share.js
new file mode 100644
index 0000000..60d2cec
--- /dev/null
+++ a/pages/merchant/merchant_share/merchant_share.js
@@ -0,0 +1,66 @@
+// pages/merchant/merchant_share/merchant_share.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 b/pages/merchant/merchant_share/merchant_share.json a/pages/merchant/merchant_share/merchant_share.json
new file mode 100644
index 0000000..35f8184
--- /dev/null
+++ a/pages/merchant/merchant_share/merchant_share.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "商家推广",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/merchant_share/merchant_share.wxml a/pages/merchant/merchant_share/merchant_share.wxml
new file mode 100644
index 0000000..53787fc
--- /dev/null
+++ a/pages/merchant/merchant_share/merchant_share.wxml
@@ -0,0 +1,10 @@
+<!--pages/merchant/merchant_share/merchant_share.wxml-->
+<view class='share_toptxt'>您可将此分享图片保存至您的公众号中,
+方便用户更快捷的再您的酒吧消费</view>
+<view class='shareimg'>
+<image src='../../../imgs/huodotupian@3x.png'></image>
+</view>
+<view class='button_btn share_btn'>分享易拉宝邀请注册</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
diff --git b/pages/merchant/merchant_share/merchant_share.wxss a/pages/merchant/merchant_share/merchant_share.wxss
new file mode 100644
index 0000000..635c195
--- /dev/null
+++ a/pages/merchant/merchant_share/merchant_share.wxss
@@ -0,0 +1,30 @@
+/* pages/merchant/merchant_share/merchant_share.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.share_toptxt{
+ margin: 68rpx 163rpx 93rpx 163rpx;
+ color:#231815;
+ font-size:24rpx;
+ text-align: center;
+ line-height: 39rpx;
+}
+.shareimg{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto;
+ width:358rpx;
+ height: 500rpx;
+ border-radius: 8rpx;
+ overflow: hidden;
+ box-shadow: 10rpx 14rpx 30rpx rgba(0,0,0,0.6);
+}
+.shareimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.share_btn{
+ margin: 120rpx 32rpx 30rpx 32rpx;
+}
diff --git b/pages/merchant/my_order/my_order.js a/pages/merchant/my_order/my_order.js
new file mode 100644
index 0000000..afa5a87
--- /dev/null
+++ a/pages/merchant/my_order/my_order.js
@@ -0,0 +1,70 @@
+// pages/merchant/my_order/my_order.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ gopay_detail(){
+  wx.navigateTo({
+   url: '/pages/merchant/pay_detail/pay_detail'
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/merchant/my_order/my_order.json a/pages/merchant/my_order/my_order.json
new file mode 100644
index 0000000..a856926
--- /dev/null
+++ a/pages/merchant/my_order/my_order.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "我的订单",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/my_order/my_order.wxml a/pages/merchant/my_order/my_order.wxml
new file mode 100644
index 0000000..2ac14e5
--- /dev/null
+++ a/pages/merchant/my_order/my_order.wxml
@@ -0,0 +1,55 @@
+<!--pages/merchant/my_order/my_order.wxml-->
+<view class='my_ordertop'>
+ <view class='order_item'>
+  <view class='order_topicon'>
+   <text class='iconfont icon-qian'></text>
+  </view>
+  <view>待支付</view>
+ </view>
+ <view class='order_item'>
+  <view class='order_topicon'>
+   <text class='iconfont icon-iconfontzhizuobiaozhunbduan22'></text>
+  </view>
+  <view>已支付</view>
+ </view>
+ <view class='order_item'>
+  <view class='order_topicon'>
+   <text class='iconfont icon-jinzhi'></text>
+  </view>
+  <view>已取消</view>
+ </view>
+</view>
+<view wx:for='{{[1,1,1,1]}}' wx:key  bindtap='gopay_detail'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianouneirjing@3x.png'></image>
+ </view>
+ <view class='order_itembottom'>
+  <view class='order_left'>
+   <view class='order_itemimg'>
+    <image src='../../../imgs/goods.png'></image>
+   </view>
+   <view class='order_itemtxt'>
+    <view>报名人数:3人</view>
+    <view>预算金额:1000元</view>
+    <view>开始时间:今天(9-15)18:00</view>
+   </view>
+  </view>
+  <view class='order_rigth'>拼单成功</view>
+ </view>
+ <view class='order_pel'>
+  <view class='order_pel_imgs'>
+   <view class='order_pel_imgsitem' wx:for='{{[1,1,1,1]}}' wx:key>
+    <image src='../../../imgs/goods.png'></image>
+   </view>
+  </view>
+  <view>小计:¥1000</view>
+ </view>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/my_order/my_order.wxss a/pages/merchant/my_order/my_order.wxss
new file mode 100644
index 0000000..6eb554c
--- /dev/null
+++ a/pages/merchant/my_order/my_order.wxss
@@ -0,0 +1,120 @@
+/* pages/merchant/my_order/my_order.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.my_ordertop{
+ margin: 16rpx 0 0 0;
+ background:#0768AC;
+ padding:26rpx 100rpx 30rpx 100rpx;
+ display: flex;
+ justify-content: space-around;
+ align-items: center;
+}
+.order_item{
+ text-align: center;
+ color:#fff;
+ font-size:25rpx;
+}
+.order_topicon{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 0 4prx 0;
+ height: 80rpx;
+ width:80rpx;
+ border-radius: 10rpx;
+ background: #509FD6;
+}
+.order_topicon .iconfont{
+ font-size:60rpx;
+
+}
+.order_topicon .icon-iconfontzhizuobiaozhunbduan22{
+ font-size:50rpx;
+}
+.order_img{
+ margin: 18rpx 0 0 0;
+ position: relative;
+ height: 210rpx;
+}
+.order_img image{
+ width:100%;
+ height: 100%; 
+
+}
+.order_imgtxt{
+ position: absolute;
+ top:12rpx;
+ left:47rpx;
+ color:#fff;
+ font-size:36rpx;
+ font-weight: bold;
+}
+.order_imgtime{
+ position: absolute;
+ bottom:18rpx;
+ right: 28rpx;
+ color:rgba(255,255,255,0.8);
+ font-size:22rpx;
+}
+.order_imgtxtsubtitle{
+ font-size:24rpx;
+}
+.order_itembottom{
+ display: flex;
+justify-content: space-between;
+ background: #509FD6;
+ padding:35rpx 29rpx 20rpx 35rpx;
+}
+.order_left{
+ display: flex;
+}
+.order_itemimg{
+ width:92rpx;
+ height: 92rpx;
+ border-radius: 5rpx;
+ margin: 0 30rpx 0 0;
+
+}
+.order_itemimg image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.order_itemtxt{
+ text-align: left;
+ width:400rpx;
+ font-size: 22rpx;
+ color:rgba(255,255,255,0.8);
+}
+.order_rigth{
+ color:#0768AC;
+ font-size:24rpx;
+}
+.order_pel{
+ margin: 10rpx 0 60rpx 0;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 0 25rpx;
+ background:#509FD6;
+ font-size:22rpx;
+ color:rgba(255,255,255,0.8);
+}
+.order_pel_imgs{
+ display: flex;
+ align-items: center;
+ width:80%;
+ height: 44rpx;
+}
+.order_pel_imgsitem{
+ width:44rpx;
+ height: 100%;
+ border-radius: 2rpx;
+ margin: 0 10rpx 0 0;
+}
+.order_pel_imgsitem image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
\ No newline at end of file
diff --git b/pages/merchant/one_add/one_add.js a/pages/merchant/one_add/one_add.js
new file mode 100644
index 0000000..a54f367
--- /dev/null
+++ a/pages/merchant/one_add/one_add.js
@@ -0,0 +1,66 @@
+// pages/merchant/one_add/one_add.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 b/pages/merchant/one_add/one_add.json a/pages/merchant/one_add/one_add.json
new file mode 100644
index 0000000..b51299c
--- /dev/null
+++ a/pages/merchant/one_add/one_add.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "一键添加",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/one_add/one_add.wxml a/pages/merchant/one_add/one_add.wxml
new file mode 100644
index 0000000..1ec834e
--- /dev/null
+++ a/pages/merchant/one_add/one_add.wxml
@@ -0,0 +1,21 @@
+<!--pages/merchant/one_add/one_add.wxml-->
+<view class='goods_item' wx:for='{{[1,1,1]}}' wx:key>
+<view class='goods_main'>
+<view class='goods_img'>
+<image src='../../../imgs/goods.png'></image>
+</view>
+<view class='goods_txt'>百威啤酒诞生于1876年,由阿道弗斯·布希创办。
+它采用质量最佳的纯天然 材料,以严谨的工艺控制,通过自然发酵,
+低温储藏而酿成。整个生产流程中不使用任何人造成份、添加剂或防腐剂。</view>
+</view>
+<view class='goods_buttom'>
+<view class='good_txt'>百威啤酒</view>
+<view class='good_price'>
+<input placeholder='请输入价格' placeholder-class='input_p'></input></view>
+</view>
+</view>
+
+<view class='button_btn one_addbtn'>确定添加</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/one_add/one_add.wxss a/pages/merchant/one_add/one_add.wxss
new file mode 100644
index 0000000..774bf80
--- /dev/null
+++ a/pages/merchant/one_add/one_add.wxss
@@ -0,0 +1,55 @@
+/* pages/merchant/one_add/one_add.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.goods_item{
+ margin: 26rpx 0 0 0;
+ background: #509FD6;
+ color:rgba(255,255,255,0.8);
+ font-size:20rpx;
+ padding:15rpx 35rpx;
+}
+.goods_main{
+ display: flex;
+
+}
+.goods_img{
+ width:100rpx;
+ height: 100rpx;
+ border-radius: 8rpx;
+ margin: 0 15rpx 0 0;
+ border:4rpx solid #fff;
+}
+.goods_img image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.goods_txt{
+ width:450rpx;
+}
+.goods_buttom{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+.good_txt{
+font-size:24rpx;
+border:1rpx solid rgba(255,255,255,0.8);
+padding:0 20rpx;
+border-radius: 10rpx;
+color:rgba(255,255,255,0.8);
+}
+.good_price{
+ width:130rpx;
+}
+.good_price input{
+ width:100%;
+}
+.input_p{
+ color:#0768AC;
+ font-size:24rpx;
+}
+.one_addbtn{
+ margin: 300rpx 32rpx 0 32rpx;
+}
\ No newline at end of file
diff --git b/pages/merchant/pay_detail/pay_detail.js a/pages/merchant/pay_detail/pay_detail.js
new file mode 100644
index 0000000..65551c2
--- /dev/null
+++ a/pages/merchant/pay_detail/pay_detail.js
@@ -0,0 +1,66 @@
+// pages/merchant/pay_detail/pay.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 b/pages/merchant/pay_detail/pay_detail.json a/pages/merchant/pay_detail/pay_detail.json
new file mode 100644
index 0000000..acd6da9
--- /dev/null
+++ a/pages/merchant/pay_detail/pay_detail.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "支付",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/pay_detail/pay_detail.wxml a/pages/merchant/pay_detail/pay_detail.wxml
new file mode 100644
index 0000000..a70f4ba
--- /dev/null
+++ a/pages/merchant/pay_detail/pay_detail.wxml
@@ -0,0 +1,45 @@
+<!--pages/merchant/pay_detail/pay.wxml-->
+<view class='tixian_top '>
+ <view>散座(2-8人)
+  <text class='tixian_minitxt'>Loose seats (2-8 persons)</text>
+ </view>
+ <view class='tixian_minitxt'>今天(09-12)18:00</view>
+</view>
+<view class='pay_goodsbox'>
+ <view class='pay_goodsitem' wx:for='{{[1,1]}}' wx:key>
+  <view>百威啤酒 X1</view>
+  <view>¥12</view>
+ </view>
+ <view class='pay_goodsitem' wx:for='{{[1]}}' wx:key>
+  <view class='formitem_rigth_jian'> <text class='jian_txt'> 减</text></view>
+  <view>-¥20</view>
+ </view>
+</view>
+<view class='pay_price'>
+ <view>小计</view>
+ <view class='pay_pricenum'><text class='pay_pricenum_nimi'>¥</text>12<text class='pay_pricenum_nimi'>.00</text></view>
+</view>
+
+<view class='pay_all'>
+ <view class='pay_allitem'>
+ <view>合计</view>
+  <view class='pay_pricenum'><text class='pay_pricenum_nimi'>¥</text>12<text class='pay_pricenum_nimi'>.00</text></view>
+ </view>
+ <view class='pay_allitem'>
+ <view>需支付</view>
+  <view class='pay_pricenum'><text class='pay_pricenum_nimi'>¥</text>12<text class='pay_pricenum_nimi'>.00</text></view>
+ </view>
+</view>
+<!-- 文字居中 -->
+<view class='pay_all pay_center'>
+ 订单拼团失败
+</view>
+<view class='pay_people' wx:for='{{[1,1]}}' wx:key>
+ <view class='pay_peopletxt'>2人未支付</view>
+ <view class='pay_peopleitem' wx:for='{{[1,1]}}' wx:key>
+  <view class='people_headimg'>
+   <image src='../../../imgs/goods.png'></image>
+  </view>
+  <view>张三</view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/pay_detail/pay_detail.wxss a/pages/merchant/pay_detail/pay_detail.wxss
new file mode 100644
index 0000000..93a2ff9
--- /dev/null
+++ a/pages/merchant/pay_detail/pay_detail.wxss
@@ -0,0 +1,98 @@
+/* pages/merchant/pay_detail/pay.wxss */
+@import '../merchant_register/merchant_register.wxss';
+.tixian_minitxt{
+ color:rgba(255,255,255,0.8);
+}
+.pay_goodsbox{
+ padding:0 35rpx 20rpx 65rpx;
+ margin: 14rpx 0 0 0;
+ background: #509FD6;
+ color:rgba(255,255,255,0.8);
+ font-size:26rpx;
+}
+.pay_goodsitem{
+ padding:20rpx 0 0 0;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ 
+}
+.pay_price{
+ display: flex;
+ align-items: center;
+ justify-content: flex-end;
+ background: #509FD6;
+ margin: 30rpx 0 0 0;
+ padding:0 36rpx;
+ height: 60rpx;
+ line-height: 60rpx;
+ font-size:36rpx;
+ text-align: right;
+ color:#fff;
+}
+.pay_pricenum{
+font-size: 28rpx;
+margin: 0 0 0 30rpx;
+}
+.pay_all{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background: #0768AC;
+ margin: 30rpx 0 0 0;
+ padding:0 120rpx;
+ height: 60rpx;
+ line-height: 60rpx;
+ font-size:36rpx;
+ color:#fff;
+ text-align: center
+}
+.pay_center{
+ justify-content: center;
+}
+.pay_allitem{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+.pay_allitem .pay_pricenum{
+ margin: 0 0 0 30rpx;
+}
+.pay_peopletxt{
+ padding:44rpx 22rpx 14rpx 22rpx;
+ color:#4F95C8;
+ font-size:20rpx;
+}
+.pay_peopleitem{
+ display: flex;
+ margin: 0 0 5rpx 0;
+ align-items: center;
+ background: #4F95C8;
+ color:rgba(255,255,255,0.8);
+ font-size:36rpx;
+ padding:20rpx 16rpx;
+}
+.pay_peopleitem:last-child{
+ margin: 0;
+}
+.people_headimg{
+ width:92rpx;
+ height: 92rpx;
+ border-radius: 8rpx;
+ margin: 0 46rpx 0 0;
+}
+.people_headimg image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.formitem_rigth_jian{
+ margin: 0;
+ width:36rpx;
+ height:36rpx;
+ font-size:20rpx;
+ background:linear-gradient(0deg,#0DAC69, #2AA6D7 );
+}
+.pay_pricenum_nimi{
+ font-size:19rpx;
+}
\ No newline at end of file
diff --git b/pages/merchant/register/register.js a/pages/merchant/register/register.js
new file mode 100644
index 0000000..38be8c8
--- /dev/null
+++ a/pages/merchant/register/register.js
@@ -0,0 +1,314 @@
+// pages/merchant/register/register.js
+var that=this;
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  choose:true,
+  temtime:[0,0],
+  time:[0,0],
+  timetxt:'',
+  starttime:[
+   {
+    time:'00:00',
+    value:0
+   },
+   {
+    time: '01:00',
+    value: 1
+   },
+   {
+    time: '02:00',
+    value: 2
+   },
+   {
+    time: '03:00',
+    value: 3
+   },
+   {
+    time: '04:00',
+    value: 4
+   },
+   {
+    time: '05:00',
+    value: 5
+   },
+   {
+    time: '06:00',
+    value: 6
+   },
+   {
+    time: '07:00',
+    value: 7
+   },
+   {
+    time: '08:00',
+    value: 8
+   },
+   {
+    time: '09:00',
+    value: 9
+   },
+   {
+    time: '10:00',
+    value: 10
+   },
+   {
+    time: '11:00',
+    value: 11
+   },
+   {
+    time: '01:00',
+    value: 1
+   },
+   {
+    time: '12:00',
+    value: 12
+   },
+   {
+    time: '13:00',
+    value: 13
+   },
+   {
+    time: '14:00',
+    value: 14
+   },
+   {
+    time: '15:00',
+    value: 15
+   },
+   {
+    time: '16:00',
+    value: 16
+   },
+   {
+    time: '17:00',
+    value: 17
+   },
+   {
+    time: '18:00',
+    value: 18
+   },
+   {
+    time: '19:00',
+    value: 19
+   },
+   {
+    time: '20:00',
+    value: 20
+   },
+   {
+    time: '21:00',
+    value: 21
+   },
+   {
+    time: '22:00',
+    value: 22
+   },
+   {
+    time: '23:00',
+    value: 23
+   }
+  
+  ],
+  endtime: [
+   {
+    time: '00:00',
+    value: 0
+   },
+   {
+    time: '01:00',
+    value: 1
+   },
+   {
+    time: '02:00',
+    value: 2
+   },
+   {
+    time: '03:00',
+    value: 3
+   },
+   {
+    time: '04:00',
+    value: 4
+   },
+   {
+    time: '05:00',
+    value: 5
+   },
+   {
+    time: '06:00',
+    value: 6
+   },
+   {
+    time: '07:00',
+    value: 7
+   },
+   {
+    time: '08:00',
+    value: 8
+   },
+   {
+    time: '09:00',
+    value: 9
+   },
+   {
+    time: '10:00',
+    value: 10
+   },
+   {
+    time: '11:00',
+    value: 11
+   },
+   {
+    time: '01:00',
+    value: 1
+   },
+   {
+    time: '12:00',
+    value: 12
+   },
+   {
+    time: '13:00',
+    value: 13
+   },
+   {
+    time: '14:00',
+    value: 14
+   },
+   {
+    time: '15:00',
+    value: 15
+   },
+   {
+    time: '16:00',
+    value: 16
+   },
+   {
+    time: '17:00',
+    value: 17
+   },
+   {
+    time: '18:00',
+    value: 18
+   },
+   {
+    time: '19:00',
+    value: 19
+   },
+   {
+    time: '20:00',
+    value: 20
+   },
+   {
+    time: '21:00',
+    value: 21
+   },
+   {
+    time: '22:00',
+    value: 22
+   },
+   {
+    time: '23:00',
+    value: 23
+   }
+
+  ]
+ },
+ gomerchant_register(){
+  wx.navigateTo({
+   url: '/pages/merchant/merchant_register/merchant_register'
+  })
+ },
+ hidechoose(){
+  this.setData({
+   choose:false
+  })
+ },
+showchoose(){
+ this.setData({
+  choose:true
+ })
+},
+//改变
+ bindChange(e){
+  let temtime = e.detail.value;
+  that.setData({
+   temtime: temtime
+  })
+ },
+ //确定
+ sure(){
+  
+  
+  that.setData({
+   time: that.data.temtime,
+   choose:false
+  })
+ },
+ //取消
+ cancel(){
+  that.setData({
+   temtime: that.data.time,
+   choose: false
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ onLoad: function (options) {
+  that=this;
+
+ },
+
+ /**
+  * 生命周期函数--监听页面初次渲染完成
+  */
+ onReady: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面显示
+  */
+ onShow: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面隐藏
+  */
+ onHide: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面卸载
+  */
+ onUnload: function () {
+
+ },
+
+ /**
+  * 页面相关事件处理函数--监听用户下拉动作
+  */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+  * 页面上拉触底事件的处理函数
+  */
+ onReachBottom: function () {
+
+ },
+
+ /**
+  * 用户点击右上角分享
+  */
+ onShareAppMessage: function () {
+
+ }
+})
\ No newline at end of file
diff --git b/pages/merchant/register/register.json a/pages/merchant/register/register.json
new file mode 100644
index 0000000..c29b686
--- /dev/null
+++ a/pages/merchant/register/register.json
@@ -0,0 +1,5 @@
+{
+  "navigationBarTitleText": "商家注册",
+  "navigationBarTextStyle": "white",
+  "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/register/register.wxml a/pages/merchant/register/register.wxml
new file mode 100644
index 0000000..3793eba
--- /dev/null
+++ a/pages/merchant/register/register.wxml
@@ -0,0 +1,70 @@
+<!--pages/merchant/register/register.wxml-->
+<view class='merchant_itembox merchant_reg'>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>商户名</view>
+   <view class='merchant_txt'><input placeholder='请输入商家名称' placeholder-class='placeholderclass'></input></view>
+  </view>
+
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>类 型</view>
+   <view class='merchant_txt'>选择类型</view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>城市</view>
+   <view class='merchant_txt'>选择城市</view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='merchant_tiem'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>详细地址</view>
+   <view class='merchant_txt'><input placeholder='填写详细地址' placeholder-class='placeholderclass'></input></view>
+  </view>
+  <view class='iconfont icon-dingwei'></view>
+ </view>
+ <view class='merchant_tiem' bindtap='showchoose'>
+  <view class='merchant_left'>
+   <view class='merchant_tip'>营业时间</view>
+   <view class='merchant_txt'>{{starttime[time[0]].time + '--' + endtime[time[1]].time}}</view>
+  </view>
+  <view class='iconfont icon-right'></view>
+ </view>
+ <view class='register_title'>营业执照</view>
+ <view class='register_addimg'>
+  <view class='addicon'>
+   <text class='iconfont icon-jia2'></text>
+  </view>
+ </view>
+</view>
+<view class='button_btn reg_btn' bindtap='gomerchant_register'>下一步</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
+
+  <!-- 营业时间 -->
+ <view class='apply_vold' wx:if='{{choose}}' >
+ <view class='pickerview'>
+ <view class='iconfont icon-guanbi' catchtap='hidechoose'></view>
+ <cover-view class='vold_timet time_left'>开始时间</cover-view>
+  <cover-view class='vold_timet time_rigth'>结束时间</cover-view>
+  <picker-view indicator-style="height: 40px;"  class='pickerview_top'  value="{{time}}" bindchange="bindChange">
+    <picker-view-column>
+      <view wx:for="{{starttime}}" wx:key style="line-height: 40px" class='column_view'>{{ item.time}}</view>
+    </picker-view-column>
+    <picker-view-column>
+      <view wx:for="{{endtime}}" wx:key style="line-height: 40px"  class='column_view'>{{item.time}}</view>
+    </picker-view-column>
+  </picker-view>
+  <view class='apply_vold_btn'>
+  <view class='applybtn' catchtap='cancel'>取消</view>
+  <view class='applybtn yes_applybtn' catchtap='sure'>确定</view>
+  </view>
+ </view>
+ </view>
\ No newline at end of file
diff --git b/pages/merchant/register/register.wxss a/pages/merchant/register/register.wxss
new file mode 100644
index 0000000..a21d0ae
--- /dev/null
+++ a/pages/merchant/register/register.wxss
@@ -0,0 +1,49 @@
+/* pages/merchant/register/register.wxss */
+@import '/pages/merchant/merchant_register/merchant_register.wxss';
+page{
+ 
+ padding:0 0 114rpx 0;
+}
+.register_title{
+ margin: 100rpx 0 35rpx 0;
+ font-size:24rpx;
+ color:#231815;
+}
+.register_addimg{
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto;
+ width:420rpx;
+ height: 420rpx;
+ border-radius: 10rpx;
+ background: #509FD6;
+ color:#fff;
+}
+.reg_btn{
+margin:78rpx 26rpx 70rpx 26rpx;
+}
+.placeholderclass{
+ color:#9E9E9F;
+ font-size:24rpx;
+}
+.addicon {
+border:4rpx #fff dashed;
+}
+.bottom_img{
+ position: fixed;
+ bottom:0;
+ left:0;
+ z-index:10;
+ display: flex;
+ justify-content: center;
+ align-items: cneter;
+ height: 114rpx;
+ width:100%;
+}
+.bottom_img image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
diff --git b/pages/merchant/register_yes/register_yes.js a/pages/merchant/register_yes/register_yes.js
new file mode 100644
index 0000000..4930d0b
--- /dev/null
+++ a/pages/merchant/register_yes/register_yes.js
@@ -0,0 +1,66 @@
+// pages/merchant/register_yes/register_yes.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 b/pages/merchant/register_yes/register_yes.json a/pages/merchant/register_yes/register_yes.json
new file mode 100644
index 0000000..75f88ed
--- /dev/null
+++ a/pages/merchant/register_yes/register_yes.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "完善信息",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/register_yes/register_yes.wxml a/pages/merchant/register_yes/register_yes.wxml
new file mode 100644
index 0000000..853feff
--- /dev/null
+++ a/pages/merchant/register_yes/register_yes.wxml
@@ -0,0 +1,9 @@
+<!--pages/merchant/register_yes/register_yes.wxml-->
+<view class='register_yesimg'>
+<image src='../../../imgs/henhe@3x.png'></image>
+</view>
+<view class='register_title'>您的店铺入驻审核已提交</view>
+<view class='register_subtitle'>审核通过后即可入驻···</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
diff --git b/pages/merchant/register_yes/register_yes.wxss a/pages/merchant/register_yes/register_yes.wxss
new file mode 100644
index 0000000..8521ed7
--- /dev/null
+++ a/pages/merchant/register_yes/register_yes.wxss
@@ -0,0 +1,44 @@
+/* pages/merchant/register_yes/register_yes.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.register_yesimg{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width:230rpx;
+ height:230rpx;
+ margin: 208rpx auto 28rpx auto;
+}
+.register_yesimg image{
+ display: flex;
+ width:100%;
+ height: 100%;
+}
+.register_title{
+ color:#509FD6;
+ font-size:30rpx;
+ font-weight: bold;
+ text-align: center;
+}
+.register_subtitle{
+ color:rgba(80,159,214,0.7);
+ font-size:26rpx;
+ text-align: center;
+}
+.bottom_img{
+ position: fixed;
+ bottom:0;
+ left:0;
+ z-index:10;
+ display: flex;
+ justify-content: center;
+ align-items: cneter;
+ height: 114rpx;
+ width:100%;
+}
+.bottom_img image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
\ No newline at end of file
diff --git b/pages/merchant/scan/scan.js a/pages/merchant/scan/scan.js
new file mode 100644
index 0000000..b56d705
--- /dev/null
+++ a/pages/merchant/scan/scan.js
@@ -0,0 +1,66 @@
+// pages/merchant/ scan/scan.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 b/pages/merchant/scan/scan.json a/pages/merchant/scan/scan.json
new file mode 100644
index 0000000..586c567
--- /dev/null
+++ a/pages/merchant/scan/scan.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "扫一扫",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/scan/scan.wxml a/pages/merchant/scan/scan.wxml
new file mode 100644
index 0000000..9f4ed4b
--- /dev/null
+++ a/pages/merchant/scan/scan.wxml
@@ -0,0 +1,8 @@
+<!--pages/merchant/ scan/scan.wxml-->
+
+<view class='scan'>
+<image src='../../../imgs/scan.png'></image>
+</view>
+<view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
diff --git b/pages/merchant/scan/scan.wxss a/pages/merchant/scan/scan.wxss
new file mode 100644
index 0000000..7da00bb
--- /dev/null
+++ a/pages/merchant/scan/scan.wxss
@@ -0,0 +1,12 @@
+/* pages/merchant/ scan/scan.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.scan{
+ margin: 280rpx auto 0 auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width:522rpx;
+ height: 522rpx;
+}
\ No newline at end of file
diff --git b/pages/merchant/tixian/tixian.js a/pages/merchant/tixian/tixian.js
new file mode 100644
index 0000000..7e881bd
--- /dev/null
+++ a/pages/merchant/tixian/tixian.js
@@ -0,0 +1,66 @@
+// pages/merchant/tixian/tixian.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 b/pages/merchant/tixian/tixian.json a/pages/merchant/tixian/tixian.json
new file mode 100644
index 0000000..63734bc
--- /dev/null
+++ a/pages/merchant/tixian/tixian.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "提现"}
\ No newline at end of file
diff --git b/pages/merchant/tixian/tixian.wxml a/pages/merchant/tixian/tixian.wxml
new file mode 100644
index 0000000..8945371
--- /dev/null
+++ a/pages/merchant/tixian/tixian.wxml
@@ -0,0 +1,24 @@
+<!--pages/merchant/tixian/tixian.wxml-->
+<view class='tixian_top'>
+<view>满减设置 <text class='tixian_minitxt'>Full set</text></view>
+<view>删除</view>
+</view>
+<view class='account_box'>
+ <view class='input_box tixian_inputbox'>
+  <view class='input_title'>满金额</view>
+  <input placeholder='' placeholder-class='placeinput' value='500'></input>
+ </view>
+ <view class='input_box tixian_inputbox'>
+  <view class='input_title'>减金额</view>
+  <input placeholder='' placeholder-class='placeinput' value='100'></input>
+ </view>
+ <view class='button_btn tixian_btn'>
+ <text class='iconfont icon-jia'></text>
+ 确定保存
+ </view>
+ <view class='button_btn tixian_bottombtn'>
+ 
+ 确定
+ </view>
+ 
+</view>
\ No newline at end of file
diff --git b/pages/merchant/tixian/tixian.wxss a/pages/merchant/tixian/tixian.wxss
new file mode 100644
index 0000000..56e5d32
--- /dev/null
+++ a/pages/merchant/tixian/tixian.wxss
@@ -0,0 +1,37 @@
+/* pages/merchant/tixian/tixian.wxss */
+@import '/pages/merchant/account/account.wxss';
+.tixian_top{
+ margin: 16rpx 0 0 0;
+ background: #0768AC;
+ height: 43rpx;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding:0 30rpx;
+ color:#fff;
+ font-size:24rpx;
+}
+.tixian_minitxt{
+ font-size:17rpx;
+}
+.input_title{
+ width:30%;
+ color:#231815;
+}
+.tixian_inputbox input{
+ width:60%;
+ 
+}
+.tixian_btn{
+ height: 50rpx;
+ margin: 30rpx 30rpx 0 30rpx;
+ font-size:28rpx;
+ border-radius: 6rpx;
+}
+.tixian_btn .icon-jia{
+ font-size:20rpx;
+ margin: 0 4rpx 0 0;
+}
+.tixian_bottombtn{
+ margin: 500rpx 0 0 0;
+}
\ No newline at end of file
diff --git b/pages/merchant/tixian2/tixian2.js a/pages/merchant/tixian2/tixian2.js
new file mode 100644
index 0000000..d4299bb
--- /dev/null
+++ a/pages/merchant/tixian2/tixian2.js
@@ -0,0 +1,66 @@
+// pages/merchant/tixian2/tixian2.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 b/pages/merchant/tixian2/tixian2.json a/pages/merchant/tixian2/tixian2.json
new file mode 100644
index 0000000..6629307
--- /dev/null
+++ a/pages/merchant/tixian2/tixian2.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "提现",
+ "navigationBarTextStyle": "white",
+ "navigationBarBackgroundColor": "#509FD6"
+}
\ No newline at end of file
diff --git b/pages/merchant/tixian2/tixian2.wxml a/pages/merchant/tixian2/tixian2.wxml
new file mode 100644
index 0000000..6aba455
--- /dev/null
+++ a/pages/merchant/tixian2/tixian2.wxml
@@ -0,0 +1,31 @@
+<!--pages/merchant/tixian2/tixian2.wxml-->
+<view class='tixian_two'>
+<view>提现至</view>
+<view>微信</view>
+</view>
+<view class='tixian_twoip'>提现金额</view>
+<view class='tixian_two tixian_twonum'>
+<view>¥<text class='bignum'>98.</text>00</view>
+</view>
+<view class='button_btn tixian_bottombtn'>
+ 确定
+ </view>
+ <view class="waveWrapper waveAnimation">
+  <view class="waveWrapperInner bgTop">
+   <view class="wave waveTop">
+   </view>
+  </view>
+  <view class="waveWrapperInner bgMiddle">
+   <view class="wave waveMiddle">
+    <image mode='widthFix' src="http://jysh.w.bronet.cn/imgs/alin02.png"></image>
+   </view>
+  </view>
+  <view class="waveWrapperInner bgBottom">
+   <view class="wave waveBottom">
+    <image mode='widthFix' src="http://jysh.w.bronet.cn/imgs/alin03.png"></image>
+   </view>
+  </view>
+ </view>
+ <view class='bottom_img'>
+<image src='../../../imgs/dicengtupian@3x.png'></image>
+</view>
\ No newline at end of file
diff --git b/pages/merchant/tixian2/tixian2.wxss a/pages/merchant/tixian2/tixian2.wxss
new file mode 100644
index 0000000..522cc5c
--- /dev/null
+++ a/pages/merchant/tixian2/tixian2.wxss
@@ -0,0 +1,37 @@
+/* pages/merchant/tixian2/tixian2.wxss */
+page{
+ padding:0 0 114rpx 0;
+}
+.tixian_two{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background: #EEEEEF;
+ color:rgba(62,58,57,1);
+ font-size:26rpx;
+ height: 115rpx;
+ box-sizing:border-box;
+ margin: 37rpx 0 0 0;
+ padding:0 50rpx 0 75rpx;
+}
+.tixian_twoip{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color:#3E3A39;
+ font-size: 25rpx;
+ padding:50rpx 0 18rpx 0;
+}
+.tixian_twonum{
+ justify-content: center;
+ color:#9E9E9F;
+ font-weight: bold;
+ font-size: 42rpx;
+ margin: 0;
+}
+.bignum{
+ font-size: 76rpx;
+}
+.tixian_bottombtn{
+ margin: 120rpx 32rpx 0 32rpx;
+}
\ No newline at end of file
diff --git b/pages/merchant/user_agree/user_agree.js a/pages/merchant/user_agree/user_agree.js
new file mode 100644
index 0000000..f281065
--- /dev/null
+++ a/pages/merchant/user_agree/user_agree.js
@@ -0,0 +1,66 @@
+// pages/merchant/user_agree/user_agree.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 b/pages/merchant/user_agree/user_agree.json a/pages/merchant/user_agree/user_agree.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/merchant/user_agree/user_agree.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/merchant/user_agree/user_agree.wxml a/pages/merchant/user_agree/user_agree.wxml
new file mode 100644
index 0000000..a3b022e
--- /dev/null
+++ a/pages/merchant/user_agree/user_agree.wxml
@@ -0,0 +1,8 @@
+<!--pages/merchant/user_agree/user_agree.wxml-->
+<view class='agree_top'>
+<view>用户注册协议</view>
+<view class='agree_mini'>User registration protocol</view>
+</view>
+<view class='explain_mian'>
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin sodales pulvinar tempor. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam fermentum, nulla luctus pharetra vulputate, felis tellus mollis orci, sed rhoncus sapien nunc eget.
+</view>
diff --git b/pages/merchant/user_agree/user_agree.wxss a/pages/merchant/user_agree/user_agree.wxss
new file mode 100644
index 0000000..1afbe56
--- /dev/null
+++ a/pages/merchant/user_agree/user_agree.wxss
@@ -0,0 +1,16 @@
+/* pages/merchant/user_agree/user_agree.wxss */
+@import '/pages/merchant/merchant_explain/merchant_explain.wxss';
+.agree_top{
+ height: 86prx;
+ background: #4F95C8;
+ color:#fff;
+ font-size:32rpx;
+ padding:0 65rpx;
+ box-sizing: border-box;
+}
+.agree_mini{
+ font-size:17rpx;
+}
+.explain_mian{
+ margin: 20rpx 32rpx 0 32rpx;
+}
\ No newline at end of file
diff --git b/pages/more_imgs/more_imgs.js a/pages/more_imgs/more_imgs.js
new file mode 100644
index 0000000..25b8bb1
--- /dev/null
+++ a/pages/more_imgs/more_imgs.js
@@ -0,0 +1,66 @@
+// pages/more_imgs/more_imgs.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 b/pages/more_imgs/more_imgs.json a/pages/more_imgs/more_imgs.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/more_imgs/more_imgs.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/more_imgs/more_imgs.wxml a/pages/more_imgs/more_imgs.wxml
new file mode 100644
index 0000000..2976ea1
--- /dev/null
+++ a/pages/more_imgs/more_imgs.wxml
@@ -0,0 +1,16 @@
+<!--pages/more_imgs/more_imgs.wxml-->
+<view class='line'></view>
+<view class='account_title more_title'>商家相册</view>
+<view class='account_subtitle'>Merchant album</view>
+<view class='merchant_nav'>
+<view class='merchant_navitem'>
+<view class='active'>全部</view>
+<view>环境</view>
+<view>其他</view>
+</view>
+</view>
+<view class='imgsbox' wx:for='{{[1,1,1]}}' wx:key>
+<view class='imgsbox_item' wx:for='{{[1,1,1]}}' wx:key>
+<image src='../../../imgs/goods.png'></image>
+</view>
+</view>
diff --git b/pages/more_imgs/more_imgs.wxss a/pages/more_imgs/more_imgs.wxss
new file mode 100644
index 0000000..e83c769
--- /dev/null
+++ a/pages/more_imgs/more_imgs.wxss
@@ -0,0 +1,22 @@
+/* pages/more_imgs/more_imgs.wxss */
+@import '/pages/merchant/merchant_imgs/merchant_imgs.wxss';
+page{
+ background: #010F23;
+}
+.merchant_nav{
+ background: linear-gradient(to right, #041C31 , #000B1F); 
+ margin: 0 0 20rpx 0;
+}
+.merchant_navitem{
+ color:rgba(255,255,255,0.6);
+}
+.merchant_navitem .active{
+color:#009FE8;
+border-bottom:4rpx solid #009FE8;
+}
+.more_title{
+ margin: 47rpx 0  0;
+}
+.imgsbox{
+ background: #031A2F;
+}
\ No newline at end of file
diff --git b/pages/my/my.js a/pages/my/my.js
new file mode 100644
index 0000000..1611f56
--- /dev/null
+++ a/pages/my/my.js
@@ -0,0 +1,66 @@
+// pages/my/my.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 b/pages/my/my.json a/pages/my/my.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/my/my.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/my/my.wxml a/pages/my/my.wxml
new file mode 100644
index 0000000..75bc75e
--- /dev/null
+++ a/pages/my/my.wxml
@@ -0,0 +1,64 @@
+<!--pages/my/my.wxml-->
+<view class='my_content'>
+ <image src='../../imgs/dengjibeijing@3x.png'></image>
+ <view class='my_mian'>
+  <view class='myhead'>
+   <view class='myheadimg'>
+    <image src='../../imgs/goods.png'></image>
+   </view>
+   <view>昵称</view>
+   <view>Nickname</view>
+   <!-- 等级 -->
+   <view class='lv'>
+    <view class='lvimg'>
+     <image src='../../imgs/tupianj@3x.png'></image>
+    </view>
+    <view>Lv.1</view>
+   </view>
+  </view>
+  <view class='my_nav'>
+   <view>我的组队</view>
+   <view class='my_navsubtitle'>My team</view>
+  </view>
+  <view class='tab_bigbox'>
+   <view class='tab_box'>
+    <navigator class='tab_active' url='/pages/my_order/my_order' hover-class="none">我的订单</navigator>
+    <navigator url='/pages/my_zhudui/my_zhudui' hover-class="none">我的组队</navigator>
+    <view>已报名</view>
+    <view >待付款</view>
+    <view >待评价</view>
+   </view>
+  </view>
+
+  <navigator class='my_itembox' url='/pages/my_account/my_account' hover-class="none">
+   <view>我的账户</view>
+   <view class='iconfont icon-right'></view>
+  </navigator>
+  <navigator class='my_itembox' url='/pages/share/share' hover-class="none" >
+   <view>我要推广</view>
+   <view class='iconfont icon-right'></view>
+  </navigator>
+  <navigator class='my_itembox' url='/pages/true_approve/true_approve' hover-class="none">
+   <view>实名认证</view>
+   <view class='iconfont icon-right'></view>
+  </navigator>
+  <view class='my_itembox'>
+   <view>提交合伙人申请</view>
+   <view class='iconfont icon-right'></view>
+  </view>
+  <view class='my_itembox'>
+   <view>联系客服</view>
+   <view class='iconfont icon-right'></view>
+  </view>
+  <navigator class='my_itembox' url='/pages/merchant/login/login' hover-class="none">
+   <view>成为商家</view>
+   <view class='iconfont icon-right'></view>
+  </navigator>
+  <navigator class='my_itembox' url='/pages/img_txt/img_txt' hover-class="none">
+   <view>使用说明</view>
+   <view class='iconfont icon-right'></view>
+  </navigator>
+
+ </view>
+
+</view>
\ No newline at end of file
diff --git b/pages/my/my.wxss a/pages/my/my.wxss
new file mode 100644
index 0000000..15d1e37
--- /dev/null
+++ a/pages/my/my.wxss
@@ -0,0 +1,124 @@
+/* pages/my/my.wxss */
+
+.my_content{
+ position: fixed;
+ top:0;
+ left:0;
+ bottom:0;
+ z-index:1;
+ height: 100%;
+ width:100%;
+}
+.my_content image{
+ width:100%;
+ height: 100%;
+ display: block;
+
+}
+.my_mian{
+ position: absolute;
+ top:0;
+ left:0;
+ width:100%;
+ height: 100%;
+ z-index:3;
+ overflow-y: scroll;
+}
+.myhead{
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: cneter;
+ flex-direction: column;
+ height: 400rpx;
+ color:#fff;
+ font-size:36rpx;
+}
+.myheadimg{
+ margin: 100rpx 0 0 0;
+ width:175rpx;
+ height: 175rpx;
+ border-radius: 50%;
+ overflow: hidden;
+ border:6rpx solid rgba(255,255,255,0.4);
+}
+.myheadimg image{
+ display: block;
+width:100%;
+height: 100%;
+}
+.lv{
+ position: absolute;
+ top:50%;
+ transform: translateY(-50%);
+ right: 105rpx;
+ color:#fff;
+ font-size:36rpx;
+ z-index:2;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
+.lvimg{
+ width:73rpx;
+ height: 58rpx;
+ overflow: hidden;
+}
+.lvimg image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.my_nav{
+ padding:35rpx 54rpx 26rpx 54rpx;
+ background: #011226;
+ font-size:36rpx;
+ color:#fff;
+}
+.my_navsubtitle{
+ font-size: 20rpx;
+}
+.tab_bigbox{
+ margin: 0 0 20rpx 0;
+ padding:0 0 10rpx 0;
+ border-bottom:4rpx solid rgba(255,255,255,0.4);
+}
+.tab_box{
+ margin: 16rpx 0 0 0;
+ display: flex;
+ align-items: center;
+ justify-content: space-around;
+ background: #011025;
+ font-size:22rpx;
+ color:#fff;
+ padding:20rpx 24rpx 20rpx 50rpx;
+}
+.tab_active{
+ position: relative;
+ color:#009FE8;
+
+}
+
+.tab_active::after{
+ position: absolutep;
+ bottom:-20rpx;
+ width:100rpx;
+ height: 2rpx;
+ background: #fff;
+ left:50%;
+ transform: translateX(-50%);
+ content: '';
+ z-index: 10;
+
+ 
+}
+.my_itembox{
+ padding:24rpx 110rpx 20rpx 110rpx;
+ color:rgba(255,255,255,0.8);
+ font-size:24rpx;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ border-bottom:4rpx solid rgba(255,255,255,0.2);
+}
\ No newline at end of file
diff --git b/pages/my_account/my_account.js a/pages/my_account/my_account.js
new file mode 100644
index 0000000..abf309b
--- /dev/null
+++ a/pages/my_account/my_account.js
@@ -0,0 +1,66 @@
+// pages/my_account/my_account.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 b/pages/my_account/my_account.json a/pages/my_account/my_account.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/my_account/my_account.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/my_account/my_account.wxml a/pages/my_account/my_account.wxml
new file mode 100644
index 0000000..d74cd44
--- /dev/null
+++ a/pages/my_account/my_account.wxml
@@ -0,0 +1,21 @@
+<!--pages/my_account/my_account.wxml-->
+<view class='line'></view>
+<view class='accountbox'>
+ <view>
+  <text class='niminum'>¥</text>92.
+  <text class='niminum'>00</text>
+ </view>
+ <view class='sub_title'>账户余额</view>
+</view>
+<view class='accountitembox'>
+<view class='account_title'>交易记录</view>
+<view class='account_subtitle'>Transaction record</view>
+<view class='accont_itembox' wx:for='{{[1,1]}}' wx:key>
+ <view class='accont_item'>
+ <view>优惠赠送</view>
+ <view>+0.5</view>
+ </view>
+ <view class='accont_itemsub'>2018-09-08 15:20</view>
+</view>
+
+</view>
\ No newline at end of file
diff --git b/pages/my_account/my_account.wxss a/pages/my_account/my_account.wxss
new file mode 100644
index 0000000..4354473
--- /dev/null
+++ a/pages/my_account/my_account.wxss
@@ -0,0 +1,44 @@
+/* pages/my_account/my_account.wxss */
+@import '/pages/client_pay/client_pay.wxss';
+.accountbox{
+ margin: 100rpx 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ color:#fff;
+ font-size:76rpx;
+}
+.niminum{
+ font-size:26rpx;
+}
+.sub_title{
+ color:#9E9E9F;
+ font-size:28rpx;
+}
+.account_title{
+ padding:0 27rpx;
+ color:rgba(255,255,255,0.8);
+ font-size:36rpx;
+}
+.account_subtitle{
+ padding:0 27rpx;
+ color:rgba(255,255,255,0.6);
+ font-size:20rpx;
+ margin: 0 0 10rpx 0;
+}
+.accont_itembox{
+padding:15rpx 97rpx 15rpx 27rpx;
+margin: 0 0 20rpx 0;
+background: #03172C;
+color:rgba(255,255,255,0.6);
+font-size:26rpx;
+}
+.accont_item{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+.accont_itemsub{
+ font-size:20rpx;
+}
\ No newline at end of file
diff --git b/pages/my_class/my_class.js a/pages/my_class/my_class.js
new file mode 100644
index 0000000..3c0ef53
--- /dev/null
+++ a/pages/my_class/my_class.js
@@ -0,0 +1,66 @@
+// pages/my_class/my_class.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 b/pages/my_class/my_class.json a/pages/my_class/my_class.json
new file mode 100644
index 0000000..d6c4a57
--- /dev/null
+++ a/pages/my_class/my_class.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "我的等级"}
\ No newline at end of file
diff --git b/pages/my_class/my_class.wxml a/pages/my_class/my_class.wxml
new file mode 100644
index 0000000..e02604a
--- /dev/null
+++ a/pages/my_class/my_class.wxml
@@ -0,0 +1,39 @@
+<!--pages/my_class/my_class.wxml-->
+<view class='my_content'>
+ <image src='../../imgs/dengjibeijing@3x.png'></image>
+ <view class='my_mian'>
+  <view class='myhead'>
+   <view class='myheadin'>
+    <view class='myheadimg'>
+     <image src='../../imgs/goods.png'></image>
+    </view>
+    <view>昵称</view>
+    <view>Nickname</view>
+   </view>
+
+   <view class='lv'>
+    <view class='lvimg'>
+     <image src='../../imgs/tupianj@3x.png'></image>
+    </view>
+    <view>Lv.1</view>
+   </view>
+  </view>
+  <view class='my_nav'>
+   <view>我的会员</view>
+   <view class='my_navsubtitle'>My members</view>
+  </view>
+  <view class='my_nav my_class'>
+   <view class='my_classmian'>
+    <view class='my_classmianin' style='width:50%'></view>
+    <view class='my_classtxt'>100/200</view>
+   </view>
+   <view>距下一个等级还需
+    <text class='blue_txt'>100</text> 成长值</view>
+  </view>
+  <view class='my_txt'>
+  <view class='my_txttl'>会员说明</view>
+  <view>1.会员等级提升一次获得一定的金额</view>
+  <view>2.升级至lv.05后邀请好友入驻可获得现金红包</view>
+  </view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/my_class/my_class.wxss a/pages/my_class/my_class.wxss
new file mode 100644
index 0000000..a3d3993
--- /dev/null
+++ a/pages/my_class/my_class.wxss
@@ -0,0 +1,64 @@
+/* pages/my_class/my_class.wxss */
+@import '/pages/my/my.wxss';
+.myhead{
+ position: relative;
+ display: flex;
+ align-items: left;
+ justify-content: center;
+ flex-direction: column;
+ height: 400rpx;
+ color:#fff;
+ font-size:36rpx;
+}
+.myheadin{
+ margin: 0 0 0 100rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
+.myheadimg {
+margin: 0;
+}
+.my_class{
+ padding:20rpx 38rpx 20rpx 38rpx;
+ margin: 20rpx 0 30rpx 0;
+ font-size:22rpx;
+ color:rgba(255,255,255,0.6);
+ text-align: center;
+}
+.blue_txt{
+ 
+ color:#009FE8;
+}
+.my_classmian{
+ position: relative;
+ margin: 0 0 16rpx 0;
+ height: 30rpx;
+ border-radius: 15rpx;
+ border:1rpx solid rgba(255,255,255,0.3);
+ width:100%;
+ background: #DBDCDC;
+}
+.my_classmianin{
+height: 100%;
+border-radius: 15rpx;
+background: linear-gradient(to bottom right, #C8171E , #9B1E63,#515999,#1986C2); 
+}
+.my_classtxt{
+ color:#011126;
+ font-size:22rpx;
+ position: absolute;
+ top:-1rpx;
+ right: 10rpx;
+
+}
+.my_txt{
+margin: 0 54rpx;
+color:#fff;
+font-size:24rpx;
+line-height: 40rpx;
+}
+.my_txttl{
+ margin: 0 0 10rpx 0;
+}
\ No newline at end of file
diff --git b/pages/my_order/my_order.js a/pages/my_order/my_order.js
new file mode 100644
index 0000000..b5be19d
--- /dev/null
+++ a/pages/my_order/my_order.js
@@ -0,0 +1,69 @@
+// pages/my_order/my_order.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ gomy_orderdetail(){
+  wx.navigateTo({url: '/pages/my_orderdetai/my_orderdetail',})
+
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/my_order/my_order.json a/pages/my_order/my_order.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/my_order/my_order.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/my_order/my_order.wxml a/pages/my_order/my_order.wxml
new file mode 100644
index 0000000..4fd17f3
--- /dev/null
+++ a/pages/my_order/my_order.wxml
@@ -0,0 +1,37 @@
+<!--pages/my_order/my_order.wxml-->
+<view class='line'></view>
+<view class='formbox' wx:for='{{[1,1,1]}}' wx:key bindtap='gomy_orderdetail'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>报名人数
+   <text class='order_num'>3人</text>
+  </view>
+  <view class='order_time'>2018-09-08 15:20</view>
+ </view>
+ <view class='formitem'>
+  <view>预算金额
+   <text class='order_num'>3人</text>
+  </view>
+ </view>
+ <view class='formitem border_b'>
+  <view>开始时间
+   <text class='order_num'>9-15 18:00</text>
+  </view>
+  <view class='formitem_title'>待付款</view>
+ </view>
+ <view class='order_head'>
+  <view class='order_letf'>
+   <view class='order_headimg' wx:for='{{[1,1,1]}}' wx:key>
+    <image src='../../imgs/goods.png'></image>
+   </view>
+  </view>
+  <view>3人待支付</view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/my_order/my_order.wxss a/pages/my_order/my_order.wxss
new file mode 100644
index 0000000..b0dcceb
--- /dev/null
+++ a/pages/my_order/my_order.wxss
@@ -0,0 +1,51 @@
+/* pages/my_order/my_order.wxss */
+@import '/pages/form/form.wxss';
+.formbox {
+background:#fff;
+margin:20rpx 27rpx 0 27rpx;
+border-radius: 10rpx;
+padding:10rpx 0 0 0;
+}
+.order_img{
+ border-radius: 0;
+}
+.formitem{
+ font-size:28rpx;
+ margin: 0 27rpx;
+ padding:6rpx 0 16rpx 0;
+}
+.order_time{
+color: #9E9E9F;
+font-size:22rpx;
+}
+.border_b{
+ padding:6rpx 0 10rpx 0;
+ border-bottom: 3rpx solid #9E9E9F;
+}
+.formitem_title{
+color:#C30D23;
+font-size:26rpx;
+}
+.order_head{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding:10rpx 27rpx;
+ color:#9FA0A0;
+ font-size:24rpx;
+}
+.order_letf{
+ display: flex;
+ align-items: center;
+}
+.order_headimg{
+ width:56rpx;
+ height: 56rpx;
+ border-radius: 6rpx;
+ margin: 0 13rpx 0 0;
+}
+.order_headimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
\ No newline at end of file
diff --git b/pages/my_orderdetai/my_orderdetail.js a/pages/my_orderdetai/my_orderdetail.js
new file mode 100644
index 0000000..062cbb9
--- /dev/null
+++ a/pages/my_orderdetai/my_orderdetail.js
@@ -0,0 +1,66 @@
+// pages/my_orderdetai/my_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 b/pages/my_orderdetai/my_orderdetail.json a/pages/my_orderdetai/my_orderdetail.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/my_orderdetai/my_orderdetail.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/my_orderdetai/my_orderdetail.wxml a/pages/my_orderdetai/my_orderdetail.wxml
new file mode 100644
index 0000000..83cdb8f
--- /dev/null
+++ a/pages/my_orderdetai/my_orderdetail.wxml
@@ -0,0 +1,97 @@
+<!--pages/my_orderdetai/my_orderdetail.wxml-->
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>评价4.8</view>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'>
+    <text class='jian_txt'> 减</text>
+   </view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+ <view class='formitem center_formitem'>
+  9:00至凌晨3:00营业
+  <text class='iconfont icon-right'></text>
+ </view>
+ <view class='formitem'>
+  <view>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>距地铁10号线国贸站C口215米</view>
+ </view>
+</view>
+<view class='line'></view>
+<view class='orderdetail_title'>
+ <view class='orderdetail_title_left'>
+  <view class='account_title'>普通套餐</view>
+  <view class='account_subtitle'>Common set meal</view>
+ </view>
+ <view class='orderdetail_title_rigth'><text class='txtmargan'>09-12</text>18:00</view>
+</view>
+<view class='form_info'>
+ <view class='form_infoitem' wx:for='{{[1,1]}}'>
+  <view class='form_itemleft'>百威啤酒 x1</view>
+  <view class='tuanguo_rigth'>
+   <view class='tuanguo_end'>¥12</view>
+  </view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='formitem_rigth_jian'>
+   <text class='jian_txt'> 减</text>
+  </view>
+  <view class='tuanguo_rigth'>
+   <view class='tuanguo_end'>-¥12</view>
+  </view>
+ </view>
+
+</view>
+<view class='tuanguo_price zudui_pay'>
+ <view class='zudui_pay_top'>合计
+  <text class='nimi_price'>¥</text>
+  <text class='nimi_num'>80.</text>
+  <text class='nimi_price'>.00</text>
+ </view>
+ <view class='zudui_paynimitxt'>已优惠¥10</view>
+</view>
+<view class='tuanguo_price orderdetail'>
+ <view class='zudui_pay_top'>合计
+  <text class='nimi_price'>¥</text>
+  <text class='nimi_num'>80.</text>
+  <text class='nimi_price'>.00</text>
+ </view>
+ <view class='zudui_pay_top'>已支付
+  <text class='nimi_price'>¥</text>
+  <text class='nimi_num'>80.</text>
+  <text class='nimi_price'>.00</text>
+ </view>
+</view>
+<view class='orderdetail_code'>
+<view class='orderdetail_codeimg'>
+<image src='../../imgs/code.png'></image>
+</view>
+<view>群二维码</view>
+</view>
+<view class='cancel'>订单已取消</view>
+<view class='team_box' wx:for='{{[1,1]}}' wx:key>
+ <view class='account_subtitle'>2人未支付</view>
+ <view class='team_user detail_user' wx:for='{{[1,1]}}' wx:key>
+  <view class='team_left'>
+   <view class='teamimg'>
+    <image src='../../imgs/goods.png'></image>
+   </view>
+   <view>张三</view>
+  </view>
+  <view class='team_rigth'>
+   <view>待支付55.00元</view>
+  </view>
+ </view>
+</view>
+<view class='client_btn' bindtap='goclient_pay'>待付款</view>
+<view class='client_btn orderdetailbtn' bindtap='goclient_pay'>付款</view>
\ No newline at end of file
diff --git b/pages/my_orderdetai/my_orderdetail.wxss a/pages/my_orderdetai/my_orderdetail.wxss
new file mode 100644
index 0000000..137e3d1
--- /dev/null
+++ a/pages/my_orderdetai/my_orderdetail.wxss
@@ -0,0 +1,63 @@
+/* pages/my_orderdetai/my_orderdetail.wxss */
+@import '/pages/zudui_pay/zudui_pay.wxss';
+@import '/pages/my_zhuduidetail/my_zhuduidetail';
+.orderdetail_title{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ color:rgba(255,255,255,0.8);
+ font-size:25rpx;
+ margin: 0 34rpx 0 0;
+}
+.txtmargan{
+ display: block;
+ margin: 0 56rpx 0 0;
+}
+.orderdetail_title_rigth{
+ width:50%;
+display: flex;
+align-items: center;
+justify-content: flex-end;
+}
+ .orderdetail{
+  padding:10rpx 84rpx;
+
+ }
+ .orderdetailbtn{
+  background: #009FE8;
+ }
+ .orderdetail_code{
+  margin: 40rpx 0 40rpx 0;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  flex-direction: column;
+  background:linear-gradient(to right, #041D32 , #010F24);
+  padding:30rpx 0 20rpx 0;
+  color:rgba(255,255,255,0.8);
+  font-size:25rpx;
+  text-align: center;
+ }
+ .orderdetail_codeimg{
+  width:108rpx;
+  height: 108rpx;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  margin: 0 0 8rpx 0;
+ }
+ .orderdetail_codeimg image{
+  width:100%;
+  height: 100%;
+  display: block;
+ }
+ .cancel{
+  margin: 20rpx 0;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  color:#009FE8;
+  font-size:28rpx;
+  height: 60rpx;
+  background:linear-gradient(to right, #041D32 , #010F24);
+ }
\ No newline at end of file
diff --git b/pages/my_ordersuccess/my_ordersuccess.js a/pages/my_ordersuccess/my_ordersuccess.js
new file mode 100644
index 0000000..b9b354b
--- /dev/null
+++ a/pages/my_ordersuccess/my_ordersuccess.js
@@ -0,0 +1,66 @@
+// pages/my_ordersuccess/my_ordersuccess.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 b/pages/my_ordersuccess/my_ordersuccess.json a/pages/my_ordersuccess/my_ordersuccess.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/my_ordersuccess/my_ordersuccess.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/my_ordersuccess/my_ordersuccess.wxml a/pages/my_ordersuccess/my_ordersuccess.wxml
new file mode 100644
index 0000000..8f32faf
--- /dev/null
+++ a/pages/my_ordersuccess/my_ordersuccess.wxml
@@ -0,0 +1,78 @@
+<!--pages/my_ordersuccess/my_ordersuccess.wxml-->
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='ordersuccess'>
+  <view>开始时间 9-15 18:00</view>
+  <view class='nimi_txt'>2018-09-08 15:20</view>
+ </view>
+ <view class='ordersuccess'>
+  <view>购选座位 散座(2-8人)</view>
+ </view>
+ <view class='mini_success'>百威啤酒等3件商品</view>
+</view>
+<view class='void_line'></view>
+<view class='pay_code'>
+ <view class='pay_codetxt'>扫码支付</view>
+ <view class='pay_codeimg'>
+  <image src='../../imgs/code.png'></image>
+ </view>
+</view>
+
+<!-- 兑换码 -->
+<view class='exchangebox'>
+ <view class='exchange'>
+  <view class='exchangemian'>兑换码:4157 1564 1454</view>
+ </view>
+ <view class='exchange'>
+  <view class='exchangemian'><input placeholder-class='inputplaceholder' placeholder='扫码后请填写座位号'></input></view>
+ </view>
+</view>
+<view class='form_info'>
+ <view class='form_infoitem' wx:for='{{[1,1]}}'>
+  <view class='form_itemleft'>百威啤酒 x1</view>
+  <view class='tuanguo_rigth'>
+   <view class='tuanguo_end'>¥12</view>
+  </view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='formitem_rigth_jian'>
+   <text class='jian_txt'> 减</text>
+  </view>
+  <view class='tuanguo_rigth'>
+   <view class='tuanguo_end'>-¥12</view>
+  </view>
+ </view>
+</view>
+<view class='tuanguo_price zudui_pay'>
+ <view class='zudui_pay_top'>合计
+  <text class='nimi_price'>¥</text>
+  <text class='nimi_num'>80.</text>
+  <text class='nimi_price'>.00</text>
+ </view>
+ <view class='zudui_paynimitxt'>已优惠¥10</view>
+</view>
+<view class='orderdetail_title'>
+ <view class='orderdetail_title_left'>
+  <view class='account_title'>队员信息</view>
+  <view class='account_subtitle'>Player information</view>
+ </view>
+</view>
+<view class='team_box'>
+ <view class='team_user detail_user' wx:for='{{[1,1]}}' wx:key>
+  <view class='team_left'>
+   <view class='teamimg'>
+    <image src='../../imgs/goods.png'></image>
+   </view>
+   <view>张三</view>
+  </view>
+ </view>
+</view>
+<view class='client_btn' bindtap='goclient_pay'>待付款</view>
+<view class='client_btn orderdetailbtn' bindtap='goclient_pay'>付款</view>
\ No newline at end of file
diff --git b/pages/my_ordersuccess/my_ordersuccess.wxss a/pages/my_ordersuccess/my_ordersuccess.wxss
new file mode 100644
index 0000000..6a00dfb
--- /dev/null
+++ a/pages/my_ordersuccess/my_ordersuccess.wxss
@@ -0,0 +1,78 @@
+/* pages/my_ordersuccess/my_ordersuccess.wxss */
+@import '/pages/my_orderdetai/my_orderdetail.wxss';
+.ordersuccess{
+ color:#231815;
+ font-size:28rpx;
+ display: flex;
+ align-items: center;
+ justify-content:space-between;
+ padding:0 20rpx;
+}
+.nimi_txt{
+ color:#9E9E9F;
+ font-size:20rpx;
+}
+.mini_success{
+ color:#9E9E9F;
+ font-size:20rpx;
+ padding:0 20rpx 20rpx 20rpx;
+ margin: 40rpx 0 0 0;
+}
+.pay_code{
+ background:linear-gradient(to right, #041D32 , #010F24);
+display:flex;
+align-items:center;
+justify-content:center;
+flex-direction:column;
+padding:20rpx 0 40rpx 0;
+color:rgba(255,255,255,0.8);
+font-size:28rpx;
+text-align:center;
+}
+.pay_codeimg{
+ margin: 23rpx 0 0 0;
+ width:207rpx;
+ height: 207rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.pay_codeimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.void_line{
+ height: 170rpx;
+ background:linear-gradient(to left, #041D32 , #010F24);
+}
+.exchangebox{
+ margin: 20rpx 0;
+ padding:60rpx 0 20rpx 0;
+ background:linear-gradient(to left, #041D32 , #010F24);
+}
+.exchange{
+ margin: 28rpx 53rpx 0 53rpx;
+ background:linear-gradient(to left, #041D32 , #010F24);
+}
+.exchangemian{
+ display: flex;
+ align-items: center;
+ border-radius: 8rpx;
+ height: 46rpx;
+ background: #fff;
+ color:#595757;
+ font-size:28rpx;
+ padding:10rpx 24rpx;
+ box-sizing: border-box;
+}
+.exchangemian input{
+ width:100%;
+ height: 100%;
+ color:#595757;
+ font-size:28rpx;
+}
+.inputplaceholder{
+ color:#B5B5B6;
+ font-size:28rpx;
+}
\ No newline at end of file
diff --git b/pages/my_zhudui/my_zhudui.js a/pages/my_zhudui/my_zhudui.js
new file mode 100644
index 0000000..2efacd5
--- /dev/null
+++ a/pages/my_zhudui/my_zhudui.js
@@ -0,0 +1,72 @@
+// pages/my_zhudui/my_zhudui.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ gomy_zhuduidetail(e){
+  wx.navigateTo({
+   url: '/pages/my_zhuduidetail/my_zhuduidetail',
+  })
+
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/my_zhudui/my_zhudui.json a/pages/my_zhudui/my_zhudui.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/my_zhudui/my_zhudui.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/my_zhudui/my_zhudui.wxml a/pages/my_zhudui/my_zhudui.wxml
new file mode 100644
index 0000000..f391d7e
--- /dev/null
+++ a/pages/my_zhudui/my_zhudui.wxml
@@ -0,0 +1,69 @@
+<!--pages/my_zhudui/my_zhudui.wxml-->
+<view class='line'></view>
+<view class='formbox' wx:for='{{[1,1]}}' wx:key  bindtap='gomy_zhuduidetail'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>月售120单</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem '>
+  <view>报名人数
+   <text class='order_num'>3人</text>
+  </view>
+  <view class='order_time'>2018-09-08 15:20</view>
+ </view>
+ <view class='formitem  border_b'>
+  <view>预算金额
+   <text class='order_num'>3人</text>
+  </view>
+  <view class='border_bred'>待审核</view>
+ </view>
+ <view class='formitem f_bottom'>
+  <view class='formitem_nimi'>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>上传微信群二维码</view>
+ </view>
+
+</view>
+<view class='formbox' wx:for='{{[1,1]}}' wx:key>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>月售120单</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem '>
+  <view>报名人数
+   <text class='order_num'>3人</text>
+  </view>
+  <view class='order_time'>2018-09-08 15:20</view>
+ </view>
+ <view class='formitem  border_b'>
+  <view>预算金额
+   <text class='order_num'>3人</text>
+  </view>
+  <view class='border_bred'>待审核</view>
+ </view>
+ <view class='formitem f_bottom'>
+  <view class='formitem_nimi border_imgs'>
+   <view class='order_headerimg' wx:for='{{[1,2,3]}}' wx:key>
+    <image src='../../../imgs/head.png'></image>
+   </view>
+  </view>
+  <view class='order_rigth'>
+   <view>1人待支付</view>
+   <view class='order_rigth_bottom'>
+    <view class='form_nimi'>取消订单</view>
+    <view class='form_nimi'>取消订单</view>
+   </view>
+  
+  </view>
+
+ </view>
+
+</view>
\ No newline at end of file
diff --git b/pages/my_zhudui/my_zhudui.wxss a/pages/my_zhudui/my_zhudui.wxss
new file mode 100644
index 0000000..a107493
--- /dev/null
+++ a/pages/my_zhudui/my_zhudui.wxss
@@ -0,0 +1,60 @@
+/* pages/my_zhudui/my_zhudui.wxss */
+@import '/pages/my_order/my_order.wxss';
+.formitem_nimi{
+ font-size:22rpx;
+}
+.form_nimi{
+margin: 8rpx 0 0 0;
+display: inline-block;
+padding:3rpx 8rpx;
+border-radius: 8rpx;
+color:#fff;
+font-size:22rpx;
+background: linear-gradient(-90deg, #36BFB2,#26B9D6,#405FAB);
+}
+.form_nimi::active{
+ opacity: 0.7;
+}
+.f_bottom{
+padding:10rpx 0 16rpx 0;
+}
+.border_bred{
+ color:#C30D23;
+}
+.border_imgs{
+ width:50%;
+ display: flex;
+ align-items: center;
+ flex-wrap: nowrap;
+}
+.order_rigth{
+ width:50%;
+ color:#9FA0A0;
+ font-size:20rpx;
+ text-align: right;
+}
+.order_headerimg{
+ margin: 0 10rpx 0 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width:55rpx;
+ height: 55rpx;
+ border-radius: 8rpx;
+ overflow: hidden;
+}
+.order_headerimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.order_rigth_bottom{
+ display: flex;
+ justify-content: flex-end;
+ margin: 8rpx 0 0 0;
+ align-items: center;
+}
+.order_rigth_bottom .form_nimi{
+ margin: 0 0 0 8rpx;
+
+}
\ No newline at end of file
diff --git b/pages/my_zhuduidetail/my_zhuduidetail.js a/pages/my_zhuduidetail/my_zhuduidetail.js
new file mode 100644
index 0000000..dea764a
--- /dev/null
+++ a/pages/my_zhuduidetail/my_zhuduidetail.js
@@ -0,0 +1,66 @@
+// pages/my_zhuduidetail/my_zhuduidetail.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 b/pages/my_zhuduidetail/my_zhuduidetail.json a/pages/my_zhuduidetail/my_zhuduidetail.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/my_zhuduidetail/my_zhuduidetail.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/my_zhuduidetail/my_zhuduidetail.wxml a/pages/my_zhuduidetail/my_zhuduidetail.wxml
new file mode 100644
index 0000000..ccd261a
--- /dev/null
+++ a/pages/my_zhuduidetail/my_zhuduidetail.wxml
@@ -0,0 +1,103 @@
+<!--pages/my_zhuduidetail/my_zhuduidetail.wxml-->
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>评价4.8</view>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'>
+    <text class='jian_txt'> 减</text>
+   </view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+ <view class='formitem center_formitem'>
+  9:00至凌晨3:00营业
+  <text class='iconfont icon-right'></text>
+ </view>
+ <view class='formitem'>
+  <view>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>距地铁10号线国贸站C口215米</view>
+ </view>
+</view>
+<view class='line'></view>
+<view class='account_title'>队伍信息</view>
+<view class='account_subtitle'>Team information</view>
+<view class='form_info'>
+ <!-- 群二维码 -->
+ <view class='from_infocode'>
+  <view class='from_infocodeimg'>
+   <image src='../../imgs/code.png'></image>
+  </view>
+  <view>群二维码</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>发起人</view>
+  <view class='form_itemrigth'>张三</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>组队人数</view>
+  <view class='form_itemrigth'>3人</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>预算金额</view>
+  <view class='form_itemrigth'>1000元</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>组队说明</view>
+  <view class='form_itemrigth'>一起组队一起浪</view>
+ </view>
+</view>
+<view class='no_team'>
+ <view class='form_infoitem'>
+  <view class='form_itemleft'>隐藏组队</view>
+  <view class='form_itemrigth'>隐藏</view>
+ </view>
+ <!-- <view>隐藏组队</view> -->
+ <view class="team_choose {{ifhide?'team_choose_active':''}}" bindtap='sethide'>
+  <view class='team_chooseyes'></view>
+ </view>
+</view>
+<view class='team_box'>
+ <view class='account_title'>报名队员</view>
+ <view class='account_subtitle'>Enrolment</view>
+ <view class='team_user detail_user' wx:for='{{[1,1]}}' wx:key>
+  <view class='team_left'>
+   <view class='teamimg'>
+    <image src='../../imgs/goods.png'></image>
+   </view>
+   <view>张三</view>
+  </view>
+  <view class='team_rigth'>
+   <view class='team_rigthactive'>同意</view>
+   <view>不同意</view>
+  </view>
+ </view>
+</view>
+<view class='upcode'>
+<view class='client_btn yes_btn' bindtap='yes_btn'>上传微信群二维码</view>
+<view class='code_tip'>请使用微信面对面建群并上传群二维码</view>
+</view>
+<view class='actionbox'>
+<view class='action'>取消组队</view>
+<view class='action action1'>邀请好友</view>
+<view class='action action2'>前去点单</view>
+</view>
+<!-- 组队的提示内容 -->
+<!-- <view class='tishi'> -->
+<view class='tishimian'>
+<view>信息已提交</view><view class='tishiimg'>
+<image src='../../imgs/tijiao@3x.png'></image></view><view>商家处理中</view>
+</view>
+<view class='tishimian'>
+<view>该商家已驳回</view><view class='tishiimg'>
+<image src='../../imgs/shangjiabohui@3x.png'></image></view><view class='goother'>去其他家看看?</view>
+</view>
+<!-- </view> -->
\ No newline at end of file
diff --git b/pages/my_zhuduidetail/my_zhuduidetail.wxss a/pages/my_zhuduidetail/my_zhuduidetail.wxss
new file mode 100644
index 0000000..030f182
--- /dev/null
+++ a/pages/my_zhuduidetail/my_zhuduidetail.wxss
@@ -0,0 +1,119 @@
+/* pages/my_zhuduidetail/my_zhuduidetail.wxss */
+@import '/pages/form/form.wxss';
+.code_tip{
+ color:#FFFFFF;
+ font-size:25rpx;
+ text-align: center;
+}
+.yes_btn {
+margin:0 27rpx 24rpx 27rpx;
+}
+.from_infocode{
+ position: absolute;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ color:#fff;
+ font-size:25rpx;
+ text-align: center;
+ right: 44rpx;
+ top:50%;
+ transform: translateY(-50%);
+ z-index:10;
+}
+.from_infocodeimg{
+ width:108rpx;
+ height: 108rpx;
+ display: flex;
+ align-items: center;
+ justify-content: cneter;
+}
+.from_infocodeimg image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.detail_user{
+ padding:20rpx 16rpx 20rpx 32rpx;
+ justify-content: space-between;
+}
+.team_left{
+ display: flex;
+ align-items: center;
+}
+.team_rigth{
+ display: flex;
+ align-items: center;
+ color:rgba(255,255,255,0.6);
+ font-size:24rpx;
+}
+.team_rigth view{
+ padding:0 32rpx;
+}
+.team_rigthactive{
+ color:#009FE8;
+}
+.actionbox{
+ margin: 35rpx 20rpx;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ color:#fff;
+ font-size:28rpx;
+}
+.action{
+ width:210rpx;
+ height: 50rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 8rpx;
+ overflow: hidden;
+ background: linear-gradient(to right, #267BB8 , #79397C,#C21728); /* 标准的语法 */
+}
+.action1{
+ background: linear-gradient(to right, #EF832C , #D03A6B,#AE2C82); /* 标准的语法 */
+}
+.action2{
+ background: linear-gradient(to right, #34BEB7 , #2A9FD1,#3E65AF); /* 标准的语法 */
+}
+.tishi{
+ position: fixed;
+ top:0;
+ left:0;
+ width:100%;
+ height: 100%;
+ z-index:100;
+ background: rgba(255,255,255,0);
+}
+.tishimian{
+ width:100%;
+ /* position: absolute; */
+ z-index:101;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ /* left:50%;
+ bottom:30%;
+ transform: translateX(-50%); */
+ color:#fff;
+ font-size:25rpx;
+}
+.tishiimg{
+ width:98rpx;
+ height: 98rpx;
+ margin: 0 22rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.tishiimg image{
+width:100%;
+height: 100%;
+display: block;
+}
+.goother{
+ color:#009FE8;
+ border-bottom:1rpx solid #009FE8;
+}
\ No newline at end of file
diff --git b/pages/plaza/plaza.js a/pages/plaza/plaza.js
new file mode 100644
index 0000000..69de99a
--- /dev/null
+++ a/pages/plaza/plaza.js
@@ -0,0 +1,71 @@
+// pages/plaza/plaza.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  rankstate: 0//0综合,1距离,2销量,3筛选
+ },
+ setrankstate(e) {
+  this.setData({
+   rankstate: e.currentTarget.dataset.rankstate
+  })
+
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/plaza/plaza.json a/pages/plaza/plaza.json
new file mode 100644
index 0000000..799146a
--- /dev/null
+++ a/pages/plaza/plaza.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "广场"}
\ No newline at end of file
diff --git b/pages/plaza/plaza.wxml a/pages/plaza/plaza.wxml
new file mode 100644
index 0000000..aeb6c0c
--- /dev/null
+++ a/pages/plaza/plaza.wxml
@@ -0,0 +1,51 @@
+<!--pages/plaza/plaza.wxml-->
+<view class='plaza_nav'>
+ <view class="plaza_navitem {{rankstate==0?'navitem_active':''}}"  data-rankstate='0' bindtap='setrankstate' >
+  <view class=' plaza_navitemimg iconfont icon-fenlei-'></view>
+  <view>综合排序</view>
+ </view>
+ <view class="plaza_navitem {{rankstate==1?'navitem_active':''}}"  data-rankstate='1' bindtap='setrankstate'>
+  <view class='plaza_navitemimg iconfont icon-qunfengdingwei'></view>
+  <view>距离最近</view>
+ </view>
+ <view class="plaza_navitem {{rankstate==2?'navitem_active':''}}"  data-rankstate='2' bindtap='setrankstate'>
+  <view class='plaza_navitemimg iconfont icon-paixing'></view>
+  <view>销量最好</view>
+ </view>
+ <view  class="plaza_navitem {{rankstate==3?'navitem_active':''}}"  data-rankstate='3' bindtap='setrankstate'>
+  <view class='plaza_navitemimg iconfont icon-sousuo'></view>
+  <view>筛选</view>
+ </view>
+</view>
+<navigator class='formbox plazabox' hover-class='navigator_hover' url='/pages/bar_detail/bar_detail'>
+ <view class='order_img plaza_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianouneirjing@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'><text class='jian_txt'> 减</text></view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+</navigator>
+<view class='line'></view>
+<!-- plaza_active -->
+<navigator class='team_user plaza_user' hover-class='navigator_hover' url='/pages/form/form' wx:for='{{[1,1,1]}}' wx:key>
+ <view class='team_left'>
+  <view class='teamimg'>
+   <image src='../../imgs/goods.png'></image>
+  </view>
+  <view>张三</view>
+ </view>
+ <view class='team_center'>
+ <view>组队人数3人</view>
+ <view>预算金额1000元</view>
+ </view>
+<view class='team_rigth'>去组队></view>
+</navigator>
+<view class='more_txt' >更多组队<text class='iconfont icon-down'></text></view>
\ No newline at end of file
diff --git b/pages/plaza/plaza.wxss a/pages/plaza/plaza.wxss
new file mode 100644
index 0000000..9c19e52
--- /dev/null
+++ a/pages/plaza/plaza.wxss
@@ -0,0 +1,71 @@
+/* pages/plaza/plaza.wxss */
+
+@import '/pages/form/form.wxss';
+.plazabox{
+ padding:24rpx 0;
+ border-radius: 8rpx;
+}
+.plaza_nav{
+ padding:30rpx 0;
+ display: flex;
+ justify-content: space-around;
+ align-items: center;
+ color:rgba(255,255,255,0.8);
+ font-size:24rpx;
+}
+.plaza_navitem{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
+.plaza_navitem .iconfont{
+ font-size:44rpx;
+}
+.plaza_navitemimg{
+ width:40rpx;
+ height: 40rpx;
+ margin: 0 0 16rpx 0;
+}
+.plaza_navitemimg image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.navitem_active{
+ color:#009FE8;
+}
+.plaza_img{
+ margin: 0;
+}
+.plaza_user{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+.team_left{
+ width:40%;
+ display: flex;
+ align-items: center;
+}
+.team_center{
+ width:40%;
+ font-size:22rpx;
+ color:rgba(255,255,255,0.6);
+}
+.team_rigth{
+ width:20%;
+ font-size:22rpx;
+ color:rgba(255,255,255,0.6);
+}
+.plaza_active .team_rigth{
+ color:#009FE8;
+}
+.more_txt{
+margin: 20rpx 34rpx 20rpx 34rpx;
+font-size:36rpx;
+color:rgba(255,255,255,0.8);
+}
+.more_txt .iconfont{
+ font-size:40rpx;
+}
diff --git b/pages/share/share.js a/pages/share/share.js
new file mode 100644
index 0000000..0c2091f
--- /dev/null
+++ a/pages/share/share.js
@@ -0,0 +1,66 @@
+// pages/share/share.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 b/pages/share/share.json a/pages/share/share.json
new file mode 100644
index 0000000..0c60707
--- /dev/null
+++ a/pages/share/share.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "分享好友"
+}
\ No newline at end of file
diff --git b/pages/share/share.wxml a/pages/share/share.wxml
new file mode 100644
index 0000000..512e018
--- /dev/null
+++ a/pages/share/share.wxml
@@ -0,0 +1,19 @@
+<!--pages/share/share.wxml-->
+<navigator class='formbox plazabox' hover-class='navigator_hover' url='/pages/bar_detail/bar_detail'>
+ <view class='order_img plaza_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianouneirjing@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'><text class='jian_txt'> 减</text></view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+</navigator>
+<view class='line'></view>
+<view class='client_btn yes_btn' bindtap='yes_btn'>确定参加</view>
\ No newline at end of file
diff --git b/pages/share/share.wxss a/pages/share/share.wxss
new file mode 100644
index 0000000..fd0269b
--- /dev/null
+++ a/pages/share/share.wxss
@@ -0,0 +1,5 @@
+/* pages/share/share.wxss */
+@import '/pages/plaza/plaza.wxss';
+.yes_btn {
+margin:135rpx 27rpx 60rpx 27rpx;
+}
diff --git b/pages/start/start.js a/pages/start/start.js
new file mode 100644
index 0000000..af7e6d3
--- /dev/null
+++ a/pages/start/start.js
@@ -0,0 +1,75 @@
+// pages/start/start.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ start(e){
+  wx.navigateTo({
+   url: '/pages/login/login',
+   success: function(res) {},
+   fail: function(res) {},
+   complete: function(res) {},
+  })
+
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/start/start.json a/pages/start/start.json
new file mode 100644
index 0000000..4f5dac9
--- /dev/null
+++ a/pages/start/start.json
@@ -0,0 +1 @@
+{"backgroundColor": "#6171A8"}
\ No newline at end of file
diff --git b/pages/start/start.wxml a/pages/start/start.wxml
new file mode 100644
index 0000000..140a5b9
--- /dev/null
+++ a/pages/start/start.wxml
@@ -0,0 +1,16 @@
+<!--pages/start/start.wxml-->
+<view class='start_main'>
+<image src='../../imgs/yonghushouyedenglubiejing@3x.png'></image>
+<view class='head_txt'>
+<view class='head_title'>从友</view>
+<view>From·Friends</view>
+<view class='head_subtitle'>让娱乐更简单</view>
+</view>
+<view class='logo'>
+ <image src='../../imgs/qdongtupian@3x.png'></image>
+</view>
+</view>
+<view class='start_btnbox'>
+   <button class='start_btn' open-type='getUserInfo' bindgetuserinfo='start' > <text class='txt'>一起来吧</text> </button>
+</view>
+
diff --git b/pages/start/start.wxss a/pages/start/start.wxss
new file mode 100644
index 0000000..ae5a9b2
--- /dev/null
+++ a/pages/start/start.wxss
@@ -0,0 +1,97 @@
+/* pages/start/start.wxss */
+
+.start_main {
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.start_main image {
+ height: 100%;
+ width: 100%;
+ display: block;
+}
+
+.head_txt {
+ position: absolute;
+ top: 20rpx;
+ left: 54rpx;
+ font-size: 36rpx;
+ color: #fff;
+}
+
+.head_title {
+ font-weight: bold;
+ font-size: 90rpx;
+}
+
+.head_subtitle {
+ position: relative;
+ font-size: 32rpx;
+}
+
+.head_subtitle::after {
+ position: absolute;
+ bottom: -10rpx;
+ left: 0;
+ content: '';
+ width: 100rpx;
+ height: 6rpx;
+ background: linear-gradient(to right, #5b1e8c, #c9689b, #f4c6b1);
+}
+
+.logo {
+ width: 310rpx;
+ height: 310rpx;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ z-index: 10;
+}
+
+.logo image {
+ width: 100%;
+ height: 100%;
+ display: block;
+}
+.start_btnbox{
+ position:absolute;
+bottom:146rpx;
+left:50%;
+transform:translateX(-50%);
+display:flex;
+justify-content:center;
+align-items:center;
+height:92rpx;
+width:277rpx;
+border-radius:38rpx;
+border:4rpx solid #d5d6e4;
+z-index:30rpx;
+}
+.start_btnbox:active{
+ opacity: 0.7;
+}
+.start_btn {
+ margin: 10rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 85rpx;
+ width: 289rpx;
+ border-radius: 27rpx;
+ font-size:40rpx;
+ font-weight: bold;
+ background: #d5d6e4;
+ position: relative;
+ color: #C8171E;
+}
+
+.txt{
+  background: linear-gradient(to right, #C8171E, #9D1C62,#704082,#4166A5,#1D83BF);
+        -webkit-background-clip: text;
+        color: transparent;
+}
\ No newline at end of file
diff --git b/pages/taocan_detail/taocan_detail.js a/pages/taocan_detail/taocan_detail.js
new file mode 100644
index 0000000..34c13d1
--- /dev/null
+++ a/pages/taocan_detail/taocan_detail.js
@@ -0,0 +1,75 @@
+// pages/taocan_detail/taocan_detail.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ goclient_pay(){
+  wx.navigateTo({
+   url: '/pages/client_pay/client_pay',
+  })
+ },
+ goform(){
+  wx.navigateTo({
+   url: '/pages/form/form',
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/taocan_detail/taocan_detail.json a/pages/taocan_detail/taocan_detail.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/taocan_detail/taocan_detail.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/taocan_detail/taocan_detail.wxml a/pages/taocan_detail/taocan_detail.wxml
new file mode 100644
index 0000000..e493144
--- /dev/null
+++ a/pages/taocan_detail/taocan_detail.wxml
@@ -0,0 +1,102 @@
+<!--pages/taocan_detail/taocan_detail.wxml-->
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>评价4.8</view>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'><text class='jian_txt'> 减</text></view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+ <view class='formitem center_formitem'>
+  9:00至凌晨3:00营业
+  <text class='iconfont icon-right'></text>
+ </view>
+ <view class='formitem'>
+  <view>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>距地铁10号线国贸站C口215米</view>
+ </view>
+</view>
+<view class='line'></view>
+<view class='account_title'>普通套餐</view>
+<view class='account_subtitle'>Common set meal</view>
+<view class='form_info'>
+ <view class='form_infoitem' wx:for='{{[1,1,1]}}'>
+  <view class='form_itemleft'>范佳乐</view>
+  <view class='tuanguo_rigth'>
+   <view>1瓶</view>
+   <view class='tuanguo_end'>150元</view>
+  </view>
+ </view>
+ <view class='tuoguan_bottom'>*仅售148元,价值258元百威畅饮,免费WIFI</view>
+</view>
+<view class='tuanguo_price'>
+ <view>原价
+  <text class='nimi_price'>¥</text>
+  <text class='nimi_num'>150</text>
+  <text class='nimi_price'>.00</text>
+ </view>
+ <view>现价
+  <text>¥98..00</text>
+ </view>
+</view>
+<view class='account_title'>用户评价</view>
+<view class='account_subtitle'>User evaluation</view>
+<view class='tuanguo_tap'>
+ <view class='tuantop_item tuantop_item2'>
+  <text class='iconfont icon-charutupian'></text> 晒图(12)</view>
+ <view class='tuantop_item tuantop_item1'>
+  <text class='iconfont icon-xiaoxi'></text> 差评(12)</view>
+ <view class='tuantop_item '>
+  <text class='iconfont icon-xin'></text> 好评(12)</view>
+</view>
+<navigator class='assess_item' hover-class='navigator_hover' url='/pages/evaluate/evaluate' wx:for='{{[1,1]}}' wx:key>
+ <view class='assess_itemletf'>
+  <view class='assess_itemhead'>
+   <image src='../../imgs/head.png'></image>
+  </view>
+  <view>听海的声音</view>
+ </view>
+ <view class='assess_itemrigth'>
+  <image src='../../imgs/pingjiabeijing@3x.png'></image>
+  <view class='assess_itemrigthtxt'>
+   <view class='assess_itemrigthtime'>2018-09-18</view>
+   <view class='assess_itemrigthimg'>
+    <image src='../../imgs/food.png'></image>
+   </view>
+   <view>
+    <view class='asssessbottom'>
+     <view class='asssessbottomtxt'>感觉不错...</view>
+     <view class='startbox'>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+      <view class='start'>
+       <image src='../../imgs/meixuanzhongxinixni@2x.png'></image>
+      </view>
+     </view>
+    </view>
+   </view>
+  </view>
+ </view>
+</navigator>
+
+<view class='client_btn' bindtap='goform' >发起组队</view>
+<view class='client_btn' bindtap='goclient_pay'>支付金额</view>
\ No newline at end of file
diff --git b/pages/taocan_detail/taocan_detail.wxss a/pages/taocan_detail/taocan_detail.wxss
new file mode 100644
index 0000000..5d4490e
--- /dev/null
+++ a/pages/taocan_detail/taocan_detail.wxss
@@ -0,0 +1,156 @@
+/* pages/taocan_detail/taocan_detail.wxss */
+@import '/pages/form/form.wxss';
+.account_title{
+ margin: 40rpx 0 0 0;
+}
+.order_img{
+ margin: 0;
+}
+.form_info {
+color:rgba(255,255,255,0.6);
+}
+
+.form_infoitem{
+ justify-content: space-between;
+}
+.tuanguo_rigth{
+ display: flex;
+}
+.tuanguo_end{
+ margin: 0 0 0 70rpx;
+}
+.tuoguan_bottom{
+ text-align: right;
+}
+.tuanguo_price{
+ margin: 40rpx 0 0 0;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background: #03182C;
+ padding:10rpx 70rpx;
+ color:rgba(255,255,255,0.8);
+ font-size:36rpx;
+}
+.tuanguo_tap{
+ margin: 40rpx 0 0 0;
+ display: flex;
+ align-items: center;
+ flex-direction:row-reverse;
+ background: #03182C;
+ padding:10rpx 60rpx 5rpx 0;
+ color:rgba(255,255,255,0.8);
+ font-size:36rpx;
+}
+.nimi_num{
+ font-size:28rpx;
+}
+.nimi_price{
+ font-size:22rpx;
+}
+.tuantop_item{
+ display: flex;
+ align-items: center;
+ margin: 0 0 0 40rpx;
+ padding:6rpx 10rpx;
+ border-radius: 10rpx;
+ color:rgba(255,255,255,0.6);
+ font-size:22rpx;
+ background: linear-gradient(40deg,#C41725,#A3185E,#634B8C,#1E82BF); 
+}
+.tuantop_item:active{
+ opacity: 0.7;
+}
+.tuantop_item1{
+background: linear-gradient(40deg,#AB2B83,#A3185E,#EB7736,#EF822C); 
+}
+.tuantop_item2{
+background: linear-gradient(40deg,#4061AC,#328AC5,#22B8E0,#33BEB8); 
+}
+.tuantop_item .iconfont{
+ display: inline-block;
+ color:#fff;
+ margin: 0 14rpx 0 0;
+}
+.assess_item{
+ padding:20rpx;
+ margin: 10rpx 0 20rpx 0;
+ display: flex;
+ align-items: center;
+ background: #03182C;
+ color:rgba(255,255,255,0.6);
+ font-size:20rpx;
+}
+.assess_itemhead{
+ width:92rpx;
+ height: 92rpx;
+ border-radius: 8rpx;
+
+}
+.assess_itemhead image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.assess_itemrigth{
+ position: relative;
+ padding:20rpx;
+ height: 170rpx;
+ width:80%;
+ font-size:22rpx;
+ color:#727171;
+}
+.assess_itemrigthtxt{
+ position: absolute;
+ top:30rpx;
+ left:60rpx;
+ width:80%;
+ height: 80%;
+ z-index:30;
+}
+.assess_itemrigth image{
+ width:100%;
+ height: 100%;
+}
+.assess_itemrigthtime{
+ text-align: right;
+}
+
+.assess_itemrigthimg{
+ 
+ width:200rpx;
+ height: 90rpx;
+ overflow: hidden;
+}
+.assess_itemrigthtime image{
+ width:100%;
+ height: 100%;
+}
+.startbox{
+ 
+ display: flex;
+ align-items: center;
+}
+.start{
+ width:30rpx;
+ height: 30rpx;
+ overflow: hidden
+}
+.start image{
+ width:100%;
+ height: 100%;
+ display: block;
+}
+.asssessbottom{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+.client_btn{
+ margin: 0 27rpx 20rpx 27rpx;
+}
+.asssessbottomtxt{
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
\ No newline at end of file
diff --git b/pages/true_approve/true_approve.js a/pages/true_approve/true_approve.js
new file mode 100644
index 0000000..475b09a
--- /dev/null
+++ a/pages/true_approve/true_approve.js
@@ -0,0 +1,66 @@
+// pages/true_approve/true_approve.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 b/pages/true_approve/true_approve.json a/pages/true_approve/true_approve.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/true_approve/true_approve.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/true_approve/true_approve.wxml a/pages/true_approve/true_approve.wxml
new file mode 100644
index 0000000..16dc6a1
--- /dev/null
+++ a/pages/true_approve/true_approve.wxml
@@ -0,0 +1,63 @@
+<!--pages/true_approve/true_approve.wxml-->
+<view class='true_itembox'>
+ <view class='true_item'>
+  <view class='true_tip'>真实姓名</view>
+  <view class='true_main'>
+   <input placeholder='请输入姓名' placeholder-class='input_p'></input>
+  </view>
+ </view>
+ <view class='true_item'>
+  <view class='true_tip'>手机号码</view>
+  <view class='true_main'>
+   <input placeholder='请输入手机号码' placeholder-class='input_p'></input>
+  </view>
+ </view>
+ <view class='true_item code_item'>
+  <view class='true_tip'>验证码</view>
+  <view class='true_main'>
+   <input placeholder='请输入验证码' placeholder-class='input_p'></input>
+  </view>
+  <view class='code_txt'>获取验证码</view>
+ </view>
+  <view class='true_item'>
+  <view class='true_tip'>身份证号码</view>
+  <view class='true_main'>
+   <input placeholder='请输入身份证号码' placeholder-class='input_p'></input>
+  </view>
+ </view>
+</view>
+<view class='true_titlebox'>
+<view>证件上传</view>
+<view>身份证(正面)</view>
+</view>
+<view class='catebox'>
+<view class='cateimg'>
+ <image src='../../imgs/id_y.png'></image>
+</view>
+</view>
+<view class='true_titlebox'>
+<view>身份证(反面)</view>
+</view>
+<view class='catebox'>
+<view class='cateimg'>
+ <image src='../../imgs/id_n.png'></image>
+</view>
+</view>
+<view class='true_titlebox'>
+<view>个人手持身份证照</view>
+</view>
+<view class='catebox'>
+<view class='cateimg id_img'>
+ <image src='../../imgs/id.png'></image>
+</view>
+</view>
+<view class='true_titlebox'>
+<view>上传要求</view>
+</view>
+<view class='true_titlebox truetxt_main'>
+ <view>1、请确保上传身份证信息正式清晰,并与本人一致,若不一致,则会导致审核被驳回.</view>
+ <view>2、证件必须要在有效期内,有效期需在一个月以上.</view>
+ <view>3、您所提供的身份信息仅用于身份验证,
+未经本人的许可不会用于其他途径.</view>
+</view>
+<view class='client_btn'>提交 </view>
diff --git b/pages/true_approve/true_approve.wxss a/pages/true_approve/true_approve.wxss
new file mode 100644
index 0000000..30e3e45
--- /dev/null
+++ a/pages/true_approve/true_approve.wxss
@@ -0,0 +1,90 @@
+/* pages/true_approve/true_approve.wxss */
+page{
+ background: #1B388C;
+ font-size:24rpx;
+ color:rgba(255,255,255,0.8);
+}
+.true_itembox{
+ margin: 80rpx 0 0 0;
+}
+.true_item{
+ display: flex;
+ margin: 0 4rpx ;
+ align-items: center;
+ padding:27rpx 30rpx 27rpx 70rpx;
+ border-bottom:1px solid rgba(255,255,255,0.6);
+}
+.true_tip{
+ width:38%;
+}
+.true_main{
+ width:60%;
+}
+.input_p{
+ font-size:24rpx;
+ color:rgba(255,255,255,0.8);
+}
+.code_item{
+justify-content: space-between;
+}
+.code_item .true_main{
+ width:40%;
+}
+.code_txt {
+display:flex;
+align-items:center;
+justify-content:center;
+width:178rpx;
+height: 48rpx;
+box-sizing: border-box;
+padding:2rpx 10rpx;
+border:1rpx solid rgba(255,255,255,0.6);
+border-radius:10rpx;
+}
+.true_titlebox{
+ margin: 0 0 0 70rpx;
+ color:rgba(255,255,255,0.8);
+ font-size:24rpx;
+}
+.true_titlebox view{
+ margin: 24rpx 0 0 0;
+}
+.catebox{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background: #010D22;
+ margin: 20rpx 19rpx 0 19rpx;
+ height: 300rpx;
+ border-radius: 15rpx;
+}
+.cateimg{
+ width:312rpx;
+ height: 200rpx;
+ border-radius: 20rpx;
+}
+.cateimg image{
+ display: block;
+ width:100%;
+ height: 100%;
+}
+.id_img{
+ width:166rpx;
+ height: 200rpx;
+ border-radius: 0;
+}
+.true_txtbox{
+ color:rgba(255,255,255,0.6);
+ font-size: 24rpx;
+ margin: 0 70rpx 0 0;
+}
+.truetxt_main{
+  margin: 24rpx 70rpx 40rpx 70rpx;
+}
+.truetxt_main view{
+ margin: 0;
+}
+.client_btn{
+ background: linear-gradient(to right, #EF832C ,#D03A6B, #892D71);
+ margin: 0 27rpx 70rpx 27rpx;
+}
\ No newline at end of file
diff --git b/pages/tuangou/tuanguo.js a/pages/tuangou/tuanguo.js
new file mode 100644
index 0000000..6a2357e
--- /dev/null
+++ a/pages/tuangou/tuanguo.js
@@ -0,0 +1,84 @@
+// pages/tuangou/tuanguo.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+  list:[1],
+  open:false
+ },
+
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ onLoad: function (options) {
+
+ },
+ pushlist(){
+  let that=this;
+  let list=[1,1,1];
+  let list1=[1];
+  if (that.data.open){
+   that.setData({
+    list: list1,
+    open: !that.data.open
+   })
+  }else{
+   that.setData({
+    list: list,
+    open: !that.data.open
+   })
+  }
+  
+
+ },
+ /**
+  * 生命周期函数--监听页面初次渲染完成
+  */
+ onReady: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面显示
+  */
+ onShow: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面隐藏
+  */
+ onHide: function () {
+
+ },
+
+ /**
+  * 生命周期函数--监听页面卸载
+  */
+ onUnload: function () {
+
+ },
+
+ /**
+  * 页面相关事件处理函数--监听用户下拉动作
+  */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+  * 页面上拉触底事件的处理函数
+  */
+ onReachBottom: function () {
+
+ },
+
+ /**
+  * 用户点击右上角分享
+  */
+ onShareAppMessage: function () {
+
+ }
+})
\ No newline at end of file
diff --git b/pages/tuangou/tuanguo.json a/pages/tuangou/tuanguo.json
new file mode 100644
index 0000000..4ba21b3
--- /dev/null
+++ a/pages/tuangou/tuanguo.json
@@ -0,0 +1 @@
+{"navigationBarTitleText": "我的团购"}
\ No newline at end of file
diff --git b/pages/tuangou/tuanguo.wxml a/pages/tuangou/tuanguo.wxml
new file mode 100644
index 0000000..a4d359c
--- /dev/null
+++ a/pages/tuangou/tuanguo.wxml
@@ -0,0 +1,52 @@
+<!--pages/tuangou/tuanguo.wxml-->
+<view class="tuanguonavbox">
+ <view class='tuanguonav_img'>
+  <image src='../../imgs/tuangoubeijing@3x.png'></image>
+ </view>
+ <view class='tuanguonav_mian'>
+  <view class='tuanguonav'>
+   <view>全部分类</view>
+   <view class='tuanguonav_nimi'>All classification</view>
+  </view>
+  <view class='tuanguonav tuanguonav1'>
+   <view>派对俱乐部</view>
+   <view class='tuanguonav_nimi'>Party Club</view>
+  </view>
+  <view class='tuanguonav tuanguonav2'>
+   <view>清吧</view>
+   <view class='tuanguonav_nimi'>Fresh Bar</view>
+  </view>
+  <view class='tuanguonav tuanguonav3'>
+   <view>夜总会</view>
+   <view class='tuanguonav_nimi'>Nightclub</view>
+  </view>
+ </view>
+</view>
+<view class='line'></view>
+<view class='formbox' wx:for='{{[1,1,1]}}' >
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>月售120单</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <navigator url='/pages/taocan_detail/taocan_detail'  hover-class='navigator_hover' class='formitem form_item'  wx:for='{{list}}' wx:key>
+  <view class='guitxtitem'>特惠套餐</view>
+  <view class='guitxtitem_rigth'>
+   <view class='formitem_rigth form_nimi from_bottom'>一打啤酒+6瓶饮料+一份小果盘+一个卡座(6人)</view>
+   <view class='formitem center'>
+    <view class='formitem_rigth_jian'>
+     <text class='jian_txt'> 减</text>
+    </view>
+    <text class='center_price'>¥256</text>
+    <text>满300减50</text>
+   </view>
+  </view>
+ </navigator>
+ <view class='formitem tuanguo_bottom' bindtap='pushlist'>
+  <view class='center_txt'>{{open?'收起':'展开更多套餐:3个'}}</view>
+  <view class="iconfont {{open?'icon-xiangshang2':'icon-down'}}"></view>
+ </view>
+</view>
\ No newline at end of file
diff --git b/pages/tuangou/tuanguo.wxss a/pages/tuangou/tuanguo.wxss
new file mode 100644
index 0000000..06ed0a6
--- /dev/null
+++ a/pages/tuangou/tuanguo.wxss
@@ -0,0 +1,104 @@
+/* pages/tuangou/tuanguo.wxss */
+@import '/pages/form/form.wxss';
+.tuanguonavbox{
+ position: relative;
+ margin: 0rpx 27rpx 0 27rpx;
+ display: flex;
+ height: 170rpx;
+ justify-content: space-around;
+ align-items: center;
+}
+.tuanguonav_img{
+ height: 170rpx;
+ width:100%;
+}
+.tuanguonav_img image{
+ width:100%;
+ height: 100%;
+}
+.line{
+ margin: 10rpx 20rpx 0 20rpx;
+}
+.tuanguonav_mian{
+ position: absolute;
+ display: flex;
+ justify-content: space-around;
+ align-items: center;
+ top:0;
+ left:0;
+ width:100%;
+ height: 100%;
+ z-index:10;
+}
+.tuanguonav{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ height: 100rpx;
+ border-radius: 8rpx;
+ color:rgba(255,255,255,0.8);
+ font-size:28rpx;
+ background: linear-gradient(45deg, #009FE8, #5B5192,#8C2A6E,#C61722);
+ width:22%;
+}
+.tuanguonav:active{
+ opacity: 0.7;
+}
+.tuanguonav1{
+ background: linear-gradient(45deg, #34BEB6, #23B5DE,#3484C1,#415DAA);
+}
+.tuanguonav2{
+ background: linear-gradient(45deg, #EB7637, #DF5255,#C33573,#B8307B);
+}
+.tuanguonav3{
+ background: linear-gradient(45deg, #EDB8AE, #B43C90,#832B8E,#551C8C);
+}
+.tuanguonav_nimi{
+ font-size: 16rpx;
+}
+.formbox{
+ margin:20rpx 27rpx 40rpx 27rpx;
+ padding:15rpx 0 0 0;
+ border-radius: 8rpx;
+}
+.order_img {
+ height: 200rpx;
+ border-radius: 0;
+}
+.center {
+align-items:center;
+justify-content:left;
+font-size:24rpx;
+padding:6rpx 0 16rpx 0;
+color:#231815;
+}
+.center .iconfont{
+ color:#231815;
+}
+.form_item{
+ display: flex;
+ align-items: left;
+ justify-content: left;
+ padding:6rpx 20rpx 6rpx 20rpx;
+}
+.guitxtitem {
+font-size:34rpx;
+width:26%;
+}
+.guitxtitem_rigth{
+ width:73%;
+}
+.center_txt{
+ color:#9E9E9F;
+ text-decoration:underline;
+}
+.center_price{
+ margin: 0 27rpx 0 0;
+}
+.from_bottom{
+ margin: 10rpx 0 1rpx 0;
+}
+.tuanguo_bottom{
+ justify-content: center;
+}
\ No newline at end of file
diff --git b/pages/zudui_pay/zudui_pay.js a/pages/zudui_pay/zudui_pay.js
new file mode 100644
index 0000000..fe99e1e
--- /dev/null
+++ a/pages/zudui_pay/zudui_pay.js
@@ -0,0 +1,70 @@
+// pages/zudui_pay/zudui_pay.js
+Page({
+
+ /**
+  * 页面的初始数据
+  */
+ data: {
+
+ },
+ goclient_pay(){
+  wx.navigateTo({
+   url: '/pages/client_pay/client_pay',
+  })
+ },
+ /**
+  * 生命周期函数--监听页面加载
+  */
+ 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 b/pages/zudui_pay/zudui_pay.json a/pages/zudui_pay/zudui_pay.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ a/pages/zudui_pay/zudui_pay.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git b/pages/zudui_pay/zudui_pay.wxml a/pages/zudui_pay/zudui_pay.wxml
new file mode 100644
index 0000000..11e199a
--- /dev/null
+++ a/pages/zudui_pay/zudui_pay.wxml
@@ -0,0 +1,75 @@
+<!--pages/zudui_pay/zudui_pay.wxml-->
+<view class='formbox'>
+ <view class='order_img'>
+  <view class='order_imgtxt'>
+   <view class='order_imgtxttitle'>夜色酒吧</view>
+   <view class='order_imgtxtsubtitle'>[主题酒吧]</view>
+  </view>
+  <view class='order_imgtime'>2018-09-08</view>
+  <image src='../../../imgs/dianoufengmian@3x.png'></image>
+ </view>
+ <view class='formitem'>
+  <view>评价4.8</view>
+  <view class='formitem_rigth form_nimi'>
+   <view class='formitem_rigth_jian'><text class='jian_txt'> 减</text></view>
+   满1000减300 满1500减500 满2000减800
+  </view>
+ </view>
+ <view class='formitem center_formitem'>
+  9:00至凌晨3:00营业
+  <text class='iconfont icon-right'></text>
+ </view>
+ <view class='formitem'>
+  <view>
+   <text class='iconfont icon-dingwei'></text> 河西区南丰路254号丰台楼3楼</view>
+  <view class='form_nimi'>距地铁10号线国贸站C口215米</view>
+ </view>
+</view>
+<view class='line'></view>
+<view class='account_title'>普通套餐</view>
+<view class='account_subtitle'>Common set meal</view>
+<view class='form_info'>
+ <view class='form_infoitem' wx:for='{{[1,1]}}'>
+  <view class='form_itemleft'>百威啤酒 x1</view>
+  <view class='tuanguo_rigth'>
+   <view class='tuanguo_end'>¥12</view>
+  </view>
+ </view>
+ <view class='form_infoitem' >
+  <view class='formitem_rigth_jian'><text class='jian_txt'> 减</text></view>
+  <view class='tuanguo_rigth'>
+   <view class='tuanguo_end'>-¥12</view>
+  </view>
+ </view>
+
+</view>
+<view class='tuanguo_price zudui_pay'>
+ <view class='zudui_pay_top'>合计
+  <text class='nimi_price'>¥</text>
+  <text class='nimi_num'>80.</text>
+  <text class='nimi_price'>.00</text>
+ </view>
+<view class='zudui_paynimitxt'>已优惠¥10</view>
+ 
+</view>
+<view class='account_title'>用户信息</view>
+<view class='account_subtitle'>User information</view>
+<view class='form_info'>
+ <view class='form_infoitem zudui_infoitem'>
+  <view class='form_itemleft zhudui_payleft'>姓名</view>
+  <view class='form_itemrigth'>张三</view>
+ </view>
+ <view class='form_infoitem zudui_infoitem'>
+  <view class='form_itemleft zhudui_payleft'>性别</view>
+  <view class='form_itemrigth'>男</view>
+ </view>
+ <view class='form_infoitem zudui_infoitem'>
+  <view class='form_itemleft zhudui_payleft'>手机号</view>
+  <view class='form_itemrigth'>13110058952</view>
+ </view>
+ <view class='form_infoitem'>
+  <view class='form_itemleft zhudui_payleft'>备注</view>
+  <view class='form_itemrigth'></view>
+ </view>
+</view>
+<view class='client_btn' bindtap='goclient_pay'>付款</view>
\ No newline at end of file
diff --git b/pages/zudui_pay/zudui_pay.wxss a/pages/zudui_pay/zudui_pay.wxss
new file mode 100644
index 0000000..03cc636
--- /dev/null
+++ a/pages/zudui_pay/zudui_pay.wxss
@@ -0,0 +1,21 @@
+/* pages/zudui_pay/zudui_pay.wxss */
+@import '/pages/taocan_detail/taocan_detail.wxss';
+.form_info {
+color:rgba(255,255,255,0.6);
+padding:10rpx 27rpx 10rpx 70rpx;
+}
+.zudui_infoitem{
+justify-content: flex-start;
+}
+.zudui_pay{
+ justify-content: flex-end;
+ padding:10rpx 30rpx;
+}
+.zudui_paynimitxt{
+ color:#009FE8;
+ margin: 10rpx 0 0 22rpx;
+ font-size:20rpx;
+}
+.zhudui_payleft{
+ width:20%;
+}
\ No newline at end of file
diff --git b/project.config.json a/project.config.json
new file mode 100644
index 0000000..a1b4c37
--- /dev/null
+++ a/project.config.json
@@ -0,0 +1,73 @@
+{
+	"description": "项目配置文件",
+	"packOptions": {
+		"ignore": []
+	},
+	"setting": {
+		"urlCheck": false,
+		"es6": true,
+		"postcss": true,
+		"minified": true,
+		"newFeature": true
+	},
+	"compileType": "miniprogram",
+	"libVersion": "2.4.1",
+	"appid": "wx4ac44ac1779dc6a6",
+	"projectname": "bar",
+	"debugOptions": {
+		"hidedInDevtools": []
+	},
+	"isGameTourist": false,
+	"condition": {
+		"search": {
+			"current": -1,
+			"list": []
+		},
+		"conversation": {
+			"current": -1,
+			"list": []
+		},
+		"plugin": {
+			"current": -1,
+			"list": []
+		},
+		"game": {
+			"currentL": -1,
+			"list": []
+		},
+		"miniprogram": {
+			"current": 4,
+			"list": [
+				{
+					"id": -1,
+					"name": "login",
+					"pathName": "pages/login/login",
+					"query": ""
+				},
+				{
+					"id": 1,
+					"name": "my_order",
+					"pathName": "pages/my_order/my_order",
+					"query": ""
+				},
+				{
+					"id": -1,
+					"name": "主页",
+					"pathName": "pages/index/index",
+					"query": ""
+				},
+				{
+					"id": -1,
+					"name": "酒吧详情",
+					"pathName": "pages/bar_detail/bar_detail",
+					"query": ""
+				},
+				{
+					"id": -1,
+					"name": "商家注册",
+					"pathName": "pages/merchant/register/register"
+				}
+			]
+		}
+	}
+}
\ No newline at end of file
diff --git b/utils/util.js a/utils/util.js
new file mode 100644
index 0000000..dbadbb8
--- /dev/null
+++ a/utils/util.js
@@ -0,0 +1,19 @@
+const formatTime = date => {
+  const year = date.getFullYear()
+  const month = date.getMonth() + 1
+  const day = date.getDate()
+  const hour = date.getHours()
+  const minute = date.getMinutes()
+  const second = date.getSeconds()
+
+  return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
+}
+
+const formatNumber = n => {
+  n = n.toString()
+  return n[1] ? n : '0' + n
+}
+
+module.exports = {
+  formatTime: formatTime
+}