You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
209 lines
6.0 KiB
209 lines
6.0 KiB
<template>
|
|
<div class="project-form"
|
|
:style="{backgroundColor:projectTheme.backgroundColor,
|
|
background:projectTheme.backgroundImg?'url('+projectTheme.backgroundImg+') no-repeat center':''}">
|
|
<div class="">
|
|
<div :style="{textAlign:projectTheme.logoPosition}">
|
|
<img
|
|
:src="projectTheme.logoImg" class="logo-img">
|
|
</div>
|
|
<el-image
|
|
v-if="projectTheme.headImgUrl"
|
|
:src="projectTheme.headImgUrl"
|
|
style="width: 100%"
|
|
fit="scale-down"></el-image>
|
|
<h4 class="form-name-text" v-if="projectTheme.showTitle" style="text-align: center">
|
|
{{ formConf.title }}
|
|
</h4>
|
|
<div
|
|
v-show="projectTheme.showDescribe"
|
|
class="form-name-text" v-html="formConf.description">
|
|
</div>
|
|
<el-divider>
|
|
</el-divider>
|
|
<parser v-if="startParser" :form-conf="formConf" @submit="submitForm"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Parser from '@/components/parser/Parser'
|
|
import {dbDataConvertForItemJson} from '@/utils/convert'
|
|
|
|
window.onload = function() {
|
|
document.addEventListener('touchstart', function(event) {
|
|
if (event.touches.length > 1) {
|
|
event.preventDefault()
|
|
}
|
|
})
|
|
document.addEventListener('gesturestart', function(event) {
|
|
event.preventDefault()
|
|
})
|
|
}
|
|
export default {
|
|
components: {
|
|
Parser
|
|
},
|
|
props: {
|
|
projectConfig: {
|
|
projectKey: '',
|
|
showBtns: true,
|
|
// 项目种类 1 普通 2模板
|
|
projectKind: 1
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
startParser: false,
|
|
projectTheme: {
|
|
headImgUrl: '',
|
|
logoImg: '',
|
|
showTitle: true,
|
|
showDescribe: true
|
|
},
|
|
formConf: {
|
|
fields: [],
|
|
projectKey: '',
|
|
projectKind: 1,
|
|
__methods__: {},
|
|
formRef: 'elForm',
|
|
formModel: 'formData',
|
|
labelFormModel: 'labelFormData',
|
|
size: 'small',
|
|
labelPosition: 'top',
|
|
labelWidth: 100,
|
|
formRules: 'rules',
|
|
gutter: 15,
|
|
disabled: false,
|
|
span: 24,
|
|
formBtns: true,
|
|
resetBtn: false,
|
|
submitBtnText: '提交',
|
|
submitBtnColor: '#205bb5',
|
|
showNumber: false,
|
|
unFocusedComponentBorder: true
|
|
}
|
|
}
|
|
},
|
|
computed: {},
|
|
watch: {},
|
|
beforeCreate() {
|
|
document.querySelector('body').className = 'project-body'
|
|
},
|
|
created() {
|
|
if (this.projectConfig && this.projectConfig.projectKey) {
|
|
this.formConf.projectKey = this.projectConfig.projectKey
|
|
if (this.projectConfig.projectKind) {
|
|
this.formConf.projectKind = this.projectConfig.projectKind
|
|
}
|
|
} else if (this.$route.query.key) {
|
|
//不存去路由中尝试获取 iframe
|
|
this.formConf.projectKey = this.$route.query.key
|
|
if (this.$route.query.kind) {
|
|
this.formConf.projectKind = this.$route.query.kind
|
|
}
|
|
this.formConf.formBtns = true
|
|
}
|
|
this.formConf.size = window.innerWidth < 480 ? 'medium' : 'small'
|
|
},
|
|
mounted() {
|
|
let url = `/user/project/details/${this.formConf.projectKey}`
|
|
if (this.formConf.projectKind == 2) {
|
|
url = `/project/template/details/${this.formConf.projectKey}`
|
|
}
|
|
this.$api.get(url).then(res => {
|
|
if (res.data) {
|
|
let serialNumber = 1
|
|
let fields = res.data.projectItems.map(item => {
|
|
let projectItem = dbDataConvertForItemJson(item)
|
|
projectItem.serialNumber = serialNumber
|
|
serialNumber++
|
|
return projectItem
|
|
})
|
|
this.formConf.fields = fields
|
|
this.formConf.title = res.data.project.name
|
|
this.formConf.description = res.data.project.describe
|
|
this.formConf.description = res.data.project.describe
|
|
if (res.data.userProjectTheme) {
|
|
this.projectTheme = res.data.userProjectTheme
|
|
let {submitBtnText, showNumber, btnsColor} = res.data.userProjectTheme
|
|
if (submitBtnText) {
|
|
this.formConf.submitBtnText = submitBtnText
|
|
}
|
|
if (showNumber) {
|
|
this.formConf.showNumber = showNumber
|
|
}
|
|
if (btnsColor) {
|
|
this.formConf.submitBtnColor = btnsColor
|
|
}
|
|
}
|
|
this.startParser = true
|
|
|
|
}
|
|
})
|
|
},
|
|
methods: {
|
|
submitForm(data) {
|
|
this.$emit('submit', data)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
.project-form {
|
|
margin: 15px auto;
|
|
width: 800px;
|
|
padding: 15px;
|
|
background-repeat: repeat;
|
|
background-color: rgba(229, 239, 247, 0.87);
|
|
}
|
|
|
|
.project-body::-webkit-scrollbar {
|
|
width: 0 !important;
|
|
background: transparent;
|
|
}
|
|
|
|
.project-body {
|
|
-ms-overflow-style: none;
|
|
overflow: -moz-scrollbars-none;
|
|
}
|
|
|
|
|
|
.logo-img {
|
|
max-height: 120px;
|
|
}
|
|
|
|
.submit-btn-form-item {
|
|
text-align: left;
|
|
}
|
|
|
|
.submit-btn-form-item button {
|
|
width: 20%;
|
|
}
|
|
|
|
@media screen and (max-width: 750px) {
|
|
.project-form {
|
|
margin: 0px;
|
|
width: 100% !important;
|
|
background-color: white;
|
|
}
|
|
|
|
.logo-img {
|
|
max-height: 2.94rem;
|
|
}
|
|
.submit-btn-form-item {
|
|
text-align: center;
|
|
}
|
|
.submit-btn-form-item button {
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.el-message {
|
|
min-width: 300px !important;
|
|
}
|
|
}
|
|
</style>
|
|
|