|
@@ -6,7 +6,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="list">
|
|
|
- <template v-for="item in list">
|
|
|
+ <template v-for="item in cusTransfer.list">
|
|
|
<div class="check __hover" @click="switchItemActive(item)">
|
|
|
<div class="__check" :class="{active: item.active}"/>{{item.label}}
|
|
|
</div>
|
|
@@ -48,7 +48,8 @@ export default defineComponent({
|
|
|
},
|
|
|
mapFunc: {
|
|
|
required: true
|
|
|
- }
|
|
|
+ },
|
|
|
+ transfer: {}
|
|
|
},
|
|
|
setup(props, {emit}) {
|
|
|
const store = useStore();
|
|
@@ -56,54 +57,57 @@ export default defineComponent({
|
|
|
const route = useRoute();
|
|
|
const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
|
|
|
const state = reactive({
|
|
|
- list: <any>[
|
|
|
- {
|
|
|
- label: '处置力量',
|
|
|
- active: false,
|
|
|
- children: [
|
|
|
- {label: '海岸警察', value: 'hajc', active: false},
|
|
|
- {label: '缉私警', value: 'jsj', active: false},
|
|
|
- {label: '网格员', value: 'wgy', active: false},
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '危险车辆', value: 'wxcl', active: true
|
|
|
- },
|
|
|
- {
|
|
|
- label: '设备资源',
|
|
|
- active: true,
|
|
|
- children: [
|
|
|
- {label: '公安类设备', value: 'galsb', active: true},
|
|
|
- {label: '社会类设备', value: 'shlsb', active: true},
|
|
|
- {label: '民用类设备', value: 'mylsb', active: true},
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '企业',
|
|
|
- active: false,
|
|
|
- children: [
|
|
|
- {label: '零关税自用进口生产设备', value: 'lgszyjkscsb', active: false},
|
|
|
- {label: '加工增值免关税', value: 'jgzzmgs', active: false},
|
|
|
- {label: '零关税进口原辅料', value: 'lgsjkyfl', active: false},
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '景区', value: 'jq', active: false
|
|
|
- },
|
|
|
- {
|
|
|
- label: '旅馆', value: 'lg', active: false
|
|
|
- },
|
|
|
- {
|
|
|
- label: '出租屋', value: 'czw', active: false
|
|
|
- },
|
|
|
- {
|
|
|
- label: '火车站', value: 'hcz', active: false
|
|
|
- },
|
|
|
- ]
|
|
|
+ transfer: <any>props.transfer,
|
|
|
+ cusTransfer: <any>{
|
|
|
+ list: <any>[
|
|
|
+ {
|
|
|
+ label: '处置力量',
|
|
|
+ active: false,
|
|
|
+ children: [
|
|
|
+ {label: '海岸警察', value: 'hajc', active: false},
|
|
|
+ {label: '缉私警', value: 'jsj', active: false},
|
|
|
+ {label: '网格员', value: 'wgy', active: false},
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '危险车辆', value: 'wxcl', active: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '设备资源',
|
|
|
+ active: true,
|
|
|
+ children: [
|
|
|
+ {label: '公安类设备', value: 'galsb', active: true},
|
|
|
+ {label: '社会类设备', value: 'shlsb', active: true},
|
|
|
+ {label: '民用类设备', value: 'mylsb', active: true},
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '企业',
|
|
|
+ active: false,
|
|
|
+ children: [
|
|
|
+ {label: '零关税自用进口生产设备', value: 'lgszyjkscsb', active: false},
|
|
|
+ {label: '加工增值免关税', value: 'jgzzmgs', active: false},
|
|
|
+ {label: '零关税进口原辅料', value: 'lgsjkyfl', active: false},
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '景区', value: 'jq', active: false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '旅馆', value: 'lg', active: false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '出租屋', value: 'czw', active: false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '火车站', value: 'hcz', active: false
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ }
|
|
|
})
|
|
|
const isSelectAllCpt = computed(() => {
|
|
|
let flag = true
|
|
|
- state.list.forEach(p => {
|
|
|
+ state.cusTransfer.list.forEach(p => {
|
|
|
if (!p.active) {
|
|
|
flag = false
|
|
|
}
|
|
@@ -116,15 +120,16 @@ export default defineComponent({
|
|
|
return flag
|
|
|
})
|
|
|
const switchListActive = (flag) => {
|
|
|
- state.list.forEach(p => {
|
|
|
+ state.cusTransfer.list.forEach(p => {
|
|
|
p.active = flag
|
|
|
p.children?.forEach(s => {
|
|
|
s.active = flag
|
|
|
})
|
|
|
})
|
|
|
+ emit('update:transfer', state.cusTransfer)
|
|
|
}
|
|
|
const switchItemActive = (item) => {
|
|
|
- state.list.forEach(p => {
|
|
|
+ state.cusTransfer.list.forEach(p => {
|
|
|
if (`${p.label}_${p.value}` === `${item.label}_${item.value}`) {
|
|
|
p.active = !p.active
|
|
|
p.children?.forEach(v => {
|
|
@@ -138,8 +143,14 @@ export default defineComponent({
|
|
|
}
|
|
|
})
|
|
|
})
|
|
|
+ emit('update:transfer', state.cusTransfer)
|
|
|
}
|
|
|
onMounted(() => {
|
|
|
+ if (props.transfer) {
|
|
|
+ state.cusTransfer = props.transfer
|
|
|
+ } else {
|
|
|
+ emit('update:transfer', state.cusTransfer)
|
|
|
+ }
|
|
|
})
|
|
|
return {
|
|
|
...toRefs(state),
|