第二次提交
This commit is contained in:
101
template/pc/rainbow/illustrations/illustrations.html
Normal file
101
template/pc/rainbow/illustrations/illustrations.html
Normal file
@@ -0,0 +1,101 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="stylesheet" type="text/css" href="/public/static/csse/index.css" />
|
||||
<script src="__STATIC__/js/jquery-1.11.3.min.js" type="text/javascript" charset="utf-8"></script>
|
||||
<title></title>
|
||||
|
||||
<script>
|
||||
function myFunction(){
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "{:U('Illustrations/consult')}",
|
||||
data: $('#consultForm').serialize(),
|
||||
dataType: "json",
|
||||
success: function (data) {
|
||||
if (data.status == 1) {
|
||||
alert("申请成功");
|
||||
} else {
|
||||
alert("申请失败")
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<include file="public/header"/>
|
||||
|
||||
<div class="shop-head2">
|
||||
<div class="fi" onclick="window.open('http://127.0.0.1:8848/tpshop/index.html')">
|
||||
水 彩
|
||||
</div>
|
||||
<div class="se" onclick="window.open('http://127.0.0.1:8848/tpshop/index.html')">
|
||||
厚 图
|
||||
</div>
|
||||
<div class="thrd" onclick="window.open('http://127.0.0.1:8848/tpshop/index.html')">
|
||||
多 格
|
||||
</div>
|
||||
<div class="fou" onclick="window.open('http://127.0.0.1:8848/tpshop/index.html')">
|
||||
彩 铅
|
||||
</div>
|
||||
<div class="fif" onclick="window.open('http://127.0.0.1:8848/tpshop/index.html')">
|
||||
绘 本
|
||||
</div>
|
||||
<div class="six" onclick="window.open('http://127.0.0.1:8848/tpshop/index.html')">
|
||||
教 材
|
||||
</div>
|
||||
</div>
|
||||
<form method="post" id="consultForm" style="margin-left: 30%;">
|
||||
<div class="publish-cont">
|
||||
|
||||
<div class="nickname" style="margin-top: 2%;">
|
||||
<img src="/public/static/images/tigehu.jpg" style="margin-left: -10%;"></img>
|
||||
昵称:
|
||||
<if condition="empty($username)">
|
||||
<input type="text" name="username" placeholder="请输入昵称" value=""/>
|
||||
<else/>
|
||||
{$username}
|
||||
<input type="hidden" name="username" value="{$username}" readonly/>
|
||||
</if>
|
||||
</div>
|
||||
<div style="margin-left: 10px;margin-top: 3%;">
|
||||
<label><b>请输入您的建议</b></label>
|
||||
</div>
|
||||
<div style="margin-top: 2%;">
|
||||
|
||||
<input type="text" name="model" id="model" placeholder=" 请输入您的建议" value="" style=" border-radius: 30px/50px;width: 60%;height: 30px;border: 1px solid #ccc;outline: none; "/>
|
||||
</div>
|
||||
<div style="margin-left: 10px;margin-top: 3%;">
|
||||
<label><b>请输入您的手机号</b></label>
|
||||
</div>
|
||||
<div style="margin-top: 2%;">
|
||||
|
||||
<input type="text" name="dess" id="dess" placeholder=" 请输入您的手机号" value="" style=" border-radius: 30px/50px;width: 60%;height: 30px;border: 1px solid #ccc;outline: none; "/>
|
||||
</div>
|
||||
<div style="margin-top: 3%;">
|
||||
<label><b>您需要小虎需要做些什么</b></label>
|
||||
</div>
|
||||
<div style="margin-top: 2%;">
|
||||
|
||||
<textarea class="publish-des" placeholder="您需要小虎需要做些什么" name="content"
|
||||
id="content" style="width: 60%;height: 60px;"></textarea>
|
||||
</div>
|
||||
<div style="margin-top: 2%;">
|
||||
<button onclick="myFunction()" style="margin: 0;padding: 0;border: 0px solid transparent;outline: none; ">
|
||||
<img src="/public/static/images/buttonhu.jpg" /></button>
|
||||
|
||||
</div>
|
||||
<div style="margin-top: 2%;margin-left: 25%;">
|
||||
<b>小虎子客服正在驾到</b>
|
||||
</div>
|
||||
<div style="margin-top: 2%;">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<include file="public/footer"/>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user