Browse Source

添加信息

master
mike 2 years ago
parent
commit
7dca88d59f
  1. 2
      agentApp/pages.json
  2. 30
      agentApp/pages/allpages/index.vue

2
agentApp/pages.json

@ -99,7 +99,7 @@
"path" : "pages/user-orders/user-orders",
"style" :
{
"navigationBarTitleText" : "",
"navigationBarTitleText" : "主页",
"enablePullDownRefresh" : false
}
},

30
agentApp/pages/allpages/index.vue

@ -4,11 +4,13 @@
<button @click="goPage(4)">商户登录</button>
<button @click="goPage(5)">商户主页</button>
<text>用户相关</text>
<button @click="goPage(3)">用户支付页面</button>
<button @click="goPage(3)">用户支付页面2</button>
<button @click="goPage(20)">用户订单/主页</button>
<button @click="goPage(21)">用户排队信息</button>
<text>代理商相关</text>
<button @click="goPage(1)">代理商登录</button>
<button @click="goPage(2)">代理商主页</button>
<button @click="goPage(6)">代理商提现</button>
<button @click="goPage(17)">代理商提现历史</button>
</view>
</template>
@ -47,6 +49,30 @@
url: '/pages/merchant-index/index'
});
break;
case 6:
uni.navigateTo({
url: '/pages/cash/cash'
});
break;
case 17:
uni.navigateTo({
url: '/pages/history/history'
});
break;
case 20:
uni.navigateTo({
url: '/pages/user-orders/user-orders'
});
break;
case 21:
uni.navigateTo({
url: '/pages/queuing-information/queuing-information'
});
break;
default:
uni.navigateTo({
url: '/pages/login/index'

Loading…
Cancel
Save