diff --git a/public/assets/wechat/review_class_member.html b/public/assets/wechat/review_class_member.html
index e066c48f0..b1f0dacc5 100644
--- a/public/assets/wechat/review_class_member.html
+++ b/public/assets/wechat/review_class_member.html
@@ -2,7 +2,7 @@
-
{{current_course.name}}
+
{{current_course.syllabus_title}}·{{current_course.name}}
{{current_review_member.realname == "" ? current_review_member.name : current_review_member.realname}}
角色
-
{{current_course.name}}
+
{{current_course.syllabus_title}}·{{current_course.name}}
{{tip_2}}
diff --git a/public/javascripts/wechat/directives/img_preview.js b/public/javascripts/wechat/directives/img_preview.js
new file mode 100644
index 000000000..08f33d381
--- /dev/null
+++ b/public/javascripts/wechat/directives/img_preview.js
@@ -0,0 +1,22 @@
+/**
+ * Created by ttang on 2016/9/20.
+ */
+app.directive('imgPreview',["$timeout",'wx',function(timer,wx){
+ return{
+ restrict: 'A',
+ scope: {},
+ link: function(scope, element){
+ timer(function(){
+ var srcList = [];
+ $.each($(".post-all-content img"),function(i,item){
+ if(item.src){
+ srcList.push(item.src);
+ $(item).click(function(e){
+ wx.previewImage(this.src,srcList);
+ });
+ }
+ });
+ })
+ }
+ }
+}]);
\ No newline at end of file
diff --git a/public/stylesheets/weui/weixin.css b/public/stylesheets/weui/weixin.css
index cf44a3814..aa4cff972 100644
--- a/public/stylesheets/weui/weixin.css
+++ b/public/stylesheets/weui/weixin.css
@@ -43,6 +43,7 @@ blockquote {border:1px solid #d4d4d4; padding: 0.6em; margin: 5px 0.4em 5px 1.4e
.mr25 {margin-right:25px;}
.ml55 {margin-left:55px;}
.mr55 {margin-right:55px;}
+.ml65 {margin-left:65px;}
.c-red {color:#e81a1a;}
.c-blue {color:#269ac9;}
.c-grey {color:#9a9a9a !important;}
@@ -147,7 +148,7 @@ a.underline {text-decoration:underline;}
.post-dynamic-author {width:50%; height:30px; line-height:30px; font-size:14px; color:#5b5b5b; vertical-align:middle;}
.post-dynamic-time {height:30px; line-height:30px; vertical-align:middle;}
.post-dynamic-title {font-size:15px;}
-.post-dynamic-from {width:50%; font-size:13px;}
+.post-dynamic-from {width:55%; font-size:13px;}
.post-box-shadow {box-shadow: 0px 2px 8px rgba(146, 153, 169, 0.5);}
.post-reply-author {width:50%; height:20px; line-height:20px; font-size:12px; color:#5d5d5d; vertical-align:middle;}
.post-reply-time {height:20px; line-height:20px; vertical-align:middle;}
@@ -203,7 +204,7 @@ a.underline {text-decoration:underline;}
.img-circle {border-radius:50% !important;}
.member-banner {height:24px; line-height:24px; text-align:center; vertical-align:middle; background-color:#dfdfdf;}
.resource-width {width:76%;}
-.courseware-from-width {max-width:57%;}
+.courseware-from-width {max-width:50%;}
.other-from-width {max-width:80%;}
.course-name-width {width:68%;}