qb 12 months ago
parent
commit
57dc13eb52
  1. 9
      src/api/financialsector/index.js
  2. 56
      src/components/pric/tablePric.vue
  3. 1521
      src/views/Pricesystem/Price/PriceDelivery.vue
  4. 976
      src/views/Pricesystem/Price/PriceWarehousing.vue
  5. 2
      src/views/basicdata/brand/basicClient.vue
  6. 77
      src/views/financialsector/FinanceHome.vue
  7. 6
      src/views/financialsector/Financialse/FinancialBill.vue
  8. 667
      src/views/financialsector/Financialse/FinancialDelivery.vue
  9. 8
      src/views/financialsector/Financialse/FinancialTrunkLine.vue
  10. 65
      src/views/financialsector/Financialse/FinancialWarehousing.vue

9
src/api/financialsector/index.js

@ -51,3 +51,12 @@ export const $_InfopriceTemplate = params => {
method: 'get',
});
};
// 菜单临时删除模
export const $_tempDelpriceTemplate = params => {
return request({
url: '/api/logpm-basicdata/priceTemplate',
method: 'patch',
params,
});
};

56
src/components/pric/tablePric.vue

@ -0,0 +1,56 @@
<template>
<el-table :data="SurchargeData" border style="width: 100%" class="el_row_table">
<template v-for="column in Surcharge" :key="column.prop">
<el-table-column
v-if="column.disabled"
:prop="column.prop"
:label="column.label"
:width="column.width"
>
<template #default="scope">
<el-input-number
v-if="column.type === 'number'"
v-model="scope.row[column.prop]"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
<el-select
v-if="column.type === 'select'"
v-model="scope.row[column.prop]"
filterable
clearable
:placeholder="'请选择' + column.label"
>
<el-option
v-for="item in column.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<!-- 操作栏 -->
<slot v-if="!column.type" :scope="scope"> </slot>
</template>
</el-table-column>
</template>
</el-table>
</template>
<script setup>
import { ElTable, ElTableColumn, ElInputNumber } from 'element-plus';
// 使 defineProps props
const props = defineProps({
SurchargeData: {
type: Array,
required: true,
},
Surcharge: {
type: Array,
required: true,
},
});
</script>

1521
src/views/Pricesystem/Price/PriceDelivery.vue

File diff suppressed because it is too large Load Diff

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

File diff suppressed because it is too large Load Diff

2
src/views/basicdata/brand/basicClient.vue

@ -183,7 +183,7 @@
<P>请确认传入的文件为Excel文件格式</P>
<a
href="http://47.108.51.143:9000/logpm/other/%E5%AE%A2%E6%88%B7%E5%AF%BC%E5%85%A5%E6%A8%A1%E6%9D%BF.xlsx"
href="https://huo5you.oss-cn-chengdu.aliyuncs.com/other/%E5%AE%A2%E6%88%B7%E5%AF%BC%E5%85%A5%E6%A8%A1%E6%9D%BF.xlsx"
download="客户模板.xlsx"
>
<el-button type="primary" icon="Download"> 点击下载 </el-button>

77
src/views/financialsector/FinanceHome.vue

@ -47,7 +47,7 @@
:label="item.label"
:value="item.value"
>
<el-checkbox v-model="item.check" @change="() => isChecked(item, true)">
<el-checkbox v-model="item.check" @change="() => isChecked(item, true,true)">
{{ item.label }}
</el-checkbox>
</el-option>
@ -83,8 +83,8 @@
<script setup>
import { ref, defineAsyncComponent, getCurrentInstance } from 'vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { $_basicdataBrande, $_InfopriceTemplate } from '@/api/financialsector/index'; //
import { ElMessage } from 'element-plus';
import { $_basicdataBrande, $_InfopriceTemplate ,$_tempDelpriceTemplate} from '@/api/financialsector/index'; //
import { ElMessage,ElMessageBox } from 'element-plus';
const $route = useRoute(); //
const pageLoading = ref(true); //
@ -143,7 +143,7 @@ function updateDictionary(targetArray, dictionaryType) {
async function executeCheckedResults(results) {
for (const res of results) {
await new Promise(resolve => setTimeout(resolve, 500));
await isChecked(res);
await isChecked(res,false,false);
await provideData();
}
pageLoading.value = false;
@ -187,7 +187,66 @@ const onLoad = async () => {
};
onLoad();
//
const isChecked = (val, isChecked = false) => {
const isChecked = (val, isChecked = false,msg=false) => {
console.log(msg,'当前msg');
console.log(val, 'val');
if(msg){
val.state = !val.state;
Tabmenu.value = val.label;
if(!val.check){
form.value.ServiceType.push(val.value)
console.log( form.value.ServiceType,' form.value.ServiceType');
val.check = true;
val.state = true;
ElMessageBox.confirm(
'关闭当前模板会重置数据!是否关闭?',
'提示',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}
)
.then(() => {
val.check = false;
val.state = false;
let indexToRemove = form.value.ServiceType.findIndex(item => item ==val.value);
if (indexToRemove !== -1) {
form.value.ServiceType.splice(indexToRemove, 1);
}
if (form.value.ServiceType.length) {
Tabmenu.value = ServiceList.value.find(res => res.state).label;
}
if($route.query.id || templateInfo.value.code){
let data={
checkType:val.value,
templateId:$route.query.id,
}
$_tempDelpriceTemplate(data).then(res=>{
console.log(res,'删除成功返回值');
if(res.data.code ==200){
ElMessage({
type: 'success',
message: res.data.msg,
})
}
})
}else{
ElMessage({
type: 'success',
message: '操作成功',
})
}
})
.catch(() => {
val.state = true;
val.check = true;
})
}
}else{
console.log(val, 'val');
///
val.state = !val.state;
@ -202,6 +261,9 @@ const isChecked = (val, isChecked = false) => {
Tabmenu.value = ServiceList.value.find(res => res.state).label;
}
};
};
//
const removeTag = value => {
ServiceList.value.find(res => res.value == value).check = false;
@ -210,8 +272,7 @@ const removeTag = value => {
if (form.value.ServiceType.length) {
Tabmenu.value = ServiceList.value.find(res => res.state).label;
}
};
}
//
const provideData = data => {
console.log(data, '来自子页面的数据');
@ -226,8 +287,6 @@ const provideData = data => {
};
const handleChange = () => {
console.log('instance :>> ', instance);
instance.ctx.$forceUpdate();
};
</script>

6
src/views/financialsector/Financialse/FinancialBill.vue

@ -164,6 +164,8 @@ import { ElMessage, ElMessageBox } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { $_priceTemplate, $_putpriceTemplate } from '@/api/financialsector/index'; //
import { useRoute } from 'vue-router';
const $route = useRoute(); //
const emit = defineEmits(['request-data']);
defineComponent({
emits: ['request-data'],
@ -614,12 +616,12 @@ const handleSubmit = async () => {
delete submitData.billTemplateDetail; //
console.log(submitData, '要提交的数据');
if (props.templateData.code) {
if (props.templateData.code || $route.query.id) {
//
let data = {
id: props.templateData.code, //ID
checkType: '1',
...submitData,
checkType: '1',
};
$_putpriceTemplate(data).then(res => {
console.log(res, '编辑成功之后返回值');

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

@ -1,15 +1,15 @@
<template>
<div class="content_max">
<div class="content_max" v-loading='pageLoading'>
<!-- 配送服务类型 -->
<div class="el_row_f1">
<div class="el_Storage el_flex " style=" margin-right: 20px">
<div class="el_Storage el_flex">
<span class="el_table_span">配送服务类型</span>
<el-select
class="el_Cselect"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
v-model="form.dispatchServiceType"
filterable
placeholder="选择计费类型"
style="width: 310px"
@change="chargetype"
>
<el-option
@ -21,15 +21,15 @@
</el-select>
</div>
<!-- 配送计费模式 -->
<div class="el_select_check el_flex">
<div class="el_Storage el_Service el_flex" >
<div class="el_select_check">
<div class="el_Storage el_Service el_flex">
<span class="el_table_span name">配送计费模式</span>
<el-select
v-model="form.dispatchPricingType"
filterable
placeholder="请选择配送计费模式"
:popper-append-to-body="false"
style="width: 310px"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
multiple
@remove-tag="removeTag"
>
@ -47,12 +47,16 @@
</div>
</div>
<!-- 是否区分品类 -->
<div class="el_Storage el_flex el_te" style="margin-left: 20px;">
<div
class="el_Storage el_flex"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span">是否区分品类</span>
<el-radio-group
@change="categoryChange"
v-model="form.dispatchIsByCategory"
class="el_Cselect el_fx" style=" width: 300px;"
class="el_Cselect el_fx"
style="width: 300px"
>
<el-radio v-for="item in Distinguishcategories" :key="item.label" :label="item.value">{{
item.label
@ -61,9 +65,16 @@
</div>
<!-- 是否有遗留件 -->
<div class="el_Storage el_flex" style="margin-left: 20px;">
<div
class="el_Storage el_flex"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span">是否有遗留件</span>
<el-radio-group v-model="form.dispatchIsLeaveBehind" class="el_Cselect el_fx" style=" width: 300px;">
<el-radio-group
v-model="form.dispatchIsLeaveBehind"
class="el_Cselect el_fx"
style="width: 300px"
>
<el-radio v-for="item in Leftoverparts" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -71,74 +82,87 @@
</div>
</div>
<!-- 商配/市配 -->
<div class="el_Storage" v-if="form.dispatchServiceType && categoriesState">
<div class="el_Storage" v-if="form.dispatchServiceType && form.dispatchIsByCategory">
<el-tabs class="demo-tabs">
<el-tab-pane
:label="WarehousebillingmodeTitle"
:label="form.WarehousebillingmodeTitle"
v-loading="Deliveryloading"
element-loading-text="Loading..."
>
<!-- 商配/市配内容 -->
<div class="el_Commercial_ercial" v-if="StateDelivery">
<div class="el_Commercial_ercial" >
<!-- 按件计费 -->
<template v-for="Item in Commercialcial" :key="Item.title">
<div class="el_Storage el_margin" v-if="Item.state">
<div class="Storage-cont">
<!-- 标题 -->
<span class="el_table_span">{{ Item.title }}</span>
<!-- 表格 -->
<div
class="el_Storagecategory"
v-loading="Item.Storageloading"
element-loading-text="Loading..."
>
<div class="el_table_span el_table_border">
<div class="el_table_id"><span>序号</span></div>
<div class="el_table_title"><span>产品品类</span></div>
<div class="el_table_operation"><span>操作</span></div>
</div>
<!-- 表格循环 -->
<div class="el_table_td" v-for="item in Item.sequence" :key="item.id">
<!-- 序号 -->
<div class="el_table_idNumber">{{ item.id }}</div>
<!-- 选择的品类 -->
<el-select
class="el_Cselect"
v-model="item.Warehousecategory"
filterable
remote
clearable
reserve-keyword
placeholder="请选择品类"
style="width: 100px"
remote-show-suffix
:remote-method="categoriesearch"
@focus="categoriesSearchfocus(item)"
>
<!-- 品类列表 -->
<el-option
v-for="option in item.Additionalcategories"
:key="option.value"
:label="option.label"
:value="option.value"
/>
</el-select>
<div class="el_table_operation">
<span
@click="storageplus(Item, item.id)"
v-if="item.plus"
class="el_table_operation_span_b"
><el-icon style="margin-right: 3px"><CirclePlus /></el-icon></span
>
<span
@click="storagereduce(Item, item.id)"
v-if="item.reduce"
class="el_table_operation_span_a"
><el-icon style="margin-right: 3px"><Delete /></el-icon></span
>
</div>
</div>
</div>
<div v-if="Item.state" class="tabBox">
<!-- 标题 -->
<span class="el_table_span">{{ Item.title }}</span>
<!-- 表格 -->
<div
class="el_Storagecategory"
v-loading="Item.Storageloading"
element-loading-text="Loading..."
>
<!-- 使用table标签创建表格 -->
<table class="styled-table">
<thead>
<tr>
<th style="width: 30px; text-align: center">序号</th>
<th>产品品类</th>
<th style="width: 104px">操作</th>
</tr>
</thead>
<tbody>
<!-- 表格循环 -->
<tr v-for="item in Item.sequence" :key="item.id">
<!-- 序号 -->
<td style="text-align: center">{{ item.id }}</td>
<!-- 选择的品类 -->
<td>
<el-select
class="el_Cselect"
v-model="item.Warehousecategory"
filterable
remote
clearable
reserve-keyword
placeholder="请选择品类"
style="width: 100%"
remote-show-suffix
:remote-method="categoriesearch"
@focus="categoriesSearchfocus(item)"
>
<!-- 品类列表 -->
<el-option
v-for="option in item.Additionalcategories"
:key="option.value"
:label="option.label"
:value="option.value"
/>
</el-select>
</td>
<td style="line-height: 16px">
<span
class="el_btn_a"
@click="storageplus(Item, item.id)"
v-if="item.plus"
>
<el-icon style="font-size: 12px; color: #409eff; margin-right: 3px"
><CirclePlus /></el-icon
>新增
</span>
<span
class="el_btn_b"
@click="storagereduce(Item, item.id)"
v-if="item.reduce"
>
<el-icon style="font-size: 12px; color: #f00; margin-right: 3px"
><Delete /></el-icon
>删除
</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</template>
@ -147,143 +171,183 @@
</el-tabs>
</div>
<!-- 附加费计费 -->
<div class="el_Surchargebilling">
<div class="el_Commercial_ercial">
<span class="el_title_span">附加费计费</span>
<div class="el_fj">
<!-- 是否有分货费 -->
<div class="el_Storage">
<span class="el_table_span">是否有分货费</span>
<el-radio-group v-model="form.dispatchIsSortFee" class="el_Cselect">
<el-radio v-for="item in Distributionfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否有操作/装卸费 -->
<div class="el_Storage">
<span class="el_table_span">是否有操作/装卸费</span>
<el-radio-group v-model="form.dispatchIsOperateFee" class="el_Cselect">
<el-radio v-for="item in Operatingfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否有上楼费 -->
<div class="el_Storage ">
<div class="el_upstairs_a">
<span class="el_table_span">是否有上楼费</span>
<el-radio-group
@change="UpstairsChange"
v-model="form.dispatchIsStairsCarryingCharge"
class="el_Cselect"
>
<el-radio v-for="item in upstairs" :key="item.label" :label="item.value">{{
<div class="el_fj">
<!-- 是否有分货费 -->
<div class="el_Storage">
<span class="el_table_span">是否有分货费</span>
<el-radio-group v-model="form.dispatchIsSortFee" class="el_Cselect">
<el-radio v-for="item in Distributionfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
<div class="el_Storage ">
<div class="el_upstairs_b" v-if="form.dispatchIsStairsCarryingCharge">
<span class="el_table_span">是否配置免费层数</span>
<el-radio-group v-model="form.dispatchIsFeeFloor" class="el_Cselect">
<el-radio v-for="item in Numberlayers" :key="item.label" :label="item.value">{{
<!-- 是否有操作/装卸费 -->
<div class="el_Storage">
<span class="el_table_span">是否有操作/装卸费</span>
<el-radio-group v-model="form.dispatchIsOperateFee" class="el_Cselect">
<el-radio v-for="item in Operatingfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否有上楼费 -->
<div class="el_Storage">
<div class="el_upstairs_a">
<span class="el_table_span">是否有上楼费</span>
<el-radio-group
@change="UpstairsChange"
v-model="form.dispatchIsStairsCarryingCharge"
class="el_Cselect"
>
<el-radio v-for="item in upstairs" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
<div class="el_Storage">
<div class="el_upstairs_b" v-if="form.dispatchIsStairsCarryingCharge">
<span class="el_table_span">是否配置免费层数</span>
<el-radio-group v-model="form.dispatchIsFeeFloor" class="el_Cselect">
<el-radio v-for="item in Numberlayers" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
</div>
</div>
<!-- 是否有平移费 -->
<div class="el_Storage">
<span class="el_table_span">是否有平移费</span>
<el-radio-group v-model="form.dispatchIsShiftingCharge" class="el_Cselect">
<el-radio v-for="item in Translationfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<div style="display: flex">
<!-- 是否有平移费 -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span">是否有平移费</span>
<el-radio-group v-model="form.dispatchIsShiftingCharge" class="el_Cselect el_fx">
<el-radio v-for="item in Translationfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 附加费是否统一计费 -->
<div class="el_Storage">
<span class="el_table_span">附加费是否按品类计费</span>
<el-radio-group v-model="form.dispatchIsCategorySubjoin" class="el_Cselect">
<el-radio
@change="SurchargeChange"
v-for="item in Surchargefee"
:key="item.label"
:label="item.value"
>{{ item.label }}</el-radio
>
</el-radio-group>
<!-- 附加费是否统一计费 -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span">附加费是否按品类计费</span>
<el-radio-group v-model="form.dispatchIsCategorySubjoin" class="el_Cselect el_fx">
<el-radio
@change="SurchargeChange"
v-for="item in Surchargefee"
:key="item.label"
:label="item.value"
>{{ item.label }}</el-radio
>
</el-radio-group>
</div>
<!-- -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span"></span>
<div class="el_Cselect el_fx"></div>
</div>
<!-- -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span"></span>
<div class="el_Cselect el_fx"></div>
</div>
</div>
<!-- 附加费品类 -->
<div class="el_Storage" v-if="form.dispatchIsCategorySubjoin">
<div class="Storage-cont">
<span class="el_table_span">附加费品类</span>
<!-- 表格 -->
<!-- 表格 -->
<div
class="el_Storagecategory"
v-loading="goriesloading"
element-loading-text="Loading..."
>
<div class="el_table_span">
<div class="el_table_id">序号</div>
<div class="el_table_title">品类</div>
</div>
<!-- 表格循环 -->
<div class="el_table_td" v-for="item in AdditionalcategoriesList" :key="item.id">
<div class="el_table_idNumber">{{ item.id }}</div>
<el-select
class="el_Cselect"
v-model="item.Warehousecategory"
filterable
remote
clearable
reserve-keyword
placeholder="请选择品类"
style="width: 240px"
remote-show-suffix
:remote-method="categoriesearch"
@focus="categoriesSearchfocus(item)"
>
<el-option
v-for="items in item.Additionalcategories"
:key="items.value"
:label="items.label"
:value="items.value"
/>
</el-select>
<div class="el_table_operation">
<span
@click="categoriesplus(item.id)"
v-if="item.plus"
class="el_table_operation_span_b"
>+</span
>
<span
@click="categoriesduce(item.id)"
v-if="item.reduce"
class="el_table_operation_span_a"
>-</span
>
</div>
</div>
<!-- 使用table标签创建表格 -->
<table class="styled-table">
<thead>
<tr>
<th style="width: 30px; text-align: center">序号</th>
<th>品类</th>
<th style="width: 104px">操作</th>
</tr>
</thead>
<tbody>
<!-- 表格循环 -->
<tr v-for="item in AdditionalcategoriesList" :key="item.id">
<!-- 序号 -->
<td style="text-align: center">{{ item.id }}</td>
<!-- 选择的品类 -->
<td>
<el-select
class="el_Cselect"
v-model="item.Warehousecategory"
filterable
remote
clearable
reserve-keyword
placeholder="请选择品类"
style="width: 100%"
remote-show-suffix
:remote-method="categoriesearch"
@focus="categoriesSearchfocus(item)"
>
<!-- 品类列表 -->
<el-option
v-for="items in item.Additionalcategories"
:key="items.value"
:label="items.label"
:value="items.value"
/>
</el-select>
</td>
<td style="line-height: 16px">
<span @click="categoriesplus(item.id)" v-if="item.plus" class="el_btn_a">
<el-icon style="font-size: 12px; color: #409eff; margin-right: 3px"
><CirclePlus /></el-icon
>新增
</span>
<span @click="categoriesduce(item.id)" v-if="item.reduce" class="el_btn_b">
<el-icon style="font-size: 12px; color: #f00; margin-right: 3px"
><Delete /></el-icon
>删除
</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 最低计费 -->
<div class="el_Storage el_Minimumbilling">
<span class="el_table_title">最低计费</span>
<span>最低计费</span>
<div class="el_Storage">
<div class="el_Minimumbillingbox">
<!-- 是否最低计费 -->
<div class="el_Minimumbilling_a">
<div
class="el_Minimumbilling_a"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span">是否最低计费</span>
<el-radio-group v-model="form.dispatchIsMinCost" class="el_Cselect">
<el-radio-group v-model="form.dispatchIsMinCost" class="el_Cselect el_fx">
<el-radio
@change="MinimumChange"
v-for="item in Minimumbilling"
@ -294,53 +358,64 @@
</el-radio-group>
</div>
<!-- 最低计费方式 -->
<div class="el_Minimumbilling_b" v-if="form.dispatchIsMinCost">
<!-- v-if="form.dispatchIsMinCost" -->
<div
v-if="form.dispatchIsMinCost"
class="el_Minimumbilling_b"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span">最低计费方式</span>
<el-radio-group v-model="form.dispatchMinCostMode" class="el_Cselect">
<el-radio-group v-model="form.dispatchMinCostMode" class="el_Cselect el_fx">
<el-radio v-for="item in Billingmethod" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 最低计费类型 -->
<!-- v-if="form.dispatchIsMinCost" -->
<div class="el_Storage" v-if="form.dispatchIsMinCost" style="width: 320px; margin-right: 10px; display: flex; flex-direction: column">
<span class="el_table_span">最低计费类型</span>
<el-radio-group v-model="form.dispatchMinCostType" class="el_Cselect el_fx">
<el-radio v-for="item in chargetypeSelect" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否向上判断 -->
<!-- v-if="!form.dispatchIsMinCost" -->
<div
v-if="!form.dispatchIsMinCost"
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span">是否向上判断</span>
<el-radio-group v-model="form.dispatchIsUpwardJudgment" class="el_Cselect el_fx">
<el-radio v-for="item in Upwardjudgment" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
</div>
</div>
<!-- 最低计费类型 -->
<div class="el_Storage" v-if="form.dispatchIsMinCost">
<span class="el_table_span">最低计费类型</span>
<el-radio-group v-model="form.dispatchMinCostType" class="el_Cselect">
<el-radio v-for="item in chargetypeSelect" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否向上判断 -->
<div class="el_Storage" v-if="!form.dispatchIsMinCost">
<span class="el_table_span">是否向上判断</span>
<el-radio-group v-model="form.dispatchIsUpwardJudgment" class="el_Cselect">
<el-radio v-for="item in Upwardjudgment" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
<!-- 操作按钮 -->
<div class="flex-c-c">
<!-- <el-button type="primary" icon="Refresh" @click="resetFormData">重置</el-button> -->
<el-button type="primary" icon="Refresh" @click="resetFormData">重置</el-button>
<el-button type="primary" icon="Position" @click="handleSubmit">保存</el-button>
</div>
</div>
</template>
<script setup>
import { ref, defineEmits, defineComponent } from 'vue';
import { ElMessage } from 'element-plus';
import { ElMessage,ElMessageBox } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { deepClone } from '@/utils/util';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { submit } from '@/api/base/region';
import { $_priceTemplate, $_putpriceTemplate } from '@/api/financialsector/index'; //
const $route = useRoute(); //
const emit = defineEmits(['request-data']);
@ -353,6 +428,7 @@ const props = defineProps({
});
console.log(props, '来自父页面参数');
//
const pageLoading=ref(false)
const formCopy = ref(null); //
const form = ref({
dispatchServiceType: '', //
@ -368,10 +444,12 @@ const form = ref({
dispatchMinCostMode: null, //
dispatchMinCostType: 1, //
dispatchIsUpwardJudgment: 0, //
WarehousebillingmodeTitle:'',//
});
const SelectOpin = ref(null); //
//
const Upwardjudgment = ref([]);
const CommercialcialCopy=ref([]);//
//
const chargetypeSelect = ref([]);
//
@ -428,7 +506,7 @@ const Leftoverparts = ref([]);
const chargetype = val => {
console.log(val);
if (val) {
WarehousebillingmodeTitle.value = Warehousebillingmode.value.find(
form.value.WarehousebillingmodeTitle = Warehousebillingmode.value.find(
res => res.value == val
).label;
}
@ -492,12 +570,13 @@ const MinimumChange = val => {
};
//
const isChecked = value => {
if (!WarehousebillingmodeTitle.value) {
if (!form.value.WarehousebillingmodeTitle) {
ElMessage({
message: '请先选择仓储计费类型',
type: 'warning',
});
form.value.dispatchPricingType = []; //
value.check = false; //
return;
}
@ -505,6 +584,8 @@ const isChecked = value => {
// ,
if (value.value == '1' || value.value == '2' || value.value == '3') {
let data = ServiceList.value.find(res => res.label == value.label);
console.log(data,'data===>');
console.log( Commercialcial.value,'要处理的数据');
Commercialcial.value.find(res => res.title == data.label).state = !Commercialcial.value.find(
res => res.title == data.label
).state;
@ -670,8 +751,12 @@ function updateDictionary(targetArray, dictionaryType) {
Commercialcial.value.push({
...data,
});
});
CommercialcialCopy.value=deepClone(Commercialcial.value)
}
console.log(form.value, '服务类型');
//
if (dictionaryType == 'price_yes_no') {
Leftoverparts.value = { ...Distinguishcategories.value }; //
@ -705,7 +790,7 @@ function updateDictionary(targetArray, dictionaryType) {
console.log(categoriesState.value, '是否区分品类');
}
//
WarehousebillingmodeTitle.value = Warehousebillingmode.value.find(
form.value.WarehousebillingmodeTitle = Warehousebillingmode.value.find(
res => res.value == form.value.dispatchServiceType
).label;
StateDelivery.value = true; //
@ -900,11 +985,34 @@ const categoriesearch = goodsName => {
}
});
};
const clink=()=>{
if(ServiceList.value.length)
ServiceList.value.forEach(res=>res.check=false)
}
/** 重置数据 */
const resetFormData = () => {
console.log( CommercialcialCopy.value);
ElMessageBox.confirm('是否重置数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
pageLoading.value = true;
clink()
Commercialcial.value = deepClone(CommercialcialCopy.value)
form.value = deepClone(formCopy.value);
setTimeout(() => {
pageLoading.value = false;
}, 300);
});
};
//
const onLoad = () => {
const onLoad = async() => {
await updateDictionary(ServiceList.value, 'dispatch_pricing_type'); //
formCopy.value =await deepClone(form.value);
updateDictionary(Warehousebillingmode.value, 'dispatch_type'); //
updateDictionary(ServiceList.value, 'dispatch_pricing_type'); //
updateDictionary(Distinguishcategories.value, 'price_yes_no'); //
updateDictionary(Billingmethod.value, 'min_cost_way'); //
updateDictionary(chargetypeSelect.value, 'min_cost_type'); //
@ -975,7 +1083,19 @@ const handleSubmit = async () => {
}
//
console.log(categoriesState.value, 'categoriesState.value');
if (categoriesState.value) {
if (form.value.dispatchIsByCategory){
if(!form.value.dispatchPricingType.find(res=>res.value ==1)){
Submit.dispatchPieceCategory=''
}
if(!form.value.dispatchPricingType.find(res=>res.value ==2)){
Submit.dispatchWeightCategory=''
}
if(!form.value.dispatchPricingType.find(res=>res.value ==3)){
Submit.dispatchCubeCategory=''
}
for (const res of form.value.dispatchPricingType) {
let shouldReturn = false;
switch (res) {
@ -1005,12 +1125,26 @@ const handleSubmit = async () => {
}
if (shouldReturn) return; // 退
}
}else{
Submit.dispatchPieceCategory=''
Submit.dispatchWeightCategory=''
Submit.dispatchCubeCategory=''
}
//
if (form.value.dispatchIsCategorySubjoin) {
Submit.dispatchSubjoinCategory = AdditionalcategoriesList.value
.map(res => res.Warehousecategory)
.join(','); //
}else{
if(Submit.dispatchSubjoinCategory){
Submit.dispatchSubjoinCategory=''
}
}
console.log(Submit, '要提交的数据');
@ -1102,6 +1236,7 @@ const handleSubmit = async () => {
display: inline-block;
width: 160px;
margin-bottom: 10px;
height: 16px;
}
.Storage-cont {
/* 禁止双击选中文本 */
@ -1111,16 +1246,16 @@ const handleSubmit = async () => {
user-select: none; /* Standard syntax */
display: flex;
flex-direction: column;
width: 382px;
width: 390px;
.el_Storagecategory {
border: 1px solid #ccc;
.el_table_span {
display: flex;
width: 100%;
background-color: #ebeef5;
padding: 0 4px;
border-bottom: 1px solid #ccc;
box-sizing: border-box;
// justify-content: space-between;
justify-content: space-around;
}
.el_table_border {
height: 30px;
@ -1128,34 +1263,53 @@ const handleSubmit = async () => {
align-items: center;
}
.el_table_id {
width: 55px;
font-weight: 600;
width: 14%;
color: #606266;
border-right: 1px solid #ccc;
margin-right: 4px;
// border-right: 1px solid #ccc;
font-weight: 500;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.el_table_title {
font-weight: 600;
color: #606266;
font-weight: 500;
border-right: 1px solid #ccc;
display: flex;
width: 207px;
width: 55%;
height: 100%;
justify-content: center;
align-items: center;
position: relative;
}
.el_table_title::before {
content: '';
width: 0.5px;
height: 100%;
background-color: #ccc;
position: absolute;
right: 0;
top: 0;
}
.el_table_id::before {
content: '';
width: 0.5px;
height: 100%;
background-color: #ccc;
position: absolute;
right: 0;
top: 0;
}
.el_table_operation {
color: #606266;
width: 134px;
display: flex;
font-weight: 500;
justify-content: flex-start;
height: 100%;
width: 30%;
align-items: center;
justify-content: center;
span {
padding-left: 3px;
}
@ -1203,7 +1357,7 @@ const handleSubmit = async () => {
}
}
.el_table_idNumber {
width: 50px;
width: 14%;
text-align: center;
font-size: 16px;
font-weight: 400;
@ -1254,14 +1408,10 @@ const handleSubmit = async () => {
}
}
.el_Minimumbilling {
.el_table_title {
font-weight: bold;
}
.el_Minimumbillingbox {
display: flex;
}
.el_Minimumbilling_b {
margin-left: 70px;
}
}
.el_flex {
@ -1272,27 +1422,82 @@ const handleSubmit = async () => {
margin-left: 0;
}
}
.el_row_f1 {
:deep(.el_row_f1) {
display: flex;
align-items: center;
align-items: flex-start;
.el-select {
}
.el-select__tags {
width: 100%;
}
}
.el_fx {
background-color: #f6f6f6;
padding: 0 6px;
border-radius: 4px;
}
.el_fj{
.el_fj {
display: flex;
.el_Storage{
width: 280px;
align-items: center;
.el_Storage {
display: flex;
flex-direction: column;
width:400px;
margin-right: 2%;
.el_Cselect{
background-color:#f6f6f6;
width:100%;
width: 400px;
margin-right: 22px;
.el_Cselect {
background-color: #f6f6f6;
width: 100%;
padding: 0 4px;
}
}
}
.el_table_select {
width: 55%;
display: flex;
align-items: center;
justify-content: center;
}
//
.el_Commercial_ercial {
.styled-table {
width: 100%;
border-collapse: collapse;
}
.tabBox {
width: 24%;
margin-right: 20px;
}
.styled-table thead tr {
text-align: left;
color: #000;
background-color: #f5f8fa;
}
.styled-table th,
.styled-table td {
padding: 3px 10px;
border: 1px solid #ddd;
font-size: 16px;
font-weight: 400;
}
.styled-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
}
.el_btn_a {
color: #409eff;
}
.el_btn_b {
color: #ff0000;
}
}
</style>

8
src/views/financialsector/Financialse/FinancialTrunkLine.vue

@ -177,6 +177,8 @@ import { ElMessage, ElMessageBox } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict';
import { $_priceTemplate, $_putpriceTemplate } from '@/api/financialsector/index'; //
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { useRoute } from 'vue-router';
const $route = useRoute(); //
const emit = defineEmits(['request-data']);
defineComponent({
emits: ['request-data'],
@ -638,11 +640,11 @@ const handleSubmit = async () => {
delete submitData.billTemplateDetail; //
console.log(submitData, '处理好的参数');
if (props.templateData.code) {
if (props.templateData.code || $route.query.id) {
let data = {
checkType: '2',
...submitData, //
id: props.templateData.code, //
...submitData, //
checkType: '2',
};
//
$_putpriceTemplate(data).then(res => {

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

@ -1,5 +1,5 @@
<template>
<div class="content_max">
<div class="content_max" v-loading='pageLoading'>
<div>
<!-- 仓储计费类型 -->
<div class="el_Storage el_flex">
@ -246,9 +246,11 @@
</div>
</div>
</div>
<div class="el_submit">
<el-button type="primary" @click="Submit">保存</el-button>
</div>
<!-- 操作按钮 -->
<div class="flex-c-c">
<el-button type="primary" icon="Refresh" @click="resetFormData">重置</el-button>
<el-button type="primary" icon="Position" @click="Submit">保存</el-button>
</div>
</div>
</template>
@ -257,9 +259,12 @@ import { ref } from 'vue';
import { defineProps, defineEmits ,defineComponent} from 'vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { $_priceTemplate, $_basicdataBrande,$_putpriceTemplate } from '@/api/financialsector/index'; //
import { ElMessage } from 'element-plus';
import { ElMessage ,ElMessageBox } from 'element-plus';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { deepClone } from '@/utils/util';
import { useRoute } from 'vue-router';
const pageLoading=ref(false);//
const formCopy=ref({});//
const SelectOpin = ref(null); //
const $route = useRoute(); //
// ()
@ -330,17 +335,6 @@ const Warehousebillingmode = ref([]);
const CalculationBasis = ref([]);
//
const Distinguishcategories = ref([]);
//
const Warehousecategory = ref([
{
label: '衣柜',
value: '1',
},
{
label: '橱柜',
value: '2',
},
]);
//
const StoragecategoryList = ref([
{
@ -363,17 +357,6 @@ const AdditionalcategoriesList = ref([
Additionalcategories: [],
},
]);
//
const Additionalcategories = ref([
{
label: '衣柜',
value: '1',
},
{
label: '橱柜',
value: '2',
},
]);
//
const Surchargepricingunit = ref([]);
//
@ -476,8 +459,27 @@ function updateDictionary(targetArray, dictionaryType) {
.catch(() => {})
.finally(() => {});
}
/** 重置数据 */
const resetFormData = () => {
ElMessageBox.confirm('是否重置数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
pageLoading.value = true;
form.value = deepClone(formCopy.value);
setTimeout(() => {
pageLoading.value = false;
}, 300);
});
};
//
const onLoad = async() => {
formCopy.value = deepClone(form.value);
updateDictionary(Storagebillingtype.value, 'warehouse_pricing_type'); //
updateDictionary(Warehousebillingmode.value, 'warehouse_pricing_mode'); //
updateDictionary(CalculationBasis.value, 'warehouse_calculation_basis'); //
@ -573,6 +575,11 @@ const Submit = async () => {
.map(res => res.warehousePieceCategory)
.join(',');
}
}else{
if(form.value.warehousePieceCategory){
delete form.value.warehousePieceCategory
}
}
//
if (SurchargeDisplay.value) {
@ -590,6 +597,10 @@ const Submit = async () => {
.map(res => res.warehousePieceCategory)
.join(',');
}
}else{
if(form.value.warehouseSubjoinCategory){
form.value.warehouseSubjoinCategory=''
}
}
console.log(form.value, '要提交的参数');

Loading…
Cancel
Save