info.html
7.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link rel="stylesheet" href="https://at.alicdn.com/t/font_750594_itt4qc4xfcg.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_834805_0ml90wdq5hzm.css">
<link rel="stylesheet" href="__INDEX__/css/base.css">
<link rel="stylesheet" href="__INDEX__/css/editmateial.css">
<link rel="stylesheet" href="__INDEX__/css/swiper.min.css">
<script type="text/javascript" src="__INDEX__/js/base.js"></script>
<title>编辑资料</title>
<style>
#imghead{
width:100%;height:100%;
border-radius: 50%;
margin-top: 0;
}
#preview{
width:1.2rem;
margin: 0 auto;
height:1.2rem;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="headwrap">
<div class="headpop">
<div id="preview">
<!--<img id="imghead" border="0" src="__INDEX__/img/head@2x.png" style="width:100%;height:100%" onclick="$('#previewImg').click();">-->
<p class="iconfont icon-xiangji" id="imghead" onclick="$('#previewImg').click();"></p>
</div>
<!--<img src="__INDEX__/img/delet.png" alt="" style="position:absolute;bottom:92px;left:46px" class="deleteimg"/>-->
<form id="form"><input type="file" name="file" onchange="previewImage(this)" style="display: none;" id="previewImg"></form>
</div>
</div>
<div class="head" >
<p class="head_img" >
<img src="{$data.avatar}" alt="" style="width: 1.2rem;height: 1.2rem;border-radius: 50%">
</p>
</div>
<div class="item">
<div class="material_name editname">
<p class="item_name">昵称</p>
<div class="list_item_name">
<p class="list_name">{$data.user_nickname}</p>
<p class="iconfont icon-jinru"></p>
</div>
</div>
<div class="material_name edit_sex">
<p class="item_name">性别</p>
<div class="list_item_name">
<p class="list_name"><if condition="$data['sex'] eq '1'">男<else/>女</if></p>
<p class="iconfont icon-jinru"></p>
</div>
</div>
</div>
<div class="material_name editphone" style="margin-top: 0.16rem">
<p class="item_name">绑定手机号</p>
<div class="list_item_name">
<p class="list_name">{$data.mobile}</p>
<p class="iconfont icon-jinru"></p>
</div>
</div>
</body>
<script src="__INDEX__/js/jquery.min.js"></script>
<script>
//编辑姓名
$(".editname").click(function(){
window.location.href="{:url('user/Center/editName')}"
})
//绑定手机号
$(".editphone").click(function(){
window.location.href="{:url('user/Center/editPhone')}"
})
//上传头像
function clacImgZoomParam(maxWidth, maxHeight, width, height) {
var param = {
top: 0,
left: 0,
width: width,
height: height
};
if(width > maxWidth || height > maxHeight) {
rateWidth = width / maxWidth;
rateHeight = height / maxHeight;
if(rateWidth > rateHeight) {
param.width = maxWidth;
param.height = Math.round(height / rateWidth);
} else {
param.width = Math.round(width / rateHeight);
param.height = maxHeight;
}
}
param.left = Math.round((maxWidth - param.width) / 2);
param.top = Math.round((maxHeight - param.height) / 2);
return param;
}
function previewImage(file) {
$(".head_img").css("display","none")
var MAXWIDTH =60;
var MAXHEIGHT =77;
var div = document.getElementById('preview');
if(file.files && file.files[0]) {
div.innerHTML = '<img id=imghead onclick=$("#previewImg").click()>';
var img = document.getElementById('imghead');
img.onload = function() {
var rect = clacImgZoomParam(MAXWIDTH, MAXHEIGHT, img.offsetWidth, img.offsetHeight);
img.width = rect.width;
img.height = rect.height;
// img.style.marginLeft = rect.left+'px';
// img.style.marginTop = rect.top + 'px';
}
var reader = new FileReader();
reader.onload = function(evt) {
img.src = evt.target.result;
}
reader.readAsDataURL(file.files[0]);
var formData=new FormData($("#form")[0]);
$.ajax({
type:"post",
url:"{:url('user/Center/upload')}",
data:formData,
dataType:'json',
async:false,
cache:false,
contentType:false,
processData:false,
success:function(data){
console.log(data);
},
error:function(res){
}
});
} else //兼容IE
{
var sFilter = 'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale,src="';
file.select();
var src = document.selection.createRange().text;
div.innerHTML = '<img id=imghead>';
var img = document.getElementById('imghead');
img.filters.item('DXImageTransform.Microsoft.AlphaImageLoader').src = src;
// var rect = clacImgZoomParam(MAXWIDTH, MAXHEIGHT, img.offsetWidth, img.offsetHeight);
// status = ('rect:' + rect.top + ',' + rect.left + ',' + rect.width + ',' + rect.height);
div.innerHTML = "<div id=divhead style='100%;height:100%;border-radius:50%" + sFilter + src + "\"'></div>";
}
// var formData = new FormData();
// var fileM = document.querySelector("#previewImg");
// var fileObj = fileM.files[0];
// formData.append("files", fileObj);
// $.ajax({
// url: 'http://hula.wx.bronet.cn/index.php/MyComment/upload',
// type: 'POST',
// data: formData,
// async: false,
// cache: false,
// contentType: false,
// processData: false,
// success: function(res) {
// console.log(res);
// pic = res.data;
// console.log(pic);
// imgurl.push(pic);
// console.log(imgurl)
// var text = '';
// text += '<div class="evaluate_pic_item" style="float:left">' +
// '<img src="' + pic + '" class="delimg"/>' +
// '<div class="icon">' +
// '<img src="__INDEX__/img/10拷贝2@2x_59.png" />' +
// '</div>' +
// '</div>'
// $(".addimg").append(text);
// if(imgurl.length == 3) {
// $(".imgone").css("display", "none");
// }
// $("#imghead").attr("src","__INDEX__/img/3@2x.png");
// },
// error: function() {
//
// }
// });
}
</script>
</html>