紧急修复
1、修复缩小的页面变形; 2、输入t文本居中; 3、修复报错问题。
This commit is contained in:
parent
4cfad5ae0f
commit
f11c9ca8b8
@ -13,6 +13,7 @@ html {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-width: 1719px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.main_bg{
|
||||
|
@ -13,6 +13,7 @@ body {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-width: 1719px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
@ -262,12 +262,17 @@ class FayInterface {
|
||||
loadUserList() {
|
||||
this.fayService.getUserList().then((response) => {
|
||||
if (response && response.list) {
|
||||
if (response.list.length == 0){
|
||||
info = [];
|
||||
info[0] = 1;
|
||||
info[1] = 'User';
|
||||
this.userList.push(info)
|
||||
this.selectUser(info);
|
||||
}else{
|
||||
this.userList = response.list;
|
||||
|
||||
if (this.userList.length > 0) {
|
||||
this.selectUser(this.userList[0]);
|
||||
}
|
||||
this.selectUser(this.userList[0]);
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
selectUser(user) {
|
||||
|
@ -63,7 +63,7 @@
|
||||
|
||||
<div class="inputmessage">
|
||||
<div class="inputmessage_voice" ><img src="{{ url_for('static',filename='images/voice.png') }}" alt="" style="filter: grayscale(100%);" ></div>
|
||||
<div class="inputmessage_input"> <textarea class="text_in" placeholder="请输入内容" v-model="newMessage" @keyup.enter="sendMessage"></textarea></div>
|
||||
<div class="inputmessage_input"> <textarea class="text_in" placeholder="请输入内容" v-model="newMessage" @keyup.enter="sendMessage" style="padding-top: 13px;"></textarea></div>
|
||||
<div class="inputmessage_send"><img src="{{ url_for('static',filename='images/send.png') }}" alt="发送信息" @click="sendMessage"></div>
|
||||
|
||||
<div class="inputmessage_open">
|
||||
|
@ -48,7 +48,7 @@
|
||||
<li> <span class="font_name">职 业:</span><input class="section_1" :disabled="!configEditable" v-model="attribute_job" placeholder="请输入内容"/></li>
|
||||
<li> <span class="font_name"> 联系方式:</span><input class="section_1" :disabled="!configEditable" v-model="attribute_contact" placeholder="请输入内容" /></li>
|
||||
<li> <span class="font_name">Q&A文件:</span><input class="section_1" :disabled="!configEditable" v-model="QnA" placeholder="请输入内容" /></li>
|
||||
<li> <span class="font_name">补 充:</span><textarea class="section_1" style="height: 165px;vertical-align: text-top;"></textarea></li>
|
||||
<li> <span class="font_name">补 充:</span><textarea class="section_1" style="height: 165px;vertical-align: middle;"></textarea></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="setting_rup">
|
||||
|
Loading…
Reference in New Issue
Block a user