no message

cyl/job_im
jscyl13849007907 3 days ago
parent 1ab412b5c7
commit 6d19de2924

@ -135,6 +135,12 @@
{ //
"root": "root/person",
"pages": [
{
"path": "downpage",
"style": {
"navigationBarTitleText": "下游代理"
}
},
{
"path": "loginIndex",
"style": {

@ -48,6 +48,24 @@
>去邀请</view>
</view>
</view>
<view class="g_mt_10 g_position_rela u-skeleton" v-if="isJm">
<g-panel-form-item
:list="[
{
icon: 'index',
label: '下游代理',
result: '',
path: '/root/person/downpage',
pRow: 0,
rpl:0,
fpl:0,
itype: 'icon',
pColumn:16,
},
]"
@clickItem="goPage('/root/person/downpage')"
/>
</view>
<view class="g_mt_10" v-if="userInfo.agencyId">
<g-panel-card-num :list="billDataList" titleNav="/root/person/applyIndex" :border="true" :speed="1" :marginBottom="16" cusType="num" :height="26" :num="5" cusTitle="报名工单(我报的)" @clickItem="goOrder" />
<!-- <g-panel-card-num :list="todayDataList"
@ -83,14 +101,14 @@
@clickItem="goPage('/root/merchantManagement/teamManage')"
/>
</view>
<view class="g_mt_10" v-if="userInfo.agencyId && userInfo.agencyId != 114818">
<view class="g_mt_10" v-if="!userInfo.agencyId">
<g-panel-form-item
:list="[
{
icon: 'folder-add',
label: '申请关注',
result: '',
path: '/root/detail/user',
path: '',
tip: 'set',
pRow: 0,
rpl:0,
@ -98,7 +116,7 @@
pColumn:16,
},
]"
@clickItem="goPage('/root/detail/user')"
@clickItem="handleOpenForm"
/>
</view>
<view class="g_mt_10">
@ -211,6 +229,7 @@ export default {
onReady() {},
data() {
return {
isJm:uni.getStorageSync("apply-userinfo") && uni.getStorageSync("apply-userinfo").agencyId && uni.getStorageSync("apply-userinfo").agencyId == '114827',
themeColor: getApp().globalData.themeColor,
themeBackgroundColor: getApp().globalData.themeBackgroundColor,
applyNum: 0,
@ -606,6 +625,19 @@ export default {
}
this.getPoster(_item.url);
},
handleOpenForm(){
let that = this;
uni.showModal({
cancelText: '取消',
confirmColor: getApp().globalData.themeColor,
confirmText: '申请加入',
content: '需要加入业小满招聘后,才能查看职位佣金',
title: '',
success: (result) => {},
fail: (res) => {},
complete: (res) => {},
})
}
},
};
</script>

@ -0,0 +1,53 @@
<template>
<view class="g_flex_c" style="height: 100vh;width: 100%;background-color: #f2f2f2;">
下游代理
</view>
</template>
<script>
/*
*/
export default {
onShareAppMessage() {
return this.G.shareFun();
},
onLoad(options) {
console.log(options);
if (options.type) {
uni.setNavigationBarTitle({
title: options.type,
});
}
},
data() {
return {
cdnBaseImg: this.G.store().cdnBaseImg,
};
},
props: {
text: {
type: String,
default: () => {
return "暂无数据";
},
},
subText: {
type: String,
default: () => {
return "";
},
},
},
methods: {
goLogin() {
let that = this;
if (that.text == "请登录") {
uni.reLaunch({
url: "/root/login/index?path=" + that.G.getPath().path + "&level=" + that.G.getPath().level,
});
}
},
},
};
</script>
<style></style>
Loading…
Cancel
Save