31 lines
2.3 KiB
JavaScript
31 lines
2.3 KiB
JavaScript
|
|
|||
|
// 正文
|
|||
|
export const textStyle = (data) => {
|
|||
|
return `<p style="text-indent: 2em;"><span style="font-size: 16px; font-family: 仿宋;">${data}</span></p>`
|
|||
|
}
|
|||
|
//一级标题
|
|||
|
export const Firstlevelheading = (data) => {
|
|||
|
return `<p style="text-indent: 2em;"><span style="font-size: 16px; font-family: 黑体;">${data}</span></p>`
|
|||
|
}
|
|||
|
//二级标题
|
|||
|
export const Subheading = (data) => {
|
|||
|
return `<p style="text-indent: 2em;"><span style="font-size: 16px; font-family: 仿宋;">${data}</span></p>`
|
|||
|
}
|
|||
|
export const BiheadlinegTitle = (data) => {
|
|||
|
return `<p style="text-indent: 2em;"><span style="font-size: 16px; font-family: 楷体;"><strong>${data}</strong></span></p>`
|
|||
|
}
|
|||
|
// 大标题
|
|||
|
export const BigTitle = (data) => {
|
|||
|
return `<h4 style="text-align: center;"><span style="color: rgb(225, 60, 57); font-size: 32px; font-family: 标楷体;">${data}</span></h4>`
|
|||
|
}
|
|||
|
export const headTitle = (data) => {
|
|||
|
return `<p style="text-align: left;"><span style="color: rgb(225, 60, 57); font-size: 16px; font-family: 标楷体;"> ${data.orgName}编 第${data.serialNumber}号 ${data.time} </span></p ><hr/>`
|
|||
|
}
|
|||
|
export const report = (data) => {
|
|||
|
return `<p><br></p ><p style="text-indent: 2em;">报抄:西藏公安厅</p ><hr/><p> `
|
|||
|
}
|
|||
|
export const signature = () => {
|
|||
|
return `<p> 承办人: 核稿人 : 签发人:</p >`
|
|||
|
}
|
|||
|
|