diff --git a/src/components/pric/tablePric.vue b/src/components/pric/tablePric.vue index 5f3e7f0c..30904934 100644 --- a/src/components/pric/tablePric.vue +++ b/src/components/pric/tablePric.vue @@ -24,6 +24,8 @@ :controls="false" :value-on-clear="0" placeholder="请输入价格" + :ref="setInputNumberRef(scope.$index, column.prop)" + @focus="handleInputNumberFocus(scope.$index, column.prop)" /> [], }, }); +const inputNumberRefs = ref({}); + +function setInputNumberRef(index, prop) { + return (el) => { + if (el) { + inputNumberRefs.value[`${index}-${prop}`] = el; + } + }; +} + +function handleInputNumberFocus(index, prop) { + const inputNumberRef = inputNumberRefs.value[`${index}-${prop}`]; + if (inputNumberRef) { + // 使用 nextTick 确保 DOM 更新完毕后再执行 + nextTick(() => { + // 获取输入框的原生 DOM 元素 + const inputElement = inputNumberRef.$el.querySelector('input'); + if (inputElement) { + // 全选输入框中的内容 + inputElement.select(); + } + }); + } +} console.log(props.height, 'props'); diff --git a/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue b/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue index a93d0d20..b409dd63 100644 --- a/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue +++ b/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue @@ -6,7 +6,7 @@ -
+ 搜 索 @@ -39,9 +39,9 @@ 导出价格 - 导入价格 + > --> 新增 @@ -655,7 +655,7 @@ const deleteTemplate = row => { width: 15%; align-items: flex-start; .el-form-item__content { - justify-content: flex-end; + // justify-content: flex-end; } } } diff --git a/src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue b/src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue index 17a4062d..a7e0bb51 100644 --- a/src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue +++ b/src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue @@ -8,6 +8,23 @@ + + + + + - + { delete details.query.deliveryDateStart; delete details.query.deliveryDateEnd; } + + if (TopQuery.value.destinationWarehouse?.length) { + details.query.destinationWarehouse = TopQuery.value.destinationWarehouse.join(','); + } else { + delete details.query.destinationWarehouse; + } }; // 网页顶部搜索按钮 const searchChange = () => { + TopSearch(); //顶部搜索条件处理 onLoad(); }; // 清空 @@ -475,8 +498,6 @@ function updateDictionary(targetArray, dictionaryType) { // 页面初始化 const onLoad = async value => { console.log($route, 'route'); - - await TopSearch(); //顶部搜索条件处理 let data = { current: details.page.currentPage, size: details.page.pageSize, @@ -500,9 +521,21 @@ const onLoad = async value => { details.loadingObj.list = false; }); }; - +// 获取仓库 +const MyWarehouseList = () => { + $_getMyWarehouseList().then(res => { + console.log(res, '仓库列表'); + res.data.data.forEach(item => { + warehouseList.value.push({ + value: item.name, + label: item.name, + }); + }); + }); +}; // 页面初始化方法 const PageOnload = () => { + MyWarehouseList(); //获取仓库 onLoad(); //获取列表参数 }; // 页面初始化方法 @@ -538,6 +571,7 @@ const AbnormaladjustmentClick = row => { Abnormaladjustment.value.dialogVisible = true; Abnormaladjustment.value.form = { id, changeAmount, changeNote }; }; + // 异动调整提交 const AbnormaladjustmentSubmit = async () => { if (!Abnormaladjustment.value.form.changeNote) { diff --git a/src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue b/src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue index e1e6c2f5..c59ca584 100644 --- a/src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue +++ b/src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue @@ -23,7 +23,7 @@ - +