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.
58 lines
2.0 KiB
58 lines
2.0 KiB
4 days ago
|
<template>
|
||
|
<div class="main-content12">
|
||
|
<div class="pageheader">
|
||
|
<span class="pagetitle">基本设置</span>
|
||
|
</div>
|
||
|
|
||
|
<div class="flex-common">
|
||
|
<el-form ref="formRef">
|
||
|
<div class="flex-wrap">
|
||
|
<div class="flex-left">
|
||
|
<GuipFormItem column="column" label="首页链接">
|
||
|
<GuipInput slot="formDom" ref="GuipInput" class=" mb24" width="100%"
|
||
|
placeholder="请输入首页链接" desc="您希望用户能找到服务的首页或您自建站点页面">
|
||
|
</GuipInput>
|
||
|
<el-checkbox slot="formDom">同步到本站的其他检测首页项上</el-checkbox>
|
||
|
</GuipFormItem>
|
||
|
</div>
|
||
|
<div class="flex-line "></div>
|
||
|
<div class="flex-right">
|
||
|
<GuipFormItem column="column" label="检测服务链接">
|
||
|
<GuipInput slot="formDom" ref="GuipInput" class=" mb24" width="100%"
|
||
|
placeholder="请输入检测服务链接" desc="方便用户快速找到再次检测入口">
|
||
|
</GuipInput>
|
||
|
<el-checkbox slot="formDom">同步到本站的其他检测首页项上</el-checkbox>
|
||
|
</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 GuipButton from "@/components/GuipButton.vue";
|
||
|
import GuipInput from "@/components/GuipInput.vue";
|
||
|
|
||
|
export default {
|
||
|
name: '',
|
||
|
props:[],
|
||
|
components: {
|
||
|
GuipInput,
|
||
|
GuipButton, GuipFormItem
|
||
|
|
||
|
},
|
||
|
data(){
|
||
|
return {}
|
||
|
},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|