master
yujialong 3 years ago
parent 253a87531b
commit 8e1f5fa658
  1. 4
      apis/modules/user.js
  2. 3
      manifest.json
  3. 0
      order/addCourse/addCourse.vue
  4. 0
      order/editCourse/editCourse.vue
  5. 4
      order/orderDetail/orderDetail.vue
  6. 0
      order/ordered/ordered.vue
  7. 0
      order/orders/orders.vue
  8. 91
      pages.json
  9. 4
      pages/clientDetail/clientDetail.vue
  10. 2
      pages/index/index.vue
  11. 2
      pages/phone/phone.vue
  12. BIN
      static/image/person4.png

@ -37,8 +37,8 @@ export const changeAccount = account => {
return post(`users/applets/mine/changeAccount?account=${account}`)
}
export const changePhoneNumber = phone => {
return post(`users/applets/mine/changePhoneNumber?phone=${phone}`)
export const changePhoneNumber = (phone, code) => {
return post(`users/applets/mine/changePhoneNumber?phone=${phone}&code=${code}`)
}
export const checkIfAnAccountExists = account => {

@ -1,5 +1,5 @@
{
"name" : "crm-pro",
"name" : "或然crm",
"appid" : "__UNI__2E89BA6",
"description" : "",
"versionName" : "1.0.0",
@ -48,7 +48,6 @@
"quickapp" : {},
/* */
"mp-weixin" : {
/* */
"appid" : "wx77a8a2a23138998b",
"setting" : {
"urlCheck" : false,

@ -382,14 +382,14 @@
update(data).then(res => {
this.$util.sucMsg('编辑成功')
setTimeout(() => {
this.$util.to('../orders/orders')
uni.navigateBack()
}, 1500)
}).catch(res => {})
} else {
add(data).then(res => {
this.$util.sucMsg('添加成功')
setTimeout(() => {
this.$util.to('../orders/orders')
uni.navigateBack()
}, 1500)
}).catch(res => {})
}

@ -23,14 +23,6 @@
"navigationBarTitleText": "邀请加入",
"enablePullDownRefresh": false
}
},
{
"path" : "pages/orders/orders",
"style" :
{
"navigationBarTitleText": "订单列表",
"enablePullDownRefresh": true
}
},
{
"path" : "pages/clients/clients",
@ -47,14 +39,6 @@
"navigationBarTitleText": "产品",
"enablePullDownRefresh": true
}
},
{
"path" : "pages/addCourse/addCourse",
"style" :
{
"navigationBarTitleText": "选择产品",
"enablePullDownRefresh": true
}
},
{
"path" : "pages/clientDetail/clientDetail",
@ -64,14 +48,6 @@
"enablePullDownRefresh": false
}
},
{
"path" : "pages/orderDetail/orderDetail",
"style" :
{
"navigationBarTitleText": "订单详情",
"enablePullDownRefresh": false
}
},
{
"path" : "pages/addStaff/addStaff",
"style" :
@ -128,22 +104,6 @@
"enablePullDownRefresh": true
}
},
{
"path" : "pages/ordered/ordered",
"style" :
{
"navigationBarTitleText": "已订阅产品",
"enablePullDownRefresh": false
}
},
{
"path" : "pages/editCourse/editCourse",
"style" :
{
"navigationBarTitleText": "编辑产品",
"enablePullDownRefresh": false
}
},
{
"path" : "pages/account/account",
"style" :
@ -169,6 +129,57 @@
}
}
],
"subPackages": [{
"root": "order",
"pages": [
{
"path": "orders/orders",
"style" :
{
"navigationBarTitleText": "订单列表",
"enablePullDownRefresh": true
}
},
{
"path" : "addCourse/addCourse",
"style" :
{
"navigationBarTitleText": "选择产品",
"enablePullDownRefresh": true
}
},
{
"path" : "orderDetail/orderDetail",
"style" :
{
"navigationBarTitleText": "订单详情",
"enablePullDownRefresh": false
}
},
{
"path" : "ordered/ordered",
"style" :
{
"navigationBarTitleText": "已订阅产品",
"enablePullDownRefresh": false
}
},
{
"path" : "editCourse/editCourse",
"style" :
{
"navigationBarTitleText": "编辑产品",
"enablePullDownRefresh": false
}
}
]
}],
"preloadRule": {
"order/orders/orders": {
"network": "all",
"packages": ["__APP__"]
}
},
"condition": { //
"current": 0, //list
"list": [{

@ -75,11 +75,11 @@
<uni-icons class="icon" custom-prefix="iconfont" type="icon-edit" size="20" color="#959595"></uni-icons>
<view class="text">编辑</view>
</view>
<view class="item" @click="toPage(`../ordered/ordered?customerId=${customerId}`)">
<view class="item" @click="toPage(`/order/ordered/ordered?customerId=${customerId}`)">
<uni-icons class="icon" custom-prefix="iconfont" type="icon-product" size="20" color="#959595"></uni-icons>
<view class="text">已订阅产品</view>
</view>
<view class="item" @click="toPage('../orders/orders')">
<view class="item" @click="toPage('/order/orders/orders')">
<uni-icons class="icon" custom-prefix="iconfont" type="icon-dingdan" size="20" color="#959595"></uni-icons>
<view class="text">订单</view>
</view>

@ -22,7 +22,7 @@
<image class="icon" src="@/static/image/index/index4.png" mode="widthFix"></image>
<view class="text">方案</view>
</li>
<li v-if="auth('首页:订单')" @click="$util.to('../orders/orders')">
<li v-if="auth('首页:订单')" @click="$util.to('/order/orders/orders')">
<image class="icon" src="@/static/image/index/index5.png" mode="widthFix"></image>
<view class="text">订单</view>
</li>

@ -72,7 +72,7 @@
const { phone, code } = this.form
if (!phone) return this.$util.errMsg('请输入手机号')
if (!code) return this.$util.errMsg('请输入验证码')
changePhoneNumber(phone).then(res => {
changePhoneNumber(phone, code).then(res => {
this.$util.sucMsg('修改成功!')
setTimeout(() => {
uni.reLaunch({

Binary file not shown.

Before

Width:  |  Height:  |  Size: 724 B

After

Width:  |  Height:  |  Size: 1.4 KiB

Loading…
Cancel
Save