|
|
|
|
@ -7,20 +7,24 @@
|
|
|
|
|
<g-loading />
|
|
|
|
|
</div>
|
|
|
|
|
<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_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>
|
|
|
|
|
</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_start" style="flex: none">
|
|
|
|
|
<div class="g_fw_600 g_mr_4 g_h_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>
|
|
|
|
|
<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_hs_67 g_flex_column_center" @click.stop="() => (showPrice = !showPrice)" style="width: 67px"></icon>
|
|
|
|
|
</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-else>***</span>
|
|
|
|
|
<div class="iconfont icon-gengduo11 g_fs_14 g_c_6 g_ml_4"></div>
|
|
|
|
|
@ -1572,4 +1576,7 @@ export default {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.g_hs_67{
|
|
|
|
|
height: 60px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|