Browse Source

Signed-off-by: yinxr <2273460044@qq.com>

yinxr 6 năm trước cách đây
mục cha
commit
9b74399cc3

+ 2 - 2
src/main/webapp/WEB-INF/manager/login.ftl

@@ -94,14 +94,14 @@ var loginVue = new Vue({
         // 登录
         checkLogin: function(form) {
             var that = this;
-            ms.http.post(ms.base + "/ms/checkLogin.do", form).then(function(data) {
+            ms.http.post(ms.manager + "/ms/checkLogin.do", form).then(function(data) {
                 if (data.result) {
                     that.$notify({
                         title: '成功',
                         message: '登录成功',
                         type: 'success'
                     });
-                    location.href = ms.base+"/index.do";
+                    location.href = ms.base+"/index.ftl";
                 } else {
                     that.$notify({
                         title: '失败',

+ 0 - 1
src/main/webapp/WEB-INF/manager/mweixin/message-reply.ftl

@@ -17,7 +17,6 @@
                     <el-form-item class="ms-message-reply-content">
                         <el-input 
                             type="textarea" 
-                            placeholder="请输入内容" 
                             v-model="messageReplyForm.reply"
                             :autosize="{ minRows: 4, maxRows: 4}"
                             resize='none'

+ 1 - 0
src/main/webapp/static/mweixin/css/message-reply.css

@@ -99,6 +99,7 @@ textarea::-webkit-input-placeholder {
   display: flex;
   justify-content: flex-start;
   padding: 20px;
+  height: 267px;
 }
 .ms-message-reply > div:first-child {
   margin-right: 10px;

+ 1 - 0
src/main/webapp/static/mweixin/message-reply.less

@@ -3,6 +3,7 @@
 .ms-message-reply{
     .ms-flex(flex-start);
     padding:20px;
+    height: 267px;
     >div:first-child{
         margin-right:10px;
         line-height: 40px;