vue2-client 1.8.49 → 1.8.50
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
|
<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,6 +185,7 @@ 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;
|
|
@@ -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"
|
|
@@ -187,7 +187,7 @@ export default {
|
|
|
187
187
|
//width: 75%;
|
|
188
188
|
height: 79%;
|
|
189
189
|
padding: 20px;
|
|
190
|
-
margin:
|
|
190
|
+
margin: 10px auto;
|
|
191
191
|
background-color: #f5f7fb;
|
|
192
192
|
}
|
|
193
193
|
|