| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- export function getDrawImg(url, height = 0) {
- return {
- obj: [
- {
- "type": "image",
- "url": url, // 确保路径正确
- "css": {
- "top": "0",
- "width": 750 + "rpx",
- "height": height + 500 + "rpx",
- "display": "block",
- "borderRadius": "15rpx 15rpx 0 0"
- }
- }],
- height: height + 500
- }
- }
- export function getCheckInInfo(talk, height = 0) {
- let mr=48
- return {
- obj: [
- {
- "type": "image",
- "url": "/static/painter/bg-1.png",
- "css": {
- "top": height+"rpx",
- width: "750rpx",
- height: "453rpx",
- "borderRadius": "0 0 15rpx 15rpx"
- }
- },
- {
- "type": "text",
- "text": "银弘辰悦酒店",
- "css": {
- "top":height+48+"rpx",
- "left": mr+"rpx",
- fontWeight: "800",
- fontSize: "43rpx",
- color: "#333333",
- lineHeight: "47rpx",
- textAlign: "center",
- fontStyle: "normal",
- textTransform: "none"
- }
- },
- {
- "type": "image",
- "url": "/static/painter/icon-2.png", // 确保路径正确
- "css": {
- "top": height+124+"rpx",
- "left": mr+"rpx",
- "width": 34 + "rpx",
- "height": 34+ "rpx",
- "display": "block",
- }
- },
- {
- "type": "text",
- "text": "2025年6月30日",
- "css": {
- "top":height+119+"rpx",
- "left": 100+"rpx",
- fontWeight: "500",
- fontSize: "31rpx",
- color: "#666666",
- lineHeight: "43rpx",
- textAlign: "center",
- fontStyle: "normal",
- textTransform: "none"
- }
- },
- {
- "type": "image",
- "url": "/static/painter/icon-1.png", // 确保路径正确
- "css": {
- "top": height+122+"rpx",
- "left": 376+"rpx",
- "width": 34 + "rpx",
- "height": 34+ "rpx",
- "display": "block",
- }
- },
- {
- "type": "text",
- "text": "2801",
- "css": {
- "top":height+119+"rpx",
- "left": 426+"rpx",
- fontWeight: "500",
- fontSize: "31rpx",
- color: "#666666",
- lineHeight: "43rpx",
- textAlign: "center",
- fontStyle: "normal",
- textTransform: "none"
- }
- },
- {
- "type": "rect",
- "css": {
- "top":height+119+"rpx",
- "left": 347+"rpx",
- width: "2rpx",
- height: "35rpx",
- color: "#D8D8D8",
- // shadow: "20rpx 20rpx 8rpx rgba(219,225,231,0.2)",
- // borderRadius: '24rpx',
- }
- },
- {
- "type": "text",
- "text": "80",
- "css": {
- "top":height+40+"rpx",
- "left": 595+"rpx",
- fontWeight: "500",
- fontSize: "76rpx",
- color: "#333333",
- lineHeight: "71rpx",
- textAlign: "center",
- fontStyle: "normal",
- textTransform: "none"
- }
- },
- {
- "type": "text",
- "text": "分",
- "css": {
- "top":height+83+"rpx",
- "left": 685+"rpx",
- fontWeight: "500",
- fontSize: "28rpx",
- color: "#666666",
- lineHeight: "71rpx",
- textAlign: "center",
- fontStyle: "normal",
- textTransform: "none"
- }
- },
- {
- "type": "rect",
- "css": {
- "top":height+195+"rpx",
- "left": mr+"rpx",
- width: "655rpx",
- height: "0rpx",
- borderColor: "#CCCCCC",
- borderWidth:"2rpx",
- borderStyle: "dashed",
- }
- },
- {
- "type": "text",
- "text": "\u3000\u3000"+ talk,
- "css": {
- "top":height+231+"rpx",
- "left": mr+"rpx",
- "width": "457rpx",
- "height": "216rpx",
- fontWeight: "500",
- fontSize: "28rpx",
- color: "#666666",
- lineHeight: "38rpx",
- fontStyle: "normal",
- textTransform: "none"
- }
- },
- {
- "type": "image",
- "url": '/static/painter/qr-code.png', // 默认显示“匿名用户”
- "css": {
- "top": height+230+"rpx",
- "left": "530rpx",
- "width": "171rpx",
- "height": "171rpx",
- }
- },
- ],
- height: height + 453
- }
- }
|