export default { data() { return { title: 'image' } } } const GenPagesComponentImageImageStyles = [new Map>>([["common-page-head", new Map([["", new Map([["paddingTop", "35rpx"], ["paddingRight", "35rpx"], ["paddingBottom", "35rpx"], ["paddingLeft", "35rpx"], ["flexDirection", "row"], ["justifyContent", "center"]])]])], ["common-page-head-title-box", new Map([["", new Map([["paddingTop", 0], ["paddingRight", "40rpx"], ["paddingBottom", 0], ["paddingLeft", "40rpx"], ["height", "88rpx"], ["borderBottomWidth", "2rpx"], ["borderBottomStyle", "solid"], ["borderBottomColor", "#D8D8D8"]])]])], ["common-page-head-title", new Map([["", new Map([["lineHeight", "88rpx"], ["fontSize", "30rpx"], ["color", "#BEBEBE"]])]])], ["image", new Map([["", new Map([["marginTop", "40rpx"], ["marginRight", "auto"], ["marginBottom", "40rpx"], ["marginLeft", "auto"], ["width", "200rpx"]])]])]])] @Suppress("UNUSED_PARAMETER") function GenPagesComponentImageImageRender(_ctx: GenPagesComponentImageImage): VNode | null { const _component_page_head = resolveComponent("page-head") return createElementVNode("view", null, [ createVNode(_component_page_head, new Map([["title", _ctx.title]]), null, 8 /* PROPS */, ["title"]), createElementVNode("view", new Map([["class", "uni-padding-wrap uni-common-mt"]]), [ createElementVNode("view", new Map([["class", "uni-title"]]), [ createElementVNode("text", new Map([["class", "uni-title-text"]]), " 示例1 "), createElementVNode("text", new Map([["class", "uni-subtitle-text"]]), " 本地图片 ") ]), createElementVNode("view", new Map([ ["class", "uni-center"], ["style", "background:#FFFFFF; font-size:0;"] ]), [ createElementVNode("image", new Map([ ["class", "image"], ["mode", "widthFix"], ["src", "/static/uni.png"] ])) ]), createElementVNode("view", new Map([["class", "uni-title"]]), [ createElementVNode("text", new Map([["class", "uni-title-text"]]), " 示例2 "), createElementVNode("text", new Map([["class", "uni-subtitle-text"]]), " 网络图片 ") ]), createElementVNode("view", new Map([ ["class", "uni-center"], ["style", "background:#FFFFFF; font-size:0;"] ]), [ createElementVNode("image", new Map([ ["class", "image"], ["mode", "widthFix"], ["src", "https://web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png"] ])) ]) ]) ]) }