|
@@ -77,7 +77,7 @@ export default {
|
|
|
orderId: '',
|
|
|
orderInfo: {},//订单信息
|
|
|
userType: uni.getStorageSync('userType'), //读取本地存储
|
|
|
- system: '2',
|
|
|
+ system: 2,
|
|
|
userId: uni.getStorageSync('userId'), //读取本地存储
|
|
|
conversationRecordId: null,//会话id
|
|
|
storeUser: store.state.user,
|
|
@@ -110,7 +110,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
//1用户2志愿者3后台
|
|
|
- this.system = this.userType === 1 ? '1' : '2';
|
|
|
+ this.system = this.userType === 1 ? 1 : 2;
|
|
|
//客服
|
|
|
if(options.customerService){
|
|
|
// this.system = 3;
|