add
This commit is contained in:
parent
448733a1c8
commit
9c08d45e09
|
@ -19,7 +19,13 @@ export function errorReport(data) {
|
|||
return request.post(`api/err/report`, data);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 新商户
|
||||
*/
|
||||
export function isNewMer(uid, mer_id, data) {
|
||||
return request.post(`auth/guide/${uid}/${mer_id}`, data);
|
||||
}
|
||||
/**
|
||||
/**
|
||||
* 提现----查询单条信息
|
||||
*/
|
||||
|
|
|
@ -425,8 +425,10 @@
|
|||
merstreet,
|
||||
getUserInfo,
|
||||
getAdminApplyAPI,
|
||||
progressBankList
|
||||
progressBankList,
|
||||
isNewMer
|
||||
} from '@/api/user.js';
|
||||
|
||||
import {
|
||||
business,
|
||||
intention,
|
||||
|
@ -873,24 +875,45 @@
|
|||
}
|
||||
},
|
||||
onReady() {
|
||||
let that = this
|
||||
const query = uni.createSelectorQuery().in(this);
|
||||
query
|
||||
.select(".tools-two-img")
|
||||
.boundingClientRect((data) => {
|
||||
let info = JSON.stringify(data)
|
||||
that.elInfo = data
|
||||
// #ifdef APP-PLUS
|
||||
// if(that.userInfoData.is_newUser){
|
||||
if (true) {
|
||||
that.openDiver()
|
||||
if (Boolean(this.$store.state.app.userInfo.service?.mer_id)) {
|
||||
isNewMer(this.$store.state.app.userInfo.uid, this.$store.state.app.userInfo.service?.mer_id).then(res => {
|
||||
return
|
||||
if (res.data == 'true') {
|
||||
let that = this
|
||||
const query = uni.createSelectorQuery().in(this);
|
||||
query
|
||||
.select(".tools-two-img")
|
||||
.boundingClientRect((data) => {
|
||||
let info = JSON.stringify(data)
|
||||
that.elInfo = data
|
||||
// #ifdef APP-PLUS
|
||||
that.openDiver()
|
||||
// #endif
|
||||
})
|
||||
.exec();
|
||||
}
|
||||
// #endif
|
||||
})
|
||||
.exec();
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
|
||||
onShow() {
|
||||
|
||||
if (Boolean(this.$store.state.app.userInfo.service?.mer_id)) {
|
||||
isNewMer(this.$store.state.app.userInfo.uid, this.$store.state.app.userInfo.service?.mer_id).then(
|
||||
res => {
|
||||
return
|
||||
if (res.data == 'true' && this.elInfo) {
|
||||
console.log('resdaa', res.data)
|
||||
this.openDiver()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
if (this.loadEndFlag) {
|
||||
this.getUserInfo();
|
||||
this.codelist();
|
||||
|
|
|
@ -226,7 +226,8 @@
|
|||
import Loading from '@/components/Loading/index.vue';
|
||||
import {
|
||||
merstreet,
|
||||
getUserInfo
|
||||
getUserInfo,
|
||||
isNewMer
|
||||
} from '@/api/user.js';
|
||||
import {
|
||||
navigateTo,
|
||||
|
|
|
@ -25,6 +25,9 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
isNewMer
|
||||
} from '@/api/user.js';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
@ -46,6 +49,11 @@
|
|||
},
|
||||
next() {
|
||||
this.subNVue.hide('zoom-in', 300, )
|
||||
isNewMer(this.$store.state.app.userInfo.uid, this.$store.state.app.userInfo.service?.mer_id, {
|
||||
done: true
|
||||
}).then(res => {
|
||||
console.log('res', res)
|
||||
})
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
|
Loading…
Reference in New Issue