|
|
|
|
@ -46,6 +46,7 @@ export default {
|
|
|
|
|
_name:'',
|
|
|
|
|
_job:'',
|
|
|
|
|
_oid:'',
|
|
|
|
|
_rid:''
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
@ -78,6 +79,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
oid:{
|
|
|
|
|
default:'',
|
|
|
|
|
},
|
|
|
|
|
rid:{
|
|
|
|
|
default:''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
@ -117,6 +121,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
oid(val){
|
|
|
|
|
this._oid = val;
|
|
|
|
|
},
|
|
|
|
|
rid(val){
|
|
|
|
|
this._rid = val;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
@ -125,6 +132,7 @@ export default {
|
|
|
|
|
that._name = that.name;
|
|
|
|
|
that._job = that.job;
|
|
|
|
|
that._oid = that.oid;
|
|
|
|
|
that._rid = that.rid;
|
|
|
|
|
that.appInfo = that.recommendList;
|
|
|
|
|
console.log("that.appInfo", that.appInfo);
|
|
|
|
|
let _env = uni.getAccountInfoSync().miniProgram.envVersion;
|
|
|
|
|
@ -136,6 +144,7 @@ export default {
|
|
|
|
|
{
|
|
|
|
|
env: _env,
|
|
|
|
|
orderId:that._oid,
|
|
|
|
|
relationId:that._rid
|
|
|
|
|
},
|
|
|
|
|
(res) => {
|
|
|
|
|
console.log("获取邀请码:", res);
|
|
|
|
|
|