Commit 2d86a76d authored by hujun's avatar hujun

Merge remote-tracking branch 'origin/test' into test

parents daa57f37 56ad9f74
...@@ -197,11 +197,5 @@ ...@@ -197,11 +197,5 @@
<script src="/app/js/common.js" charset="utf-8"></script> <script src="/app/js/common.js" charset="utf-8"></script>
<script src="/app/js/detaila_tl.js"></script> <script src="/app/js/detaila_tl.js"></script>
<script src="/app/js/Tab_min.js" charset="utf-8"></script> <script src="/app/js/Tab_min.js" charset="utf-8"></script>
<script type="text/javascript">
</script>
</body> </body>
</html> </html>
...@@ -26,9 +26,7 @@ ...@@ -26,9 +26,7 @@
<a class="send1" onclick="sends.send();">获取验证码</a> <a class="send1" onclick="sends.send();">获取验证码</a>
</li> </li>
<li> <li>
<span class="register-span"> <span class="register-span">注册密码</span>
密码
</span>
<input type="password" id="password" class="infos" placeholder="6-20位数字或字母"> <input type="password" id="password" class="infos" placeholder="6-20位数字或字母">
</li> </li>
<div class="register-div"> <div class="register-div">
......
...@@ -283,9 +283,10 @@ ...@@ -283,9 +283,10 @@
width: 100%; width: 100%;
} }
.slide img{ .slide img{
width: 3.3rem; width: 7.5rem;
height: 4rem;
float: left; float: left;
margin-left: 0.2rem; object-fit: contain;
} }
......
...@@ -226,7 +226,12 @@ require(['vue', 'vconsole', 'css!style/customerinfo_sub_page.css', 'css!style/cu ...@@ -226,7 +226,12 @@ require(['vue', 'vconsole', 'css!style/customerinfo_sub_page.css', 'css!style/cu
layerTipsX('目前最多只能上传一张'); layerTipsX('目前最多只能上传一张');
return false; return false;
}else{ }else{
_fd.append('image', e.target.files[0]); if(e.target.files[0].size > 1000000){
layerTipsX('图片过大,请重新选择');
return false;
}else{
_fd.append('image', e.target.files[0]);
};
}; };
$.ajax({ $.ajax({
url: ServerHostTempC + "/chat/uploadImg", url: ServerHostTempC + "/chat/uploadImg",
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment