|
743 | 743 |
|
744 | 744 | <div class="right-main" id="vHtml" v-show="view == 'html'"></div>
|
745 | 745 | <div class="right-main" id="vMarkdown" v-show="view == 'markdown'"></div>
|
746 |
| - <div style="bottom: -6px; text-align: right; position: absolute; width: 100%; padding: 4px 20px 0px 4px; background-color: white;"> |
| 746 | + <div style="bottom: -6px; text-align: right; position: absolute; margin-left: 8px; width: 100%; padding: 4px 20px 0px 4px; background-color: white;"> |
747 | 747 | <!-- <div style="float: right" >-->
|
748 | 748 | <input v-show="view == 'markdown'" id="vSearch" v-model="search" style="min-width: 60px; display: inline-flex; text-align: center" @keyup="doOnKeyUp(event, 'document', true)" placeholder="搜索文档" />
|
749 | 749 | <button v-show="view == 'markdown'" @click="pageDown('document')">上页 < </button>
|
|
753 | 753 | <input v-show="view == 'markdown'" id="vCount" v-model="count" style="width: 30px;text-align: center" type="number" @keyup="doOnKeyUp(event, 'document', true)" placeholder="条数" />
|
754 | 754 | <a v-show="view == 'markdown'" >条</a>
|
755 | 755 | <!-- </div>-->
|
756 |
| - <input id="vAskAI" style="min-width: 60px; display: inline-flex; padding: 0px 4px 0px 4px" @keyup="doOnKeyUp(event, 'ask', true)" placeholder="Ask AI" :style="{'width': view == 'markdown' ? 'auto' : '82%', 'text-align': view == 'markdown' ? 'center' : 'left'}" /> |
757 |
| - <label style="float: right; margin-left: 8px; padding-left: 15px; padding-top: 3px; justify-content: center; align-items: center; text-align: center; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;"><input id="vDeepSearch" type="checkbox" name="Deep Search" style="height: 100%; text-align: center; position: absolute; margin-left: -15px; bottom: -0px">Deep Search</label> |
| 756 | + <div style="display: inline-flex; border: black 1px solid; border-radius: 2px; float: right; margin-left: 8px; padding-left: 3px; padding-top: 3px;" :style="{'width': view == 'markdown' ? 'auto' : '100%', 'height': view == 'markdown' ? '27px' : 'auto'}"> |
| 757 | + <textarea id="vAskAI" style="rows: 5; width: 100%; padding: 0px 4px 0px 4px" @keyup="doOnKeyUp(event, 'ask', true)" placeholder="Ask AI, Shift+Enter 换行" ></textarea> |
| 758 | + <label style="top: -2px; height: 27px; width: 60px; margin-left: 3px; margin-right: 3px; justify-content: center; align-items: center; text-align: center; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;"><input id="vDeepSearch" type="checkbox" name="Deep" >DEEP </label> |
| 759 | + </div> |
758 | 760 | </div>
|
759 | 761 |
|
760 | 762 | <ul class="dropdown-menu" id="vOption" style="display: block; left: 0px; top: 0px; max-height: 100%; max-width: 100%; overflow: scroll; overflow-x: scroll; overflow-y:scroll;" v-show="options != null && options.length > 0">
|
|
1053 | 1055 | var vPage = document.getElementById('vPage');
|
1054 | 1056 | var vCount = document.getElementById('vCount');
|
1055 | 1057 | var vAskAI = document.getElementById('vAskAI');
|
| 1058 | + var vDeepSearch = document.getElementById('vDeepSearch'); |
1056 | 1059 | var vSearch = document.getElementById('vSearch');
|
1057 | 1060 | var vTestCasePage = document.getElementById('vTestCasePage');
|
1058 | 1061 | var vTestCaseCount = document.getElementById('vTestCaseCount');
|
|
0 commit comments