vue2-client 1.8.49 → 1.8.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.49",
3
+ "version": "1.8.51",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -1,6 +1,6 @@
1
1
  <template>
2
- <a-card class="question-history" id="question-history" size="small">
3
- <a-tabs v-model="activeKey">
2
+ <a-card class="question-history" id="question-history" size="small" :bordered="false">
3
+ <a-tabs v-model="activeKey" :tabBarStyle="{ textAlign: 'center' }">
4
4
  <a-tab-pane key="1" tab="对话历史">
5
5
  <a-list item-layout="horizontal" :data-source="questions">
6
6
  <a-list-item
@@ -185,16 +185,17 @@ export default {
185
185
 
186
186
  margin-right: 10px;
187
187
  height: 100%;
188
+ border-radius: 8px;
188
189
 
189
190
  .question-history-active {
190
191
  border-left: 4px solid #1890FF;
191
192
  // 左上左下圆角
192
193
  border-radius: 4px 0 0 4px;
193
- padding-left : 4px;
194
+ padding-left : 14px;
194
195
  }
195
196
 
196
197
  .question-history-inactive {
197
- padding-left : 8px;
198
+ padding-left : 18px;
198
199
  }
199
200
 
200
201
  .ant-list-item-meta /deep/ {
@@ -17,7 +17,7 @@
17
17
  </div>
18
18
  <div class="data-main-card">
19
19
  <a-row style="height:100%">
20
- <a-col :span="6" style="height:100%">
20
+ <a-col :span="6" style="height:100%;">
21
21
  <question-history-and-favorites
22
22
  ref="qhaf"
23
23
  @handleOpenFavorite="handleOpenFavorite"
@@ -160,7 +160,7 @@ export default {
160
160
 
161
161
  .search-title-card {
162
162
  height: 65px;
163
- width: 75%;
163
+ width: 94%;
164
164
  margin: 0 auto;
165
165
 
166
166
  .search-title-logo {
@@ -187,7 +187,7 @@ export default {
187
187
  //width: 75%;
188
188
  height: 79%;
189
189
  padding: 20px;
190
- margin: 0 auto;
190
+ margin: 10px auto;
191
191
  background-color: #f5f7fb;
192
192
  }
193
193