|
|
|
@ -1,13 +1,17 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
<el-row v-if="!search"> |
|
|
|
|
<div v-h5uShow="!search"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query" class='fr-fm'> |
|
|
|
|
<div> |
|
|
|
|
<el-form :inline="true" :model="query" class="header_search"> |
|
|
|
|
<el-form-item label="始发地地址:"> |
|
|
|
|
<!-- <el-input v-model="query.province" placeholder="请输入省"></el-input>--> |
|
|
|
|
<el-cascader :options="optioner" v-model="query.province" :props="{ checkStrictly: true }" popper-class='ca'> |
|
|
|
|
<el-cascader |
|
|
|
|
:options="optioner" |
|
|
|
|
v-model="query.province" |
|
|
|
|
:props="{ checkStrictly: true }" |
|
|
|
|
popper-class="ca" |
|
|
|
|
class="w100" |
|
|
|
|
> |
|
|
|
|
<template #default="{ node, data }"> |
|
|
|
|
<span>{{ data.label }}</span> |
|
|
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span> |
|
|
|
@ -15,25 +19,24 @@
|
|
|
|
|
</el-cascader> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="目的地地址:"> |
|
|
|
|
<!-- <el-input v-model="query.province" placeholder="请输入省"></el-input>--> |
|
|
|
|
<el-cascader :options="optioner" v-model="query.provinceEnd" :props="{ checkStrictly: true }" popper-class='ca'> |
|
|
|
|
<el-cascader |
|
|
|
|
:options="optioner" |
|
|
|
|
v-model="query.provinceEnd" |
|
|
|
|
:props="{ checkStrictly: true }" |
|
|
|
|
popper-class="ca" |
|
|
|
|
class="w100" |
|
|
|
|
> |
|
|
|
|
<template #default="{ node, data }"> |
|
|
|
|
<span>{{ data.label }}</span> |
|
|
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span> |
|
|
|
|
</template> |
|
|
|
|
</el-cascader> |
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- <el-form-item label="市:">--> |
|
|
|
|
<!-- <el-input v-model="query.city" placeholder="请输入市"></el-input>--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
<!-- <el-form-item label="区/县:">--> |
|
|
|
|
<!-- <el-input v-model="query.district" placeholder="请输入区/县"></el-input>--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
|
|
|
|
|
<el-form-item label="品牌:"> |
|
|
|
|
<el-input v-model="query.brand" placeholder="请输入品牌"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="费用类型:"> |
|
|
|
|
<!-- <el-input v-model="query.freightMark" placeholder="请输入费用标识"></el-input>--> |
|
|
|
|
<el-select v-model="query.freightMark" class="m-2" placeholder="请选择客户类型"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in clientType" |
|
|
|
@ -46,23 +49,22 @@
|
|
|
|
|
<el-form-item label="末端仓:"> |
|
|
|
|
<el-input v-model="query.goalGranary" placeholder="请输入末端仓"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- <el-form-item label="状态:">--> |
|
|
|
|
<!-- <el-input v-model="query.condition" placeholder="请输入状态"></el-input>--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item class='el-btn'> |
|
|
|
|
<el-form-item class="el-btn"> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
|
|
|
|
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
</el-row> |
|
|
|
|
</div> |
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__header"> |
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">新 增</el-button> |
|
|
|
|
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain>删 除</el-button> |
|
|
|
|
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain |
|
|
|
|
>删 除</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
@ -84,22 +86,39 @@
|
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
|
|
|
|
|
<el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope.row)">查看</el-text> |
|
|
|
|
<el-text type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope.row)">编辑</el-text> |
|
|
|
|
<el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)">删除</el-text> |
|
|
|
|
<el-text type="primary" text icon="el-icon-setting" @click="handleDrawer(slotProps.scope.row)">费用明细</el-text> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-view" |
|
|
|
|
@click="handleView(slotProps.scope.row)" |
|
|
|
|
>查看</el-text |
|
|
|
|
> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="handleEdit(slotProps.scope.row)" |
|
|
|
|
>编辑</el-text |
|
|
|
|
> |
|
|
|
|
<el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)" |
|
|
|
|
>删除</el-text |
|
|
|
|
> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-setting" |
|
|
|
|
@click="handleDrawer(slotProps.scope.row)" |
|
|
|
|
>费用明细</el-text |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
|
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__pagination flex-c-sb" style="width:100%;"> |
|
|
|
|
<div style="font-size: 14px;"> |
|
|
|
|
勾选数量: {{ selectionList.length }} |
|
|
|
|
</div> |
|
|
|
|
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
|
|
|
|
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-pagination align="right" |
|
|
|
|
<el-pagination |
|
|
|
|
align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeChange" |
|
|
|
|
@current-change="currentChange" |
|
|
|
@ -107,21 +126,30 @@
|
|
|
|
|
:page-sizes="[30, 50, 80, 120]" |
|
|
|
|
:page-size="page.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="page.total"> |
|
|
|
|
:total="page.total" |
|
|
|
|
> |
|
|
|
|
</el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
<!-- 表单模块 --> |
|
|
|
|
<el-dialog :title="title" |
|
|
|
|
<el-dialog |
|
|
|
|
:title="title" |
|
|
|
|
v-model="box" |
|
|
|
|
width="35%" |
|
|
|
|
:before-close="beforeClose" |
|
|
|
|
append-to-body> |
|
|
|
|
append-to-body |
|
|
|
|
> |
|
|
|
|
<el-form :disabled="view" ref="form" :model="form" label-width="120px" :rules="rules"> |
|
|
|
|
<!-- 表单字段 --> |
|
|
|
|
<el-form-item label="始发仓地址" prop="province"> |
|
|
|
|
<!-- <el-input v-model="form.province" placeholder="请输入省"/>--> |
|
|
|
|
<el-cascader :options="optioner" v-model="form.province" style="width: 100%;" :props="{ checkStrictly: true }" popper-class='ca'> |
|
|
|
|
<el-cascader |
|
|
|
|
:options="optioner" |
|
|
|
|
v-model="form.province" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:props="{ checkStrictly: true }" |
|
|
|
|
popper-class="ca" |
|
|
|
|
> |
|
|
|
|
<template #default="{ node, data }"> |
|
|
|
|
<span>{{ data.label }}</span> |
|
|
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span> |
|
|
|
@ -130,7 +158,8 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="始发仓" prop="goalGranary"> |
|
|
|
|
<!-- <el-input v-model="form.goalGranary" placeholder="请输入末端仓"/>--> |
|
|
|
|
<el-select style="width: 100%" |
|
|
|
|
<el-select |
|
|
|
|
style="width: 100%" |
|
|
|
|
v-model="form.beginGranary" |
|
|
|
|
filterable |
|
|
|
|
remote |
|
|
|
@ -146,13 +175,16 @@
|
|
|
|
|
:value="item.id" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="目的仓地址" prop="province"> |
|
|
|
|
<!-- <el-input v-model="form.province" placeholder="请输入省"/>--> |
|
|
|
|
<el-cascader :options="optioner" v-model="form.provinceEnd" style="width: 100%;" :props="{ checkStrictly: true }" popper-class='ca'> |
|
|
|
|
<el-cascader |
|
|
|
|
:options="optioner" |
|
|
|
|
v-model="form.provinceEnd" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:props="{ checkStrictly: true }" |
|
|
|
|
popper-class="ca" |
|
|
|
|
> |
|
|
|
|
<template #default="{ node, data }"> |
|
|
|
|
<span>{{ data.label }}</span> |
|
|
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span> |
|
|
|
@ -161,7 +193,8 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="目的仓" prop="goalGranary"> |
|
|
|
|
<!-- <el-input v-model="form.goalGranary" placeholder="请输入末端仓"/>--> |
|
|
|
|
<el-select style="width: 100%" |
|
|
|
|
<el-select |
|
|
|
|
style="width: 100%" |
|
|
|
|
v-model="form.goalGranary" |
|
|
|
|
filterable |
|
|
|
|
remote |
|
|
|
@ -177,9 +210,6 @@
|
|
|
|
|
:value="item.id" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- <el-form-item label="市" prop="city">--> |
|
|
|
|
<!-- <el-input v-model="form.city" placeholder="请输入市"/>--> |
|
|
|
@ -189,7 +219,8 @@
|
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
<el-form-item label="品类" prop="brand"> |
|
|
|
|
<!-- <el-input v-model="form.brand" placeholder="请输入品牌"/>--> |
|
|
|
|
<el-select style="width: 100%" |
|
|
|
|
<el-select |
|
|
|
|
style="width: 100%" |
|
|
|
|
v-model="form.brand" |
|
|
|
|
filterable |
|
|
|
|
remote |
|
|
|
@ -205,8 +236,6 @@
|
|
|
|
|
:value="item.id" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="费用类型" prop="freightMark"> |
|
|
|
|
<!-- <el-input v-model="form.freightMark" placeholder="请输入费用标识;1 运费 2 送货费用 3提货费用 4仓库管理费用 5 仓储费用 6装卸费用 7 其他费用 8仓储时间端费用"/>--> |
|
|
|
@ -226,11 +255,15 @@
|
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
>{{ item.dictValue }} |
|
|
|
|
<el-input type="number" v-model="item.remark" placeholder="请输入费用" :disabled = !item.pitch @change="textbox($event,index)"/> |
|
|
|
|
<el-input |
|
|
|
|
type="number" |
|
|
|
|
v-model="item.remark" |
|
|
|
|
placeholder="请输入费用" |
|
|
|
|
:disabled="!item.pitch" |
|
|
|
|
@change="textbox($event, index)" |
|
|
|
|
/> |
|
|
|
|
</el-checkbox> |
|
|
|
|
|
|
|
|
|
</el-checkbox-group> |
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- <el-form-item label="费用" prop="cost">--> |
|
|
|
|
<!--<!– <el-input v-model="form.cost" placeholder="请输入费用1111" v-for="(item,index) in costList" :key="index"/>–>--> |
|
|
|
@ -269,7 +302,9 @@
|
|
|
|
|
<!-- 表单按钮 --> |
|
|
|
|
<template #footer> |
|
|
|
|
<span v-if="!view" class="dialog-footer"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit('form')">提 交</el-button> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit('form')" |
|
|
|
|
>提 交</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="box = false">取 消</el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
@ -280,7 +315,8 @@
|
|
|
|
|
size="40%" |
|
|
|
|
v-model="drawer" |
|
|
|
|
:direction="direction" |
|
|
|
|
:before-close="handleDrawerClose"> |
|
|
|
|
:before-close="handleDrawerClose" |
|
|
|
|
> |
|
|
|
|
<basicdata-cost-correlation :mainId="costCorrelationId"></basicdata-cost-correlation> |
|
|
|
|
</el-drawer> |
|
|
|
|
</div> |
|
|
|
@ -288,18 +324,18 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { getList, getDetail, add, update, remove } from "@/api/basicdata/basicZonePrice"; |
|
|
|
|
import { getListBinName} from "@/api/basicdata/basicdataWarehouse"; |
|
|
|
|
import {getListName} from "@/api/basicdata/basicBrand"; |
|
|
|
|
import option from "@/option/basicdata/basicZonePrice"; |
|
|
|
|
import { mapGetters } from "vuex"; |
|
|
|
|
import { getList, getDetail, add, update, remove } from '@/api/basicdata/basicZonePrice'; |
|
|
|
|
import { getListBinName } from '@/api/basicdata/basicdataWarehouse'; |
|
|
|
|
import { getListName } from '@/api/basicdata/basicBrand'; |
|
|
|
|
import option from '@/option/basicdata/basicZonePrice'; |
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
|
import { getLazyTreeAll } from '@/api/base/region'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import BasicdataCostCorrelation from '@/views/basicdata/brand/basicdataCostCorrelation.vue' |
|
|
|
|
import BasicdataCostCorrelation from '@/views/basicdata/brand/basicdataCostCorrelation.vue'; |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
components: { |
|
|
|
|
BasicdataCostCorrelation |
|
|
|
|
BasicdataCostCorrelation, |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
@ -393,7 +429,7 @@ export default {
|
|
|
|
|
children: 'childrenList', //子元素字段名 |
|
|
|
|
emitPath: false, |
|
|
|
|
checkStrictly: true, |
|
|
|
|
expandTrigger: 'hover' //设置鼠标悬浮展开,如果点击展开的话,会出现点击父节点后选择器直接关闭,不能选择子节点了 |
|
|
|
|
expandTrigger: 'hover', //设置鼠标悬浮展开,如果点击展开的话,会出现点击父节点后选择器直接关闭,不能选择子节点了 |
|
|
|
|
}, |
|
|
|
|
cascaderKey: 1, //防止搜索选项清空数据后出现报错,在加载级联选择器数据的时候+1 |
|
|
|
|
height: 0, |
|
|
|
@ -424,7 +460,7 @@ export default {
|
|
|
|
|
page: { |
|
|
|
|
currentPage: 1, |
|
|
|
|
pageSize: 30, |
|
|
|
|
total: 40 |
|
|
|
|
total: 40, |
|
|
|
|
}, |
|
|
|
|
// 表单数据 |
|
|
|
|
form: {}, |
|
|
|
@ -443,63 +479,48 @@ export default {
|
|
|
|
|
{ required: true, message: '请选择地址', trigger: 'blur' }, |
|
|
|
|
// { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
brand: [ |
|
|
|
|
{ required: true, message: '请选择品牌', trigger: 'change' } |
|
|
|
|
], |
|
|
|
|
freightMark : [ |
|
|
|
|
{ required: true, message: '请选择费用类型', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
cost: [ |
|
|
|
|
{ required: true, message: '请输入费用', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
warehousingTimeStatus: [ |
|
|
|
|
{ required: true, message: '请选择时间段', trigger: 'change' } |
|
|
|
|
], |
|
|
|
|
warehousingTimeCharge: [ |
|
|
|
|
{ required: true, message: '请选择时间段费用', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
goalGranary: [ |
|
|
|
|
{ required: true, message: '请选择末端仓', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
brand: [{ required: true, message: '请选择品牌', trigger: 'change' }], |
|
|
|
|
freightMark: [{ required: true, message: '请选择费用类型', trigger: 'blur' }], |
|
|
|
|
cost: [{ required: true, message: '请输入费用', trigger: 'blur' }], |
|
|
|
|
warehousingTimeStatus: [{ required: true, message: '请选择时间段', trigger: 'change' }], |
|
|
|
|
warehousingTimeCharge: [{ required: true, message: '请选择时间段费用', trigger: 'blur' }], |
|
|
|
|
goalGranary: [{ required: true, message: '请选择末端仓', trigger: 'blur' }], |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
'form.province'() { |
|
|
|
|
if (this.$refs.refHandle) { |
|
|
|
|
this.$refs.refHandle.dropDownVisible = false; //监听值发生变化就关闭它 |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
getLazyTreeAll().then(res => { |
|
|
|
|
if (res.data.success) { |
|
|
|
|
console.log("this.optioner>>>>>>>>>>>>>>"); |
|
|
|
|
console.log('this.optioner>>>>>>>>>>>>>>'); |
|
|
|
|
this.optioner = res.data.data; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
this.init(); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
...mapGetters(["permission"]), |
|
|
|
|
...mapGetters(['permission']), |
|
|
|
|
ids() { |
|
|
|
|
let ids = []; |
|
|
|
|
this.selectionList.forEach(ele => { |
|
|
|
|
ids.push(ele.id); |
|
|
|
|
}); |
|
|
|
|
return ids.join(","); |
|
|
|
|
} |
|
|
|
|
return ids.join(','); |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
//关闭浮层 |
|
|
|
|
hideCascaderInp() { |
|
|
|
|
|
|
|
|
|
this.$refs.cascaderRef.value.togglePopperVisible(false) |
|
|
|
|
|
|
|
|
|
this.$refs.cascaderRef.value.togglePopperVisible(false); |
|
|
|
|
}, |
|
|
|
|
handleDrawerClose() { |
|
|
|
|
this.costCorrelationId = ''; |
|
|
|
@ -510,11 +531,11 @@ export default {
|
|
|
|
|
this.drawer = true; |
|
|
|
|
}, |
|
|
|
|
textWarebox(e, index) { |
|
|
|
|
console.log(e,index) |
|
|
|
|
console.log(e, index); |
|
|
|
|
this.costWraeList[index] = e; |
|
|
|
|
}, |
|
|
|
|
textbox(e, index) { |
|
|
|
|
console.log(e,index) |
|
|
|
|
console.log(e, index); |
|
|
|
|
this.costList[index] = e; |
|
|
|
|
}, |
|
|
|
|
handleCheckedCities(value) { |
|
|
|
@ -563,28 +584,32 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
remoteMethod(query) { |
|
|
|
|
if (query) { |
|
|
|
|
this.loading = true |
|
|
|
|
this.loading = true; |
|
|
|
|
setTimeout(async () => { |
|
|
|
|
this.loading = false; |
|
|
|
|
let list = await getListName(this.page.currentPage, this.page.pageSize, { brandName: query }); |
|
|
|
|
this.optionsr = list.data.data.records.filter((item) => { |
|
|
|
|
return item.brandName.toLowerCase().includes(query.toLowerCase()) |
|
|
|
|
}) |
|
|
|
|
}, 200) |
|
|
|
|
let list = await getListName(this.page.currentPage, this.page.pageSize, { |
|
|
|
|
brandName: query, |
|
|
|
|
}); |
|
|
|
|
this.optionsr = list.data.data.records.filter(item => { |
|
|
|
|
return item.brandName.toLowerCase().includes(query.toLowerCase()); |
|
|
|
|
}); |
|
|
|
|
}, 200); |
|
|
|
|
} else { |
|
|
|
|
this.optionsr = []; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
remoteMethodBin(query) { |
|
|
|
|
if (query) { |
|
|
|
|
this.loading = true |
|
|
|
|
this.loading = true; |
|
|
|
|
setTimeout(async () => { |
|
|
|
|
this.loading = false; |
|
|
|
|
let list = await getListBinName(this.page.currentPage, this.page.pageSize, { name: query }); |
|
|
|
|
this.optionser = list.data.data.records.filter((item) => { |
|
|
|
|
return item.name.toLowerCase().includes(query.toLowerCase()) |
|
|
|
|
}) |
|
|
|
|
}, 200) |
|
|
|
|
let list = await getListBinName(this.page.currentPage, this.page.pageSize, { |
|
|
|
|
name: query, |
|
|
|
|
}); |
|
|
|
|
this.optionser = list.data.data.records.filter(item => { |
|
|
|
|
return item.name.toLowerCase().includes(query.toLowerCase()); |
|
|
|
|
}); |
|
|
|
|
}, 200); |
|
|
|
|
} else { |
|
|
|
|
this.optionser = []; |
|
|
|
|
} |
|
|
|
@ -618,7 +643,10 @@ export default {
|
|
|
|
|
this.pan = false; |
|
|
|
|
// fei = []; |
|
|
|
|
for (let i = 0; i < costListName.length; i++) { |
|
|
|
|
if(!costList){ this.pan = true; return } |
|
|
|
|
if (!costList) { |
|
|
|
|
this.pan = true; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
let zhi = costList[i]; |
|
|
|
|
if (!zhi) { |
|
|
|
|
this.pan = true; |
|
|
|
@ -628,14 +656,13 @@ export default {
|
|
|
|
|
if (it.dictValue == costListName[i]) { |
|
|
|
|
// console.log("进来了",it.dictValue , costListName[i]); |
|
|
|
|
//2.添加 |
|
|
|
|
fei.set(it.dictKey,zhi) |
|
|
|
|
fei.set(it.dictKey, zhi); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleSubmit(from) { |
|
|
|
|
this.$refs[from].validate(async (valid) => { |
|
|
|
|
this.$refs[from].validate(async valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
if (!this.form.id) { |
|
|
|
|
// console.log("提交的数据》》》",this.form); |
|
|
|
@ -650,23 +677,21 @@ export default {
|
|
|
|
|
// // console.log("feishi",feishi); |
|
|
|
|
// this.form.warehousingTimeStatus = undefined; |
|
|
|
|
if (this.pan) { |
|
|
|
|
this.$message.warning("请填写完整已勾选的数据费用"); |
|
|
|
|
return |
|
|
|
|
this.$message.warning('请填写完整已勾选的数据费用'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.form.city = this.form.province[1]; |
|
|
|
|
this.form.district = this.form.province[2]; |
|
|
|
|
this.form.province = this.form.province[0]; |
|
|
|
|
console.log("提交的数据》》》",this.form); |
|
|
|
|
console.log('提交的数据》》》', this.form); |
|
|
|
|
add(this.form).then(() => { |
|
|
|
|
this.box = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
this.form.city = this.form.province[1]; |
|
|
|
|
this.form.district = this.form.province[2]; |
|
|
|
@ -681,14 +706,13 @@ export default {
|
|
|
|
|
this.box = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleAdd() { |
|
|
|
|
// this.title = '新增' |
|
|
|
@ -696,15 +720,13 @@ export default {
|
|
|
|
|
// this.init (); |
|
|
|
|
// this.box = true; |
|
|
|
|
this.$router.push({ |
|
|
|
|
path:"/basicdata/brand/basicZonePriceFrom", |
|
|
|
|
path: '/basicdata/brand/basicZonePriceFrom', |
|
|
|
|
query: { |
|
|
|
|
id: '', |
|
|
|
|
name: '新增', |
|
|
|
|
type: 0 |
|
|
|
|
} |
|
|
|
|
type: 0, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
handleEdit(row) { |
|
|
|
|
// this.title = '编辑' |
|
|
|
@ -722,12 +744,12 @@ export default {
|
|
|
|
|
// this.form.brand = row.brandName; |
|
|
|
|
// }); |
|
|
|
|
this.$router.push({ |
|
|
|
|
path:"/basicdata/brand/basicZonePriceFrom", |
|
|
|
|
path: '/basicdata/brand/basicZonePriceFrom', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '编辑 — ' + row.brandName, |
|
|
|
|
type: 2 |
|
|
|
|
} |
|
|
|
|
type: 2, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleView(row) { |
|
|
|
@ -749,24 +771,23 @@ export default {
|
|
|
|
|
// }); |
|
|
|
|
|
|
|
|
|
this.$router.push({ |
|
|
|
|
path:"/basicdata/brand/basicZonePriceFrom", |
|
|
|
|
path: '/basicdata/brand/basicZonePriceFrom', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '查看 — ' + row.brandName, |
|
|
|
|
type: 1 |
|
|
|
|
} |
|
|
|
|
type: 1, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
handleDelete() { |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning("请选择至少一条数据"); |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.$confirm("确定将选择数据删除?", { |
|
|
|
|
confirmButtonText: "确定", |
|
|
|
|
cancelButtonText: "取消", |
|
|
|
|
type: "warning" |
|
|
|
|
this.$confirm('确定将选择数据删除?', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
return remove(this.ids); |
|
|
|
@ -775,16 +796,16 @@ export default {
|
|
|
|
|
this.selectionClear(); |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
rowDel(row) { |
|
|
|
|
this.$confirm("确定将选择数据删除?", { |
|
|
|
|
confirmButtonText: "确定", |
|
|
|
|
cancelButtonText: "取消", |
|
|
|
|
type: "warning" |
|
|
|
|
this.$confirm('确定将选择数据删除?', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
return remove(row.id); |
|
|
|
@ -792,13 +813,13 @@ export default {
|
|
|
|
|
.then(() => { |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
beforeClose(done) { |
|
|
|
|
done() |
|
|
|
|
done(); |
|
|
|
|
this.form = {}; |
|
|
|
|
this.view = false; |
|
|
|
|
}, |
|
|
|
@ -828,13 +849,13 @@ export default {
|
|
|
|
|
this.clientType.forEach(it => { |
|
|
|
|
data.records.forEach(i => { |
|
|
|
|
if (parseInt(it.dictKey) == parseInt(i.freightMark)) { |
|
|
|
|
i.freightMark = it.dictValue |
|
|
|
|
i.freightMark = it.dictValue; |
|
|
|
|
} |
|
|
|
|
if (i.freightMark == '-1') { |
|
|
|
|
i.freightMark = '无' |
|
|
|
|
i.freightMark = '无'; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
// this.wareType.forEach(it =>{ |
|
|
|
|
// data.records.forEach(i =>{ |
|
|
|
|
// if(parseInt( it.dictKey ) == parseInt(i.warehousingTimeStatus)){ |
|
|
|
@ -847,49 +868,49 @@ export default {
|
|
|
|
|
// }) |
|
|
|
|
this.page.total = data.total; |
|
|
|
|
this.data = data.records; |
|
|
|
|
let dz =""; |
|
|
|
|
let mdz =""; |
|
|
|
|
let dz = ''; |
|
|
|
|
let mdz = ''; |
|
|
|
|
data.records.forEach(it => { |
|
|
|
|
if (!!it.provinceEnd) { |
|
|
|
|
let arrshe = this.optioner.filter((i) => { |
|
|
|
|
let arrshe = this.optioner.filter(i => { |
|
|
|
|
return it.provinceEnd == i.value; |
|
|
|
|
}); |
|
|
|
|
let moshi = arrshe[0].children.filter((i) => { |
|
|
|
|
let moshi = arrshe[0].children.filter(i => { |
|
|
|
|
return it.cityEnd == i.value; |
|
|
|
|
}); |
|
|
|
|
if (!!it.districtEnd) { |
|
|
|
|
let moqu = moshi[0].children.filter((i) => { |
|
|
|
|
let moqu = moshi[0].children.filter(i => { |
|
|
|
|
return it.districtEnd == i.value; |
|
|
|
|
}); |
|
|
|
|
mdz = arrshe[0].label+"/"+moshi[0].label+"/"+moqu[0].label; |
|
|
|
|
mdz = arrshe[0].label + '/' + moshi[0].label + '/' + moqu[0].label; |
|
|
|
|
} else { |
|
|
|
|
mdz = arrshe[0].label+"/"+moshi[0].label |
|
|
|
|
mdz = arrshe[0].label + '/' + moshi[0].label; |
|
|
|
|
} |
|
|
|
|
it.provinceEnd = mdz; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let arrsheng = this.optioner.filter((i) => { |
|
|
|
|
let arrsheng = this.optioner.filter(i => { |
|
|
|
|
return it.province == i.value; |
|
|
|
|
}); |
|
|
|
|
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) ); |
|
|
|
|
let arrshi = arrsheng[0].children.filter((i) => { |
|
|
|
|
let arrshi = arrsheng[0].children.filter(i => { |
|
|
|
|
return it.city == i.value; |
|
|
|
|
}); |
|
|
|
|
if (!!it.district) { |
|
|
|
|
let arrqu = arrshi[0].children.filter((i) => { |
|
|
|
|
let arrqu = arrshi[0].children.filter(i => { |
|
|
|
|
return it.district == i.value; |
|
|
|
|
}); |
|
|
|
|
dz = arrsheng[0].label+"/"+arrshi[0].label+"/"+arrqu[0].label; |
|
|
|
|
dz = arrsheng[0].label + '/' + arrshi[0].label + '/' + arrqu[0].label; |
|
|
|
|
} else { |
|
|
|
|
dz = arrsheng[0].label+"/"+arrshi[0].label; |
|
|
|
|
dz = arrsheng[0].label + '/' + arrshi[0].label; |
|
|
|
|
} |
|
|
|
|
it.province = dz; |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
this.loading = false; |
|
|
|
|
this.selectionClear(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
<style> |
|
|
|
@ -909,10 +930,9 @@ export default {
|
|
|
|
|
.ca .el-radio__input.is-checked .el-radio__inner { |
|
|
|
|
background: transparent; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
</style> |
|
|
|
|
|
|
|
|
|
<style scoped lang='scss'> |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
.fr-fm { |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|