Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Elements-SY
2023-10-16 09:47:37 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
67270b702d080b237fee0b1c64b0c480663eaef4
67270b70
2 parents
eff59341
2292df4f
Merge branch 'et86-black' into et86
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
8 deletions
src/components/Drag/index.vue
src/router/index.js
src/components/Drag/index.vue
View file @
67270b7
<template>
<!-- 拖拽交换位置效果 -->
<transition-group tag="div" class="container">
<div class="item" v-for="(item, index) in list" :key="i
ndex
" draggable="true"
<div class="item" v-for="(item, index) in list" :key="i
tem.route
" draggable="true"
@dragstart="handleDragStart($event, item)" @dragover.prevent="handleDragOver($event, item)"
@dragenter="handleDragEnter($event, item)" @dragend="handleDragEnd($event, item)">
<svg-icon v-if="!disabled" icon-class="drag-text" class="el-input__icon input-icon" style="color:#bfbfbf" />
...
...
src/router/index.js
View file @
67270b7
...
...
@@ -89,13 +89,6 @@ export const constantRoutes = [
meta
:
{
title
:
"航班配舱"
,
icon
:
"user"
},
},
{
path
:
"/info/:handle/id=:id;routeStatus=:routeStatus;fltNo=:fltNo;route=:route;fltDate=:fltDate;status=:status"
,
component
:
(
resolve
)
=>
require
([
"@/views/allocationConfig/flightAllocConfig/info"
],
resolve
),
name
:
"FlightAllocConfigInfo"
,
meta
:
{
title
:
"航班配舱"
,
icon
:
"user"
},
},
{
path
:
"/weatherTable/:awbNbr"
,
component
:
(
resolve
)
=>
require
([
"@/views/systemLog/dmLog/weatherTable"
],
resolve
),
...
...
Please
register
or
login
to post a comment