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.
62 lines
2.2 KiB
62 lines
2.2 KiB
1 week ago
|
<template>
|
||
|
<div class="main-content12">
|
||
|
<div class="pageheader">
|
||
|
<span class="pagetitle">基本设置</span>
|
||
|
</div>
|
||
|
|
||
|
<div class="flex-common">
|
||
|
<PromptText text="温馨提示:报告页标题不允许使用“知网”、“pmlc”、“amlc”和“smlc”等关键词。" :type="2" class="mb16"/>
|
||
|
|
||
|
<el-form ref="formRef">
|
||
|
<div class="flex-wrap">
|
||
|
<div class="flex-left">
|
||
|
<GuipFormItem column="column" class="mb24" label="报告页标题(T:title)">
|
||
|
<GuipInput slot="formDom" ref="GuipInput" class=" mb24" width="100%"
|
||
|
placeholder="建议80字内">
|
||
|
</GuipInput>
|
||
|
</GuipFormItem>
|
||
|
<GuipFormItem column="column" label="报告页关键词(K:keyword)">
|
||
|
<GuipInput slot="formDom" ref="GuipInput" width="100%" height="68px" type="textarea">
|
||
|
</GuipInput>
|
||
|
</GuipFormItem>
|
||
|
</div>
|
||
|
<div class="flex-line "></div>
|
||
|
<div class="flex-right">
|
||
|
<GuipFormItem column="column" label="报告页描述(D:description)">
|
||
|
<GuipInput slot="formDom" ref="GuipInput" width="100%" height="160px" type="textarea">
|
||
|
</GuipInput>
|
||
|
</GuipFormItem>
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-form>
|
||
|
</div>
|
||
|
|
||
|
<div class="save-button">
|
||
|
<GuipButton type="primary" :btnstyle="saveBtnStyleObj">保存</GuipButton>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
|
||
|
import GuipFormItem from "@/components/GuipFormItem.vue";
|
||
|
import PromptText from "@/components/PromptText.vue";
|
||
|
import GuipButton from "@/components/GuipButton.vue";
|
||
|
import GuipInput from "@/components/GuipInput.vue";
|
||
|
|
||
|
export default {
|
||
|
name: '',
|
||
|
props:[],
|
||
|
components: {
|
||
|
GuipInput,
|
||
|
GuipButton, PromptText, GuipFormItem
|
||
|
|
||
|
},
|
||
|
data(){
|
||
|
return {}
|
||
|
},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|