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.
86 lines
4.8 KiB
86 lines
4.8 KiB
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{$title}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta name="description" content="{$title}">
|
|
<meta property="og:type" content="webpage">
|
|
<meta property="og:title" content="{$title}">
|
|
<meta property="og:description" content="{$title}">
|
|
<link rel="stylesheet" media="screen" href="{$yf_theme_path}index/Public/Css/published.css">
|
|
<link rel="stylesheet" media="screen" href="{$yf_theme_path}index/Public/Css/base.css">
|
|
<style>
|
|
.entry-container input{max-width:100% !important;}
|
|
.entry-container form > .form-header .form-title{text-align:center;font-size:2.4rem;}
|
|
.entry-container form .field .field-label{font-size:1.8rem;}
|
|
.entry-container-inner form .field .choice-description,.entry-container-inner form .field .form-group{font-size:1.6rem;}
|
|
.entry-container .choices label{width:40%;padding-left:8%;}
|
|
.entry-container form .field .field-label{width:30%;display:inline-block;vertical-align:top;text-align:right;}
|
|
.entry-container-inner form .field .field-content{width:69%;display:inline-block;vertical-align:top;}
|
|
.entry-container-inner form .field .choice-description{margin-top:0px;}
|
|
.entry-container > .entry-container-inner .center{min-height:420px;}
|
|
@media screen and (max-width: 480px) {
|
|
.entry-container-inner form .field .field-content{width:100%;}
|
|
.entry-container .choices label{width:44%;padding-left:4%;margin-left:10px;margin-top:10px;margin-right:0px;}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="entry-container">
|
|
<div class="entry-container-inner">
|
|
<form class="center with-shadow indent-on-large-phone" id="postForm" method="post">
|
|
<div class="form-header">
|
|
<div class="banner"><div class="banner-text"> </div></div>
|
|
<div class="logo-box">
|
|
<h1 class="form-title">{$title}</h1>
|
|
</div>
|
|
</div>
|
|
<div class="form-content container-fluid">
|
|
<div class="row">
|
|
<div class="fields clearfix">
|
|
<div class="field required " aria-required="true" style="padding-top:86px;">
|
|
<div class="form-group col-sm-12">
|
|
<div class="field-label">业务类型</div>
|
|
<div class="field-content">
|
|
<div class="choices" data-random-choices="false">
|
|
<label class="radio inline">
|
|
<div class="radio-button-wrapper"><input class="needsclick field-transformed" type="radio" checked="" value="1" id="task" name="task"><i class="selected-icon"></i></div>
|
|
<div class="choice-description">求购信息登记<span class="quota"></span></div>
|
|
</label>
|
|
<label class="radio inline">
|
|
<div class="radio-button-wrapper"><input class="needsclick field-transformed" type="radio" value="2" id="task" name="task"><i class="selected-icon"></i></div>
|
|
<div class="choice-description">转让信息登记<span class="quota"></span>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field col-sm-12">
|
|
|
|
<div class="field submit-field col-md-12 text-center clearfix ">
|
|
<input type="button" name="jump" id="jump" value="下一步" class="submit gd-btn gd-btn-primary-solid with-shadow">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
<script src="{$yf_theme_path}public/js/jquery.js"></script>
|
|
<script>
|
|
$(function(){
|
|
$("#jump").click(function(){
|
|
var task=$("[name='task']:checked").val();
|
|
var url='{:url("index/apply6")}';
|
|
if(task==2){
|
|
url='{:url("index/apply7")}';
|
|
}
|
|
window.location.href=url;
|
|
});
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|