Browse Source

优化财务

dev-xx
马远东 12 months ago
parent
commit
1c1248ab93
  1. 9
      src/views/Pricesystem/Price/PriceWarehousing.vue
  2. 41
      src/views/Pricesystem/PricesyHome.vue
  3. 11
      src/views/financialsector/FinanceHome.vue
  4. 1065
      src/views/financialsector/Financialse/FinancialDelivery.vue
  5. 15
      src/views/financialsector/Financialse/FinancialWarehousing.vue

9
src/views/Pricesystem/Price/PriceWarehousing.vue

@ -168,7 +168,7 @@ const CalculationBasis = ref([]);
const request = ref({});
const Surchargepricingunit = ref([]);
async function updateDictionary(targetArray, dictionaryType) {
await getDictionaryBiz(dictionaryType)
await getDictionaryBiz(dictionaryType)
.then(res => {
console.log(res, '字典');
if (res.data.code == 200) {
@ -511,11 +511,8 @@ const onLoad = async () => {
});
}
}
let setTime = setTimeout(async () => {
formCopy.value = await deepClone(form.value);
loading.value = false;
clearTimeout(setTime);
}, 500);
formCopy.value = await deepClone(form.value);
loading.value = false;
console.log(request.value, '初始化页面');
};

41
src/views/Pricesystem/PricesyHome.vue

@ -1,8 +1,8 @@
<template>
<basic-container v-loading="pageLoading">
<basic-container v-loading="pageLoading" element-loading-text="页面正在拼命加载中...">
<!-- 模板内容 -->
<div class="content">
<el-tabs type="border-card" @tab-click="handleClick" v-model="Tabmenu">
<el-tabs type="border-card" @tab-click="handleClick" v-model="Tabmenu">
<template v-for="item in ServiceList" :key="item.label">
<el-tab-pane :name="item.label" v-if="item.state" :label="item.label">
<span v-if="item.label == '提货'"
@ -18,10 +18,16 @@
:templateData="templateInfo"
/></span>
<span v-if="item.label == '仓储'"
><FinancialWarehousing ref="financialWarehousing" @request-data="provideData" :templateData="templateInfo"
><FinancialWarehousing
ref="financialWarehousing"
@request-data="provideData"
:templateData="templateInfo"
/></span>
<span v-if="item.label == '配送'"
><FinancialDelivery ref="financialDelivery" @request-data="provideData" :templateData="templateInfo"
><FinancialDelivery
ref="financialDelivery"
@request-data="provideData"
:templateData="templateInfo"
/></span>
<span v-if="item.label == '安装'">安装</span>
</el-tab-pane>
@ -59,7 +65,7 @@ const FinancialDelivery = defineAsyncComponent(() =>
/** 页面loading */
const pageLoading = ref(true); //
const form = ref({});
const Tabmenu = ref('仓储');
const Tabmenu = ref('提货');
const templateInfo = ref({});
//
const ServiceList = ref([]);
@ -67,15 +73,15 @@ const ServiceList = ref([]);
const VehicleTypeList = ref([]);
const financialBill = ref();
const eltabs=ref()
const financialTrunkLine = ref();
const financialDelivery=ref()
const financialDelivery = ref();
const financialWarehousing=ref()
const financialWarehousing = ref();
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType)
async function updateDictionary(targetArray, dictionaryType) {
await getDictionaryBiz(dictionaryType)
.then(res => {
const { code, data } = res.data;
@ -102,6 +108,7 @@ async function executeCheckedResults(results) {
await provideData();
}
pageLoading.value = false;
Tabmenu.value=results[0].label;//
}
/** 获取回显数据 */
@ -121,6 +128,7 @@ const initData = async () => {
//
const onLoad = async () => {
console.log(eltabs.value,'eltabssss');
try {
pageLoading.value = true;
@ -173,28 +181,27 @@ const onLoad = async () => {
await nextTick();
setTimeout(() => {
console.log('financialBill :>> ', financialBill);
if( financialBill.value && financialBill.value.length){
if (financialBill.value && financialBill.value.length) {
financialBill.value[0].initDictionaryBiz();
}
if(financialTrunkLine.value && financialTrunkLine.value.length){
if (financialTrunkLine.value && financialTrunkLine.value.length) {
financialTrunkLine.value[0].initDictionaryBiz();
}
}, 1000);
});
} catch (error) {
console.log('error :>> ', error);
} finally {
pageLoading.value = false;
}
};
onLoad();
//
const isChecked = (val, isCheck = false) => {
const isChecked =async (val, isCheck = false) => {
///
val.state = !val.state;
//
if (!isCheck) Tabmenu.value = val.label;
if (!isCheck) Tabmenu.value = await val.label;
//
if (!val.state && form.value.ServiceType.length) {
Tabmenu.value = ServiceList.value.find(res => res.state).label;
@ -211,13 +218,13 @@ const removeTag = value => {
};
//
const provideData = data => {
const provideData = async data => {
console.log(data, '来自子页面的数据');
console.log(form.value, 'form.value');
templateInfo.value = form.value;
if (data) {
templateInfo.value.code = data; //
templateInfo.value.code = await data; //
}
};

11
src/views/financialsector/FinanceHome.vue

@ -152,6 +152,7 @@ async function executeCheckedResults(results) {
await provideData();
}
pageLoading.value = false;
Tabmenu.value=results[0].label;//
}
//
const onLoad = async () => {
@ -192,11 +193,11 @@ const onLoad = async () => {
};
onLoad();
//
const isChecked = (val, isChecked = false, msg = false) => {
const isChecked = async (val, isChecked = false, msg = false) => {
console.log(msg, '当前msg');
console.log(val, 'val');
if (msg) {
val.state = !val.state;
if (msg) {
val.state = !val.state;
Tabmenu.value = val.label;
if (!val.check) {
form.value.ServiceType.push(val.value);
@ -208,10 +209,10 @@ const isChecked = (val, isChecked = false, msg = false) => {
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
.then( async () => {
val.check = false;
val.state = false;
let indexToRemove = form.value.ServiceType.findIndex(item => item == val.value);
let indexToRemove = await form.value.ServiceType.findIndex(item => item == val.value);
if (indexToRemove !== -1) {
form.value.ServiceType.splice(indexToRemove, 1);
}

1065
src/views/financialsector/Financialse/FinancialDelivery.vue

File diff suppressed because it is too large Load Diff

15
src/views/financialsector/Financialse/FinancialWarehousing.vue

@ -486,7 +486,7 @@ const categoriesduce = id => {
removeItemById(form.value.AdditionalcategoriesData, id);
};
async function updateDictionary(targetArray, dictionaryType) {
await getDictionaryBiz(dictionaryType)
await getDictionaryBiz(dictionaryType)
.then(res => {
console.log(res, '字典');
if (res.data.code == 200) {
@ -522,15 +522,16 @@ const resetFormData = () => {
if ($route.query.id) {
console.log(formedit.value, 'formedit.value');
form.value = deepClone(formedit.value);
setTimeout(() => {
pageLoading.value = false;
}, 300);
} else {
form.value = deepClone(formCopy.value);
setTimeout(() => {
pageLoading.value = false;
}, 300);
}
setTimeout(() => {
pageLoading.value = false;
ElMessage({
message: '重置成功',
type: 'success',
});
}, 300);
});
};

Loading…
Cancel
Save