Merge remote-tracking branch 'origin/dev_ksck_z' into dev_ksck_z

20240912_adapter_z
wangwei 10 months ago
commit b2207905b7

@ -122,7 +122,7 @@
<span>{{ workplaceTypes[scope.row.workplaceType] }}</span> <span>{{ workplaceTypes[scope.row.workplaceType] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="库存预警数" prop="invRemindNumber" width="90"></el-table-column> <!-- <el-table-column label="库存预警数" prop="invRemindNumber" width="90"></el-table-column>-->
<el-table-column label="工位负责人" prop="employeeName" width="90"></el-table-column> <el-table-column label="工位负责人" prop="employeeName" width="90"></el-table-column>
<!--<el-table-column label="往来单位标题" prop="unitTittle" width="100"></el-table-column>--> <!--<el-table-column label="往来单位标题" prop="unitTittle" width="100"></el-table-column>-->
<!--<el-table-column label="往来单位类型" prop="corpType" width="100">--> <!--<el-table-column label="往来单位类型" prop="corpType" width="100">-->

@ -22,7 +22,6 @@
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>

@ -126,8 +126,13 @@
:key="item.name" :key="item.name"
:label="item.title" :label="item.title"
:name="item.name" :name="item.name"
@contextmenu.stop.prevent="handleTabContextMenu($event, item)"
> >
<ul v-if="showContextMenu" class="context-menu" :style="contextMenuPosition">
<li @click="closeCurrentTab(contextMenuIndex)"></li>
<li @click="closeOtherTabs"></li>
<li @click="closeAllTabs"></li>
</ul>
<div > <div >
<component v-if="showChild" :is="item.component" v-bind="item.componentProps" :reset-key="resetKeys[item.name]" @parent-method="parentMethod" /> <component v-if="showChild" :is="item.component" v-bind="item.componentProps" :reset-key="resetKeys[item.name]" @parent-method="parentMethod" />
</div> </div>
@ -179,7 +184,8 @@
<div style="flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 10px;" <div style="flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 10px;"
> >
<!-- 假设这里有一些信息内容 --> <!-- 假设这里有一些信息内容 -->
<p style="font-size: 14px;background-color: #e1f3fb" @click="selectBusType(info.documentTypeCode)">{{ info.remark }}</p> <p style="font-size: 14px;background-color: #e1f3fb" @click="selectBusType(info.documentTypeCode)">
{{ info.remark }}</p>
<el-button type="primary" style="position: absolute; bottom: 20px; right: 20px;" icon="el-icon-thumb" <el-button type="primary" style="position: absolute; bottom: 20px; right: 20px;" icon="el-icon-thumb"
@click="selectBusType(info.documentTypeCode)">开始作业 @click="selectBusType(info.documentTypeCode)">开始作业
</el-button> </el-button>
@ -264,7 +270,7 @@ export default {
component: IoCreateOrderOut, component: IoCreateOrderOut,
// //
componentProps: { componentProps: {
fromSplitType: 'out' fromSplitType: 'out',
} }
}, },
{ {
@ -445,6 +451,7 @@ export default {
this.formData.busType = this.$route.query.busType this.formData.busType = this.$route.query.busType
}else if (this.busTypeList.length == 1) { }else if (this.busTypeList.length == 1) {
this.formData.busType = this.busTypeList[0].documentTypeCode this.formData.busType = this.busTypeList[0].documentTypeCode
this.$router.push({query: {...this.$route.query, busType: this.formData.busType}, path: this.$route.path})
this.selectBusTypeDisabled = false this.selectBusTypeDisabled = false
} else { } else {
this.selectBusTypeDisabled = true this.selectBusTypeDisabled = true
@ -456,47 +463,46 @@ export default {
}) })
}, },
handleContextMenu(event, tabItem) { handleContextMenu() {
console.log("右击") this.showContextMenu = true;
},
handleTabContextMenu(event, tab) {
this.showContextMenu = true; this.showContextMenu = true;
this.contextMenuTab = tab;
this.contextMenuPosition = { x: event.clientX, y: event.clientY }; this.contextMenuPosition = { x: event.clientX, y: event.clientY };
// 使 Element UI Dialog Popover
// showContextMenu tabItem
this.showContextMenu(tabItem, event.clientX, event.clientY);
}, },
showContextMenu(tabItem, x, y) {
// closeContextMenu() {
this.contextMenuVisible = true; this.showContextMenu = false;
this.contextMenuPosition = { x, y }; this.contextMenuStyle.display = 'none'; //
this.selectedTabItem = tabItem;
}, },
// closeCurrent, closeOthers, closeAll closeCurrentTab(index) {
closeCurrent() {
// //
const index = this.editableTabs.findIndex(tab => tab.name === this.selectedTabItem.name); this.editableTabs.splice(index, 1); //
if (index !== -1) { this.editableTabsValue = this.editableTabs.length > 0 ? this.editableTabs[0].name : '';
this.editableTabs.splice(index, 1); this.closeContextMenu();
this.editableTabsValue = this.editableTabs[this.editableTabs.length - 1]?.name || '';
}
}, },
closeOthers() { closeOtherTabs() {
// //
this.editableTabs = this.editableTabs.filter(tab => tab.name === this.selectedTabItem.name); // ...
this.editableTabsValue = this.selectedTabItem.name; this.closeContextMenu();
}, },
closeAll() { closeAllTabs() {
// //
this.editableTabs = []; this.editableTabs = [];
this.editableTabsValue = ''; this.editableTabsValue = '';
} this.closeContextMenu();
},
}, },
computed: { computed: {
contextMenuStyle() { contextMenuPosition() {
return { return {
position: 'fixed', // 使 fixed
left: `${this.contextMenuPosition.x}px`, left: `${this.contextMenuPosition.x}px`,
top: `${this.contextMenuPosition.y}px`, top: `${this.contextMenuPosition.y}px`,
// zIndex: 1000, //
// ...
}; };
}, },
}, },
@ -511,7 +517,7 @@ export default {
} }
</script> </script>
<style scoped> <style lang="css" scoped>
.sidebar-logo { .sidebar-logo {
width: 80px; width: 80px;
height: 60px; height: 60px;
@ -519,8 +525,25 @@ export default {
margin-left: 25px; margin-left: 25px;
} }
.context-menu { .context-menu {
position: absolute; zIndex: 1000;
z-index: 1000; /* 确保它在其他内容之上 */ position: fixed ;
list-style-type: none;
padding: 0;
margin: 0;
background-color: #f9f9f9;
border: 1px solid #d4d4d4;
border-radius: 4px;
/* 其他样式... */ /* 其他样式... */
} }
.context-menu li {
padding: 8px 16px;
cursor: pointer;
/* 其他样式... */
}
.context-menu li:hover {
background-color: #e1e1e1;
}
</style> </style>

@ -272,7 +272,8 @@
<div style="flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 10px;" <div style="flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 10px;"
> >
<!-- 假设这里有一些信息内容 --> <!-- 假设这里有一些信息内容 -->
<p style="font-size: 14px;background-color: #e1f3fb" @click="selectBusType(info.documentTypeCode)">{{ info.remark }}</p> <p style="font-size: 14px;background-color: #e1f3fb" @click="selectBusType(info.documentTypeCode)">
{{ info.remark }}</p>
<el-button type="primary" style="position: absolute; bottom: 20px; right: 20px;" icon="el-icon-thumb" <el-button type="primary" style="position: absolute; bottom: 20px; right: 20px;" icon="el-icon-thumb"
@click="selectBusType(info.documentTypeCode)">开始作业 @click="selectBusType(info.documentTypeCode)">开始作业
</el-button> </el-button>
@ -442,8 +443,7 @@ export default {
if (this.formData.billNo != null) { if (this.formData.billNo != null) {
this.getBillNo(this.formData.billNo) this.getBillNo(this.formData.billNo)
this.startDeal(); this.startDeal();
} } else {
else {
if (this.busTypeList.length == 1 && this.$route.query.busType == null) { if (this.busTypeList.length == 1 && this.$route.query.busType == null) {
let busType = this.busTypeList[0] let busType = this.busTypeList[0]
this.formData.busType = this.busTypeList[0].documentTypeCode this.formData.busType = this.busTypeList[0].documentTypeCode
@ -925,9 +925,6 @@ export default {
} }
} }
} }

@ -407,6 +407,7 @@ export default {
sickerAdNum: null, sickerAdNum: null,
workPlaceCode: null, workPlaceCode: null,
fifoSplit: 1, fifoSplit: 1,
splitBusType: null,
}, },
detailList: [], detailList: [],
@ -1081,7 +1082,7 @@ export default {
parseTime(date, "{y}{m}{d}{h}{i}{s}") + parseTime(date, "{y}{m}{d}{h}{i}{s}") +
Math.ceil(Math.random() * 89 + 10); Math.ceil(Math.random() * 89 + 10);
} }
debugger
this.loading = true; this.loading = true;
let tQuery = Object.assign( let tQuery = Object.assign(
JSON.parse(JSON.stringify(this.orderFormData)) JSON.parse(JSON.stringify(this.orderFormData))
@ -1751,6 +1752,7 @@ export default {
preCurSpaceCode: null, // preCurSpaceCode: null, //
sickerAdNum: null, sickerAdNum: null,
workPlaceCode: null, workPlaceCode: null,
splitBusType: null,
fifoSplit: 1, fifoSplit: 1,
} }
this.scanCode = ""; this.scanCode = "";
@ -1847,7 +1849,8 @@ export default {
this.corpOrderIdDisabled = true this.corpOrderIdDisabled = true
this.isLinkDisabled = true this.isLinkDisabled = true
this.workplaceId = this.$route.query.workplaceId this.workplaceId = this.$route.query.workplaceId
this.orderFormData.workPlaceCode = Number(this.$route.query.workplaceId) this.orderFormData.workPlaceCode = Number(this.$route.query.workplaceId);
this.orderFormData.splitBusType = "YPCF002"
} }
}, },

Loading…
Cancel
Save