Elements-SY

modify

1 <template> 1 <template>
2 <!-- 拖拽交换位置效果 --> 2 <!-- 拖拽交换位置效果 -->
3 <transition-group tag="div" class="container"> 3 <transition-group tag="div" class="container">
4 - <div class="item" v-for="(item, index) in list" :key="index" draggable="true" 4 + <div class="item" v-for="(item, index) in list" :key="item.route" draggable="true"
5 @dragstart="handleDragStart($event, item)" @dragover.prevent="handleDragOver($event, item)" 5 @dragstart="handleDragStart($event, item)" @dragover.prevent="handleDragOver($event, item)"
6 @dragenter="handleDragEnter($event, item)" @dragend="handleDragEnd($event, item)"> 6 @dragenter="handleDragEnter($event, item)" @dragend="handleDragEnd($event, item)">
7 <svg-icon v-if="!disabled" icon-class="drag-text" class="el-input__icon input-icon" style="color:#bfbfbf" /> 7 <svg-icon v-if="!disabled" icon-class="drag-text" class="el-input__icon input-icon" style="color:#bfbfbf" />
......
...@@ -96,13 +96,6 @@ export const constantRoutes = [ ...@@ -96,13 +96,6 @@ export const constantRoutes = [
96 meta: { title: "航班配舱", icon: "user" }, 96 meta: { title: "航班配舱", icon: "user" },
97 }, 97 },
98 { 98 {
99 - path: "/info/:handle/id=:id;routeStatus=:routeStatus;fltNo=:fltNo;route=:route;fltDate=:fltDate;status=:status",
100 - component: (resolve) =>
101 - require(["@/views/allocationConfig/flightAllocConfig/info"], resolve),
102 - name: "FlightAllocConfigInfo",
103 - meta: { title: "航班配舱", icon: "user" },
104 - },
105 - {
106 path: "/weatherTable/:awbNbr", 99 path: "/weatherTable/:awbNbr",
107 component: (resolve) => 100 component: (resolve) =>
108 require(["@/views/systemLog/dmLog/weatherTable"], resolve), 101 require(["@/views/systemLog/dmLog/weatherTable"], resolve),
......