feat: 优化样式

This commit is contained in:
sudoooooo 2024-05-29 22:04:44 +08:00
parent 4115ff9847
commit ae6907a3f4
2 changed files with 2 additions and 4 deletions

View File

@ -22,10 +22,8 @@
h5,
h6,
p {
line-height: 0.6rem;
font-size: 0.28rem;
color: $title-color-deep;
margin-bottom: 0.35rem;
}
p {
margin-bottom: 0;

View File

@ -69,12 +69,12 @@ const validate = (cbk: (v: boolean) => void) => {
const normalizationRequestBody = () => {
const enterTime = store.state.enterTime
const encryptInfo = store.state.encryptInfo
const formModel = store.getters.formModel
const formValues = store.state.formValues
const surveyPath = store.state.surveyPath
const result: any = {
surveyPath,
data: JSON.stringify(formModel),
data: JSON.stringify(formValues),
difTime: Date.now() - enterTime,
clientTime: Date.now()
}