qb 1 year ago
parent
commit
1f719f0452
  1. 22
      src/router/views/index.js
  2. 14
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  3. 10
      src/views/financialsector/FinanceHome.vue
  4. 259
      src/views/financialsector/Financialse/FinancialDelivery.vue

22
src/router/views/index.js

@ -1489,6 +1489,7 @@ export default [
},
],
},
{
path: '/financialsector/Financialse/FinancialWarehousing',
component: Layout,
@ -1500,7 +1501,7 @@ export default [
keepAlive: false,
},
path: '/financialsector/Financialse/FinancialWarehousing',
name: '新增模板',
name: '仓储模板',
component: () => import('@/views/financialsector/Financialse/FinancialWarehousing.vue'),
},
{
@ -1514,6 +1515,25 @@ export default [
},
],
},
{
path: '/financialsector/Financialse/FinancialDelivery',
component: Layout,
redirect: '/financialsector/Financialse/FinancialDelivery',
children: [
{
meta: {
i18n: 'dict',
keepAlive: false,
},
path: '/financialsector/Financialse/FinancialDelivery',
name: '配送模板',
component: () => import('@/views/financialsector/Financialse/FinancialDelivery.vue'),
},
],
},
{
path: '/financialsector/FinanceHome',
component: Layout,

14
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -1479,7 +1479,8 @@ const menuData = ref([
},
]);
//
const newMenuData = deepClone(menuData.value.slice(0, menuData.value.length - 1));
const newMenuData =ref([])
newMenuData.value=deepClone(menuData.value.slice(0, menuData.value.length - 1));
//
const wrap = ref([
{
@ -1847,6 +1848,11 @@ const AddInfo = () => {
// });
// return;
// }
newMenuData.value.forEach(res=>{
res.values=''
})
parameter.value = {};//
dataTmp.value = [];
console.log('提交前的参数', dataInfo.value);
console.log('提交前前临时存储', dataTmp.value);
@ -1958,7 +1964,7 @@ const submit = () => {
//
if (RouteId.value) {
if (!dataTmp.value.length) {
if (!dataTmp.value.length && wrapLoading.value) {
ElMessageBox.confirm('当前没有勾选包件,是否移除当前订单?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
@ -1996,7 +2002,7 @@ const submit = () => {
console.log(dataInfo.value, '所有订单信息');
}
} else {
if (!dataTmp.value.length) {
if (!dataTmp.value.length && wrapLoading.value) {
ElMessageBox.confirm('当前没有勾选包件,是否移除当前订单?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
@ -2895,7 +2901,6 @@ const handleBack = () => {
//
const SubmitCommercial = async () => {
let code = null;
try {
//kind
@ -2991,6 +2996,7 @@ DataSubmitCopy.value= deepCopy(DataSubmit.value);
dataInfo.value=[]
clInput.value=''
sjInput.value=''
})
.catch(() => {
handleBack();

10
src/views/financialsector/FinanceHome.vue

@ -43,6 +43,8 @@
><FinancialWarehousing :templateData="templateInfo"
/></span>
<span v-if="item.label == '配送'">配送</span>
<span v-if="item.label == '仓储'"><FinancialWarehousing :templateData="templateInfo"/></span>
<span v-if="item.label == '配送'"><FinancialDelivery/></span>
<span v-if="item.label == '安装'">安装</span>
</el-tab-pane>
</template>
@ -53,13 +55,15 @@
<script setup>
import { ref, defineAsyncComponent } from 'vue';
//
const FinancialWarehousing = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialWarehousing.vue')
);
const FinancialBill = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialBill.vue')
const FinancialBill = defineAsyncComponent(() => import('@/views/financialsector/Financialse/FinancialBill.vue'))
//
const FinancialDelivery = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialDelivery.vue')
);
const form = ref({});
const tabNum = ref('干线');

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

@ -0,0 +1,259 @@
<template>
<div class="content_max">
<!-- 配送服务类型 -->
<div class="el_Storage">
<span class="el_table_span">仓储计费类型</span>
<el-select
class="el_Cselect"
v-model="form.Warehousebillingmode"
filterable
clearable
placeholder="选择计费类型"
style="width: 240px"
>
<el-option
v-for="item in Warehousebillingmode"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
<!-- 配送计费模式 -->
<div class="el_select_check">
<div class="el_Storage el_Service">
<span class="el_table_span name">服务类型</span>
<el-select
v-model="form.ServiceType"
filterable
placeholder="请选择服务类型"
:popper-append-to-body="false"
style="width: 660px"
multiple
@remove-tag="removeTag"
>
<el-option
v-for="item in ServiceList"
:key="item.value"
:label="item.label"
:value="item.value"
>
<el-checkbox v-model="item.check" @change="isChecked(item)">
{{ item.label }}
</el-checkbox>
</el-option>
</el-select>
</div>
</div>
<!-- 是否区分品类 -->
<div class="el_Storage">
<span class="el_table_span">是否区分品类</span>
<el-radio-group v-model="form.CalculationBasis" class="el_Cselect">
<el-radio v-for="item in CalculationBasis" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
const form = ref({}); //
//
const Warehousebillingmode = ref([
{ label: '市配', value: '1' },
{ label: '商配', value: '2' },
]);
//
const ServiceList = ref([
{
label: '按计件计费',
value: '1',
check: false,
},
{
label: '按重量计费',
value: '2',
check: false,
},
{
label: '按方计费',
value: '3',
check: false,
},
{
label: '按整车计费',
value: '4',
state: false,
check: false,
},
{
label: '按点位计费',
value: '5',
check: false,
},
{
label: '按吨计费',
value: '6',
check: false,
},
{
label: '按公里计费',
value: '7',
check: false,
},
]);
//
const Distinguishcategories = ref([
{label: '是', value: '1'},
{label: '否', value: '0'},
])
//
const isChecked = val => {
console.log(val, '点击的');
};
//
const removeTag = value => {
ServiceList.value.find(res => res.value == value).check = false;
};
</script>
<style scoped lang="scss">
.content_max {
padding: 10px;
}
.el_Service {
display: flex;
align-items: center;
.name {
margin-right: 10px;
}
.el-checkbox {
width: 100% !important;
padding: 0 30px;
.el-checkbox__label {
margin-left: 20px;
}
}
.name {
font-size: 16px;
}
}
.el-checkbox {
width: 100% !important;
padding-left: 10px;
box-sizing: border-box;
.el-checkbox__label {
margin-left: 20px;
}
}
.el-select-dropdown__item {
padding: 0;
}
.el-select-dropdown__item::after {
content: '';
display: none;
}
.el_Storage {
margin-bottom: 30px;
.el_Cselect {
margin-left: 10px;
}
.el_table_span {
font-size: 16px;
font-weight: 500;
display: inline-block;
width: 160px;
}
.Storage-cont {
/* 禁止双击选中文本 */
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE 10+/Edge */
user-select: none; /* Standard syntax */
display: flex;
.el_Storagecategory {
border: 1px solid #ccc;
.el_table_span {
display: flex;
width: 100%;
background-color: #ebeef5;
padding: 4px;
box-sizing: border-box;
}
.el_table_id {
width: 62px;
font-weight: 600;
color: #606266;
}
.el_table_title {
font-weight: 600;
color: #606266;
}
.el_table_td {
display: flex;
height: 40px;
align-items: center;
border-bottom: 1px solid #ccc;
position: relative;
.el_table_operation {
width: 70px;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
position: absolute;
right: -80px;
.el_table_operation_span_a,
.el_table_operation_span_b {
font-size: 20px;
font-weight: bold;
width: 40%;
border: 2px solid #f00;
color: #f00;
height: 70%;
border-radius: 6px;
display: block;
line-height: 23px;
text-align: center;
cursor: pointer;
}
.el_table_operation_span_b {
border: 2px solid #0d83b7;
color: #0d83b7;
}
.el_table_operation_span_a:hover {
background-color: #f00;
color: #ccc;
}
.el_table_operation_span_b:hover {
background-color: #0d83b7;
color: #ccc;
}
}
}
.el_table_idNumber {
width: 50px;
text-align: center;
font-size: 16px;
font-weight: 400;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
border-right: 1px solid #ccc;
}
:deep(.el-input__wrapper) {
box-shadow: none;
}
}
}
}
</style>
Loading…
Cancel
Save