Elements-SY

Merge branch 'et86-black' into et86

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" />
......
...@@ -89,13 +89,6 @@ export const constantRoutes = [ ...@@ -89,13 +89,6 @@ export const constantRoutes = [
89 meta: { title: "航班配舱", icon: "user" }, 89 meta: { title: "航班配舱", icon: "user" },
90 }, 90 },
91 { 91 {
92 - path: "/info/:handle/id=:id;routeStatus=:routeStatus;fltNo=:fltNo;route=:route;fltDate=:fltDate;status=:status",
93 - component: (resolve) =>
94 - require(["@/views/allocationConfig/flightAllocConfig/info"], resolve),
95 - name: "FlightAllocConfigInfo",
96 - meta: { title: "航班配舱", icon: "user" },
97 - },
98 - {
99 path: "/weatherTable/:awbNbr", 92 path: "/weatherTable/:awbNbr",
100 component: (resolve) => 93 component: (resolve) =>
101 require(["@/views/systemLog/dmLog/weatherTable"], resolve), 94 require(["@/views/systemLog/dmLog/weatherTable"], resolve),
......