-
- 最低计费等级
-
+ 最低计费等级
@@ -329,7 +326,7 @@
diff --git a/src/views/Pricesystem/Price/PriceWarehousing.vue b/src/views/Pricesystem/Price/PriceWarehousing.vue
index e4c1f81d..7b0f6356 100644
--- a/src/views/Pricesystem/Price/PriceWarehousing.vue
+++ b/src/views/Pricesystem/Price/PriceWarehousing.vue
@@ -185,8 +185,6 @@ import { deepClone } from '@/utils/util';
import { ElMessage } from 'element-plus';
import { putBasicdataPrice } from '@/api/Pricesystem/index';
import { useRoute } from 'vue-router';
-import { valid } from 'mockjs';
-import page from '@/router/page';
const $route = useRoute(); //获取地址栏参数
const emit = defineEmits(['request-data']);
defineComponent({
@@ -476,7 +474,7 @@ const onLoad = async () => {
const price = async () => {
if (Object.keys(requestInfo.value).length > 0) {
- if (requestInfo.value.catergory.length) {
+ if (requestInfo.value.catergory && requestInfo.value.catergory.length) {
// 仓储
requestInfo.value.catergory.forEach(res => {
let data = form.value.publicData.find(temp => temp.categoryId == res.categoryId);
@@ -489,7 +487,7 @@ const price = async () => {
});
}
// 附加费(还差状态)
- if (requestInfo.value.additionalCategory.length) {
+ if (requestInfo.value.additionalCategory && requestInfo.value.additionalCategory.length) {
requestInfo.value.additionalCategory.forEach(res => {
let data = form.value.SurchargeData.find(temp => temp.categoryId == res.categoryId);
if (data) {
diff --git a/src/views/distribution/inventory/distrilbutionBillLading.vue b/src/views/distribution/inventory/distrilbutionBillLading.vue
index 7bfc9d2a..5457c528 100644
--- a/src/views/distribution/inventory/distrilbutionBillLading.vue
+++ b/src/views/distribution/inventory/distrilbutionBillLading.vue
@@ -2293,11 +2293,11 @@ export default {
},
//确定
callFordelivery(inde) {
- // if (!this.selectionList.length) {
- // console.log(this.selectionListStock, '23');
- // this.$message.warning('至少选择一条数据!');
- // return;
- // }
+ if (!this.selectionList.length) {
+ console.log(this.selectionListStock, '23');
+ this.$message.warning('至少选择一条数据!');
+ return;
+ }
let isa = false;
this.selectionList.some(i => {
if (parseInt(i.inventoryQuantity) > parseInt(i.quantityStock)) {
diff --git a/src/views/financialsector/FinanceHome.vue b/src/views/financialsector/FinanceHome.vue
index 1d79a62d..ff85d1ee 100644
--- a/src/views/financialsector/FinanceHome.vue
+++ b/src/views/financialsector/FinanceHome.vue
@@ -358,4 +358,5 @@ const handleChange = () => {
padding:0 10px !important;
}
}
+