|
|
@ -18,13 +18,12 @@ |
|
|
<div class="section-header"> |
|
|
<div class="section-header"> |
|
|
<div class="section-title">航线列表</div> |
|
|
<div class="section-title">航线列表</div> |
|
|
<el-button |
|
|
<el-button |
|
|
type="text" |
|
|
type="primary" |
|
|
icon="el-icon-plus" |
|
|
|
|
|
size="mini" |
|
|
size="mini" |
|
|
class="header-action-btn" |
|
|
|
|
|
@click="handleCreateRoute" |
|
|
@click="handleCreateRoute" |
|
|
|
|
|
class="create-route-btn-new" |
|
|
> |
|
|
> |
|
|
新建 |
|
|
新建航线 |
|
|
</el-button> |
|
|
</el-button> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
@ -76,6 +75,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="action-buttons"> |
|
|
<div class="action-buttons"> |
|
|
<el-button type="primary" size="mini" icon="el-icon-circle-plus" class="blue-btn" @click="handleAddWaypoint"> |
|
|
<el-button type="primary" size="mini" icon="el-icon-circle-plus" class="blue-btn" @click="handleAddWaypoint"> |
|
|
添加航点 |
|
|
添加航点 |
|
|
@ -85,6 +85,7 @@ |
|
|
</el-button> |
|
|
</el-button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div v-if="activeTab === 'conflict'" class="tab-content conflict-content"> |
|
|
<div v-if="activeTab === 'conflict'" class="tab-content conflict-content"> |
|
|
<div v-if="conflicts.length > 0" class="conflict-list"> |
|
|
<div v-if="conflicts.length > 0" class="conflict-list"> |
|
|
<div |
|
|
<div |
|
|
@ -129,6 +130,7 @@ |
|
|
</el-button> |
|
|
</el-button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div v-if="activeTab === 'platform'" class="tab-content platform-content"> |
|
|
<div v-if="activeTab === 'platform'" class="tab-content platform-content"> |
|
|
<div class="platform-categories"> |
|
|
<div class="platform-categories"> |
|
|
<el-tabs v-model="activePlatformTab" type="card" size="mini" class="blue-tabs"> |
|
|
<el-tabs v-model="activePlatformTab" type="card" size="mini" class="blue-tabs"> |
|
|
@ -153,6 +155,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</el-tab-pane> |
|
|
</el-tab-pane> |
|
|
|
|
|
|
|
|
<el-tab-pane label="海上" name="sea"> |
|
|
<el-tab-pane label="海上" name="sea"> |
|
|
<div class="platform-list"> |
|
|
<div class="platform-list"> |
|
|
<div |
|
|
<div |
|
|
@ -174,6 +177,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</el-tab-pane> |
|
|
</el-tab-pane> |
|
|
|
|
|
|
|
|
<el-tab-pane label="地面" name="ground"> |
|
|
<el-tab-pane label="地面" name="ground"> |
|
|
<div class="platform-list"> |
|
|
<div class="platform-list"> |
|
|
<div |
|
|
<div |
|
|
@ -377,25 +381,30 @@ export default { |
|
|
justify-content: space-between; |
|
|
justify-content: space-between; |
|
|
align-items: center; |
|
|
align-items: center; |
|
|
border-bottom: 2px solid rgba(0, 138, 255, 0.2); |
|
|
border-bottom: 2px solid rgba(0, 138, 255, 0.2); |
|
|
margin-bottom: 10px; |
|
|
margin-bottom: 15px; |
|
|
padding-bottom: 8px; |
|
|
padding-bottom: 10px; |
|
|
|
|
|
padding-top: 10px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* 修改:移除了原有的 border-bottom,改在 section-header 中统一定义 */ |
|
|
|
|
|
.section-title { |
|
|
.section-title { |
|
|
font-size: 14px; |
|
|
font-size: 14px; |
|
|
font-weight: 600; |
|
|
font-weight: 600; |
|
|
color: #008aff; |
|
|
color: #008aff; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* 新增:头部按钮样式 */ |
|
|
.create-route-btn-new { |
|
|
.header-action-btn { |
|
|
background-color: #3370ff !important; |
|
|
padding: 0; |
|
|
border-color: #3370ff !important; |
|
|
color: #008aff; |
|
|
color: #ffffff !important; |
|
|
|
|
|
padding: 4px 10px; |
|
|
|
|
|
font-size: 12px; |
|
|
|
|
|
border-radius: 4px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.header-action-btn:hover { |
|
|
.create-route-btn-new:hover { |
|
|
color: #0066cc; |
|
|
background-color: #285fd9 !important; |
|
|
|
|
|
border-color: #285fd9 !important; |
|
|
|
|
|
opacity: 0.9; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.route-list { |
|
|
.route-list { |
|
|
@ -476,7 +485,6 @@ export default { |
|
|
padding: 10px; |
|
|
padding: 10px; |
|
|
background: rgba(255, 255, 255, 0.8); |
|
|
background: rgba(255, 255, 255, 0.8); |
|
|
border-radius: 6px; |
|
|
border-radius: 6px; |
|
|
/* 移除 cursor: pointer 因为不再整行可点 */ |
|
|
|
|
|
transition: all 0.3s; |
|
|
transition: all 0.3s; |
|
|
border: 1px solid rgba(0, 138, 255, 0.1); |
|
|
border: 1px solid rgba(0, 138, 255, 0.1); |
|
|
} |
|
|
} |
|
|
|