You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

165 lines
3.6 KiB

<template>
<div class="content_box">
<div class="header">
<!-- 模板名称 -->
<div class="el_Template">
<span class="name">模板名称</span>
<el-input v-model="form.TemplateName" style="width: 240px" placeholder="请输入模板名称" />
</div>
<!-- 服务类型 -->
<div class="el_Service">
<span class="name">服务类型</span>
<el-select
v-model="form.ServiceType"
filterable
placeholder="请选择服务类型"
:popper-append-to-body="false"
style="width: 340px"
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="content">
<el-tabs type="border-card">
<template v-for="item in ServiceList" :key="item.label">
<el-tab-pane v-if="item.state" :label="item.label" >
<span v-if="item.label == '提货'">提货</span>
<span v-if="item.label == '干线'">干线</span>
<span v-if="item.label == '仓储'"><FinancialWarehousing :templateData="templateInfo"/></span>
<span v-if="item.label == '配送'">配送</span>
<span v-if="item.label == '安装'">安装</span>
</el-tab-pane>
</template>
</el-tabs>
</div>
</div>
</template>
<script setup>
import { ref, defineAsyncComponent } from 'vue';
const FinancialWarehousing = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialWarehousing.vue')
);
const form = ref({});
const tabNum=ref('干线')
const templateInfo=ref({
name:'参数'
})
const ServiceList = ref([
{
label: '提货',
value: '1',
state: false,
check: false,
},
{
label: '干线',
value: '2',
state: false,
check: false,
},
{
label: '仓储',
value: '3',
state: false,
check: false,
},
{
label: '配送',
value: '4',
state: false,
check: false,
},
{
label: '安装',
value: '5',
state: false,
check: false,
},
]);
// 点击菜单
const isChecked = val => {
console.log(val,'点击的');
val.state=!val.state
};
// 点击移除
const removeTag = value => {
ServiceList.value.find(res => res.value == value).check = false;
ServiceList.value.find(res => res.value == value).state = false;
};
</script>
<style scoped lang="scss">
.content_box {
width: 100%;
height: 100%;
}
.header {
border-bottom: 1px solid #ccc;
padding: 10px;
box-shadow: -1px -1px 3px;
.el_Template {
display: flex;
align-items: center;
.name {
font-size: 16px;
margin-right: 10px;
}
}
display: flex;
.el_Service {
margin-left: 30px;
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;
}
.content {
margin-top: 6px;
}
</style>