no message

app
jscyl13849007907 5 months ago
parent 804fd5dd38
commit e95f78be3a

@ -596,12 +596,6 @@
"selectedIconPath": "static/image/apply-active.png", "selectedIconPath": "static/image/apply-active.png",
"text": "工单" "text": "工单"
}, },
{
"iconPath": "static/image/message.png",
"selectedIconPath": "static/image/message_active.png",
"pagePath": "pages/message/index",
"text": "消息"
},
{ {
"pagePath": "pages/person/index", "pagePath": "pages/person/index",
"iconPath": "static/image/person.png", "iconPath": "static/image/person.png",

@ -449,7 +449,7 @@
<div class="g_fs_12 g_c_6" style="margin-top: 8px">{{ isSc ? "已收藏" : "收藏" }}</div> <div class="g_fs_12 g_c_6" style="margin-top: 8px">{{ isSc ? "已收藏" : "收藏" }}</div>
</button> </button>
</div> </div>
<div class="g_flex_none g_flex_column_center"> <div class="g_flex_none g_flex_column_center" v-if="false">
<button class="g_pl_0 g_pr_0 g_bg_f g_mr_12 g_w_36" hover-class="thover" style="line-height: 1; border-radius: 0" <button class="g_pl_0 g_pr_0 g_bg_f g_mr_12 g_w_36" hover-class="thover" style="line-height: 1; border-radius: 0"
@click="goIm" @click="goIm"
> >
@ -1365,10 +1365,17 @@ export default {
return new Promise(function (imgres) { return new Promise(function (imgres) {
// //
that.G.fillTextLineBreak(ctx, that.jobDetail.jobName, baseLeft, line2, 800, 20, "#000", titleFontSize, "500", "left"); that.G.fillTextLineBreak(ctx, that.jobDetail.jobName, baseLeft, line2, 800, 20, "#000", titleFontSize, "500", "left");
//
that.G.fillTextLineBreak(ctx, that.jobDetail.monthPay, 750 - ctx.measureText(that.jobDetail.monthPay).width + 20, line3 + 6, 400, 20, "#ff4400", titleFontSize, "400");
// //
that.G.fillTextLineBreak(ctx, that.G.getSalaryClassifyValue(that.jobDetail.salaryClassify, that.jobDetail.salaryClassifyValue), baseLeft, line3, 400, 40, "#ff4400", titleFontSize + 6, "600", "left"); if(that.G.getSalaryClassifyValue(that.jobDetail.salaryClassify, that.jobDetail.salaryClassifyValue) == "0-0元/月"){
//
that.G.fillTextLineBreak(ctx, that.jobDetail.priceStr, baseLeft, line3, 400, 40, "#ff4400", titleFontSize + 6, "600", "left");
}else{
//
that.G.fillTextLineBreak(ctx, that.jobDetail.monthPay, 750 - ctx.measureText(that.jobDetail.monthPay).width + 20, line3 + 6, 400, 20, "#ff4400", titleFontSize, "400");
that.G.fillTextLineBreak(ctx, that.G.getSalaryClassifyValue(that.jobDetail.salaryClassify, that.jobDetail.salaryClassifyValue), baseLeft, line3, 400, 40, "#ff4400", titleFontSize + 6, "600", "left");
}
if (that.jobDetail.jobRequestLabelNames.length > 0) { if (that.jobDetail.jobRequestLabelNames.length > 0) {
that.jobDetail.jobRequestLabelNames.forEach((item1, index) => { that.jobDetail.jobRequestLabelNames.forEach((item1, index) => {

Loading…
Cancel
Save