hookehuyr

style(PosterCheckin): 调整海报文字样式和布局

- 增加二维码描述文字的字号和宽度
- 在打卡点名称前添加前缀并调整宽度
...@@ -459,11 +459,11 @@ const posterConfig = computed(() => { ...@@ -459,11 +459,11 @@ const posterConfig = computed(() => {
459 x: 260, 459 x: 260,
460 y: 1125, 460 y: 1125,
461 text: currentMockData.value.qrcodeDesc, 461 text: currentMockData.value.qrcodeDesc,
462 - fontSize: 28, 462 + fontSize: 30,
463 color: '#333333', 463 color: '#333333',
464 lineHeight: 40, 464 lineHeight: 40,
465 lineNum: 2, 465 lineNum: 2,
466 - width: 400, 466 + width: 440,
467 textAlign: 'left', 467 textAlign: 'left',
468 zIndex: 1 468 zIndex: 1
469 }, 469 },
...@@ -471,12 +471,12 @@ const posterConfig = computed(() => { ...@@ -471,12 +471,12 @@ const posterConfig = computed(() => {
471 { 471 {
472 x: 260, 472 x: 260,
473 y: 1180, 473 y: 1180,
474 - text: currentMockData.value.level.name, 474 + text: '打卡点: ' + currentMockData.value.level.name,
475 fontSize: 32, 475 fontSize: 32,
476 color: '#333333', 476 color: '#333333',
477 lineHeight: 40, 477 lineHeight: 40,
478 lineNum: 2, 478 lineNum: 2,
479 - width: 400, 479 + width: 440,
480 textAlign: 'left', 480 textAlign: 'left',
481 zIndex: 1 481 zIndex: 1
482 }, 482 },
......