no message

cyl/master-im
jscyl13849007907 5 months ago
parent c304557402
commit 70f304ad8f

@ -13,7 +13,7 @@
<!-- <view class="g_h_all" style="" v-if="!isLogin"> <!-- <view class="g_h_all" style="" v-if="!isLogin">
<unloginInfo></unloginInfo> <unloginInfo></unloginInfo>
</view> --> </view> -->
<g-empty :text="emptyText" :subText="emptySubText" style="margin-top: 30px" /> <g-empty :text="emptyText" style="margin-top: 30px" />
<view class="g_mt_32" v-if="isShowLoginBtn"> <view class="g_mt_32" v-if="isShowLoginBtn">
<g-button :btnText="'登录查看'" type="primary" @clickBtn="goLogin" /> <g-button :btnText="'登录查看'" type="primary" @clickBtn="goLogin" />
</view> </view>

@ -275,7 +275,7 @@ export default {
computed: {}, computed: {},
onShow() { onShow() {
let that = this; let that = this;
that.tabInfo.active = 0;
that.isLogin = uni.getStorageSync("apply-token"); that.isLogin = uni.getStorageSync("apply-token");
if (!that.isLogin) { if (!that.isLogin) {
@ -598,11 +598,14 @@ export default {
console.log("e", e); console.log("e", e);
this.G.isLogin(); this.G.isLogin();
if (this.G.isLogin()) { if (this.G.isLogin()) {
console.log("一级tab切换");
this.tabInfo.active = e; this.tabInfo.active = e;
this.speed = -1; this.speed = -1;
this.loading = true; this.loading = true;
this.query.page = 1; this.query.page = 1;
this.getList(); this.getList();
}else{
console.log("请先登录")
} }
}, },
checkAllChange(e) { checkAllChange(e) {

@ -7,20 +7,24 @@
<g-loading /> <g-loading />
</div> </div>
<div v-if="speed == 1"> <div v-if="speed == 1">
<view class="r_box g_flex_row_between flex_center g_pl_16 g_pr_16 g_h_45 g_fs_16" @click="goUserMain"> <view class="r_box g_flex_row_between flex_center g_pl_16 g_pr_16 g_fs_16" @click="goUserMain"
style="height: 60px;"
>
<view class="g_fw_600 g_mr_4 g_flex_column_center">项目方</view> <view class="g_fw_600 g_mr_4 g_flex_column_center">项目方</view>
<view class="g_flex_row_end flex_center g_flex_1"> <view class="g_flex_row_end flex_center g_flex_1">
<span class="g_c_6" selectable="false" space="false" decode="false">{{ jobDetail.agencyName }}</span> <span class="g_c_6" selectable="false" space="false" decode="false">{{ jobDetail.fullName }}</span>
<span class="iconfont icon-gengduo11 g_fs_14 g_c_6 g_ml_4"></span> <span class="iconfont icon-gengduo11 g_fs_14 g_c_6 g_ml_4"></span>
</view> </view>
</view> </view>
<div class="r_box g_mb_10 g_mt_10 g_pl_16 g_pr_16 servicePrice" @click="showFee"> <div class="r_box g_mb_10 g_mt_10 g_pl_16 g_pr_16 servicePrice" @click="showFee"
style="height: 60px;"
>
<div class="g_flex_row_between flex_center g_fs_16"> <div class="g_flex_row_between flex_center g_fs_16">
<div class="g_flex_row_start" style="flex: none"> <div class="g_flex_row_start" style="flex: none">
<div class="g_fw_600 g_mr_4 g_h_67 g_flex_column_center">代理佣金</div> <div class="g_fw_600 g_mr_4 g_hs_67 g_flex_column_center">代理佣金</div>
<icon :class="showPrice ? 'icon-zhengyan1' : 'icon-biyan1'" class="iconfont g_c_f40 g_fs_22 g_h_67 g_flex_column_center" @click.stop="() => (showPrice = !showPrice)" style="width: 67px"></icon> <icon :class="showPrice ? 'icon-zhengyan1' : 'icon-biyan1'" class="iconfont g_c_f40 g_fs_22 g_hs_67 g_flex_column_center" @click.stop="() => (showPrice = !showPrice)" style="width: 67px"></icon>
</div> </div>
<div class="g_flex_row_end flex_center g_h_67" style="flex: 1"> <div class="g_flex_row_end flex_center g_hs_67" style="flex: 1">
<span class v-if="showPrice">{{ jobDetail.serverPrice || "" }}</span> <span class v-if="showPrice">{{ jobDetail.serverPrice || "" }}</span>
<span class v-else>***</span> <span class v-else>***</span>
<div class="iconfont icon-gengduo11 g_fs_14 g_c_6 g_ml_4"></div> <div class="iconfont icon-gengduo11 g_fs_14 g_c_6 g_ml_4"></div>
@ -1572,4 +1576,7 @@ export default {
color: #333; color: #333;
} }
} }
.g_hs_67{
height: 60px;
}
</style> </style>

Loading…
Cancel
Save