|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
<el-row v-if="!search" style="padding:6px 18px"> |
|
|
|
|
<el-row v-if="!search" style="padding: 6px 18px"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
|
<el-form-item label="客户名称123:"> |
|
|
|
@ -56,7 +56,9 @@
|
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<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"> |
|
|
|
@ -67,30 +69,41 @@
|
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<el-table ref="table" v-loading="loading" |
|
|
|
|
@selection-change="selectionChange" |
|
|
|
|
:data="data" |
|
|
|
|
:height="height" |
|
|
|
|
tooltip-effect="dark" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:border="option.border"> |
|
|
|
|
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column> |
|
|
|
|
<el-table |
|
|
|
|
ref="table" |
|
|
|
|
v-loading="loading" |
|
|
|
|
@selection-change="selectionChange" |
|
|
|
|
:data="data" |
|
|
|
|
:height="height" |
|
|
|
|
tooltip-effect="dark" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:border="option.border" |
|
|
|
|
> |
|
|
|
|
<el-table-column |
|
|
|
|
type="selection" |
|
|
|
|
v-if="option.selection" |
|
|
|
|
width="55" |
|
|
|
|
align="center" |
|
|
|
|
></el-table-column> |
|
|
|
|
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> |
|
|
|
|
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center"> |
|
|
|
|
</el-table-column> |
|
|
|
|
<template v-for="(item,index) in option.column"> |
|
|
|
|
<template v-for="(item, index) in option.column"> |
|
|
|
|
<!-- table字段 --> |
|
|
|
|
<el-table-column v-if="item.hide!==true" |
|
|
|
|
:prop="item.prop" |
|
|
|
|
:label="item.label" |
|
|
|
|
:width="item.width" |
|
|
|
|
show-overflow-tooltip |
|
|
|
|
:key="index" align="center"> |
|
|
|
|
<el-table-column |
|
|
|
|
v-if="item.hide !== true" |
|
|
|
|
:prop="item.prop" |
|
|
|
|
:label="item.label" |
|
|
|
|
:width="item.width" |
|
|
|
|
show-overflow-tooltip |
|
|
|
|
:key="index" |
|
|
|
|
align="center" |
|
|
|
|
> |
|
|
|
|
<!-- <template slot-scope="{item}" v-if="item.prop === 'fileName'">--> |
|
|
|
|
<template #default="{row,$index}" v-if="item.prop === 'fileName'"> |
|
|
|
|
<template #default="{ row, $index }" v-if="item.prop === 'fileName'"> |
|
|
|
|
<el-link target="_blank" @click="downloadLink(row)">{{ row.fileName }}</el-link> |
|
|
|
|
</template> |
|
|
|
|
<template #default="{row,$index}" v-if="item.prop === 'clientType'"> |
|
|
|
|
<template #default="{ row, $index }" v-if="item.prop === 'clientType'"> |
|
|
|
|
<span target="_blank" v-if="row.clientType == '1'">工厂</span> |
|
|
|
|
<span target="_blank" v-if="row.clientType == '2'">商场</span> |
|
|
|
|
<span target="_blank" v-if="row.clientType == '3'">装饰</span> |
|
|
|
@ -98,7 +111,7 @@
|
|
|
|
|
<!-- <span target="_blank" v-else>收货方</span>--> |
|
|
|
|
</template> |
|
|
|
|
<!-- <el-link href="https://element.eleme.io" target="_blank" v-if="item.prop === 'fileName'">{{scope}}</el-link>--> |
|
|
|
|
<template #default="{row,$index}" v-if="item.prop === 'cargoControl'"> |
|
|
|
|
<template #default="{ row, $index }" v-if="item.prop === 'cargoControl'"> |
|
|
|
|
<el-switch |
|
|
|
|
v-model="row.cargoControl" |
|
|
|
|
active-text="开" |
|
|
|
@ -112,12 +125,18 @@
|
|
|
|
|
<!-- 操作栏模块 --> |
|
|
|
|
|
|
|
|
|
<el-table-column prop="menu" label="操作" :width="300" align="center"> |
|
|
|
|
<template #="{row}"> |
|
|
|
|
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button> |
|
|
|
|
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button> |
|
|
|
|
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button> |
|
|
|
|
<template #="{ row }"> |
|
|
|
|
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)" |
|
|
|
|
>查看</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)" |
|
|
|
|
>编辑</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)" |
|
|
|
|
>删除</el-button |
|
|
|
|
> |
|
|
|
|
<el-dropdown> |
|
|
|
|
<el-button type="primary" text> |
|
|
|
|
<el-button type="primary" text> |
|
|
|
|
更多 |
|
|
|
|
<el-icon class="el-icon--right"> |
|
|
|
|
<arrow-down /> |
|
|
|
@ -126,26 +145,58 @@
|
|
|
|
|
<template #dropdown> |
|
|
|
|
<el-dropdown-menu> |
|
|
|
|
<el-dropdown-item> |
|
|
|
|
<el-button type="primary" text icon="el-icon-setting" @click="handleAddSon(row)">新增</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-setting" |
|
|
|
|
@click="handleAddSon(row)" |
|
|
|
|
>新增</el-button |
|
|
|
|
> |
|
|
|
|
</el-dropdown-item> |
|
|
|
|
<el-dropdown-item> |
|
|
|
|
<el-button type="primary" text icon="el-icon-setting" @click="handleHistory(row)">合同历史记录</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-setting" |
|
|
|
|
@click="handleHistory(row)" |
|
|
|
|
>合同历史记录</el-button |
|
|
|
|
> |
|
|
|
|
</el-dropdown-item> |
|
|
|
|
<el-dropdown-item> |
|
|
|
|
<el-button type="primary" text icon="el-icon-setting" @click="handleEntrepot(row)">服务仓</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-setting" |
|
|
|
|
@click="handleEntrepot(row)" |
|
|
|
|
>服务仓</el-button |
|
|
|
|
> |
|
|
|
|
</el-dropdown-item> |
|
|
|
|
<el-dropdown-item> |
|
|
|
|
<el-button type="primary" text icon="el-icon-setting" @click="handleLinkman(row)">联系人</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-setting" |
|
|
|
|
@click="handleLinkman(row)" |
|
|
|
|
>联系人</el-button |
|
|
|
|
> |
|
|
|
|
</el-dropdown-item> |
|
|
|
|
<el-dropdown-item> |
|
|
|
|
<el-button type="primary" text icon="el-icon-setting" @click="handleBrand(row)">品牌</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-setting" |
|
|
|
|
@click="handleBrand(row)" |
|
|
|
|
>品牌</el-button |
|
|
|
|
> |
|
|
|
|
</el-dropdown-item> |
|
|
|
|
<!-- <el-dropdown-item v-if="!!row.clientType">--> |
|
|
|
|
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleBase(row)" v-if=" row.clientType == '1'">基地</el-button>--> |
|
|
|
|
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleStore(row)" v-if=" row.clientType == '2'">门店</el-button>--> |
|
|
|
|
<!-- </el-dropdown-item>--> |
|
|
|
|
<el-dropdown-item > |
|
|
|
|
<el-button type="primary" text icon="el-icon-setting" @click="handleMall(row)">三方商城</el-button> |
|
|
|
|
<!-- <el-dropdown-item v-if="!!row.clientType">--> |
|
|
|
|
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleBase(row)" v-if=" row.clientType == '1'">基地</el-button>--> |
|
|
|
|
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleStore(row)" v-if=" row.clientType == '2'">门店</el-button>--> |
|
|
|
|
<!-- </el-dropdown-item>--> |
|
|
|
|
<el-dropdown-item> |
|
|
|
|
<el-button type="primary" text icon="el-icon-setting" @click="handleMall(row)" |
|
|
|
|
>三方商城</el-button |
|
|
|
|
> |
|
|
|
|
</el-dropdown-item> |
|
|
|
|
</el-dropdown-menu> |
|
|
|
|
</template> |
|
|
|
@ -155,26 +206,30 @@
|
|
|
|
|
</el-table> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__pagination" style="width:100%"> |
|
|
|
|
<div class="avue-crud__pagination" style="width: 100%"> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-pagination align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeChange" |
|
|
|
|
@current-change="currentChange" |
|
|
|
|
:current-page="page.currentPage" |
|
|
|
|
:page-sizes="[30, 50,80, 120]" |
|
|
|
|
:page-size="page.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="page.total"> |
|
|
|
|
<el-pagination |
|
|
|
|
align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeChange" |
|
|
|
|
@current-change="currentChange" |
|
|
|
|
:current-page="page.currentPage" |
|
|
|
|
:page-sizes="[30, 50, 80, 120]" |
|
|
|
|
:page-size="page.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="page.total" |
|
|
|
|
> |
|
|
|
|
</el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
<!-- 表单模块 --> |
|
|
|
|
<el-dialog :title="title" |
|
|
|
|
v-model="box" |
|
|
|
|
width="35%" |
|
|
|
|
:before-close="beforeClose" |
|
|
|
|
append-to-body> |
|
|
|
|
<el-dialog |
|
|
|
|
:title="title" |
|
|
|
|
v-model="box" |
|
|
|
|
width="35%" |
|
|
|
|
:before-close="beforeClose" |
|
|
|
|
append-to-body |
|
|
|
|
> |
|
|
|
|
<el-form :disabled="view" ref="form" :model="form" :rules="rules" label-width="120px"> |
|
|
|
|
<!-- 表单字段 --> |
|
|
|
|
<el-form-item label="编码" prop="reserve1"> |
|
|
|
@ -189,34 +244,49 @@
|
|
|
|
|
<!-- <el-option label="发货方" value="1"/>--> |
|
|
|
|
<!-- <el-option label="收货方" value="2"/>--> |
|
|
|
|
<!-- </el-select>--> |
|
|
|
|
<el-select v-model="form.clientType" class="m-2" placeholder="请选择客户端类型" style="width: 100%"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="form.clientType" |
|
|
|
|
class="m-2" |
|
|
|
|
placeholder="请选择客户端类型" |
|
|
|
|
style="width: 100%" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in clientType" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="服务类型" prop="typeServiceList"> |
|
|
|
|
<el-select v-model="form.typeServiceList" multiple placeholder="请选择" style="width: 100%" @change="coverCharge"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="form.typeServiceList" |
|
|
|
|
multiple |
|
|
|
|
placeholder="请选择" |
|
|
|
|
style="width: 100%" |
|
|
|
|
@change="coverCharge" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in freightType" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="配送类型" prop="businessType" v-if="distriType"> |
|
|
|
|
<el-radio-group v-model="form.businessType" class="ml-4" v-for="item in distributionType"> |
|
|
|
|
<el-radio :label="item.dictKey" size="large" style="margin-right: 25px">{{item.dictValue}}</el-radio> |
|
|
|
|
<el-radio-group |
|
|
|
|
v-model="form.businessType" |
|
|
|
|
class="ml-4" |
|
|
|
|
v-for="item in distributionType" |
|
|
|
|
> |
|
|
|
|
<el-radio :label="item.dictKey" size="large" style="margin-right: 25px">{{ |
|
|
|
|
item.dictValue |
|
|
|
|
}}</el-radio> |
|
|
|
|
<!-- <el-radio label="2" size="large">Option 2</el-radio>--> |
|
|
|
|
</el-radio-group> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- <el-form-item label="客户端类型" prop="typeService"> |
|
|
|
|
<!– <el-input v-model="form.typeService" placeholder="请输入客户类型"/>–> |
|
|
|
@ -239,7 +309,11 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="地址" prop="bladeRegionProvinceId"> |
|
|
|
|
<!-- <el-input v-model="form.bladeRegionProvinceId" placeholder="请输入省份"/>--> |
|
|
|
|
<el-cascader :options="optioner" style="width: 100%" v-model="form.bladeRegionProvinceId"> |
|
|
|
|
<el-cascader |
|
|
|
|
:options="optioner" |
|
|
|
|
style="width: 100%" |
|
|
|
|
v-model="form.bladeRegionProvinceId" |
|
|
|
|
> |
|
|
|
|
<template #default="{ node, data }"> |
|
|
|
|
<span>{{ data.label }}</span> |
|
|
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span> |
|
|
|
@ -249,12 +323,12 @@
|
|
|
|
|
<el-form-item label="详细地址" prop="detailedly"> |
|
|
|
|
<el-input v-model="form.detailedly" placeholder="请填写详细地址" style="width: 100%" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- <el-form-item label="三方商城" prop="tripartiteMall">--> |
|
|
|
|
<!-- <el-input v-model="form.tripartiteMall" placeholder="请填写三方商城" style="width: 100%" />--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
<!-- <el-form-item label="开票信息" prop="billingInformation">--> |
|
|
|
|
<!-- <el-input v-model="form.billingInformation" placeholder="请填写开票信息" style="width: 100%" />--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
<!-- <el-form-item label="三方商城" prop="tripartiteMall">--> |
|
|
|
|
<!-- <el-input v-model="form.tripartiteMall" placeholder="请填写三方商城" style="width: 100%" />--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
<!-- <el-form-item label="开票信息" prop="billingInformation">--> |
|
|
|
|
<!-- <el-input v-model="form.billingInformation" placeholder="请填写开票信息" style="width: 100%" />--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
<!-- <el-form-item label="市" prop="bladeRegionCityId">--> |
|
|
|
|
<!-- <el-input v-model="form.bladeRegionCityId" placeholder="请输入市"/>--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
@ -270,17 +344,20 @@
|
|
|
|
|
:headers="headers" |
|
|
|
|
multiple |
|
|
|
|
:on-preview="handlePreview" |
|
|
|
|
:on-success="(response, file, fileList) => {uploadSuccess(fileList)}" |
|
|
|
|
:on-success=" |
|
|
|
|
(response, file, fileList) => { |
|
|
|
|
uploadSuccess(fileList); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
:on-remove="handleRemove" |
|
|
|
|
:before-remove="beforeRemove" |
|
|
|
|
:before-upload="beforeAvatarUpload" |
|
|
|
|
:limit="3" |
|
|
|
|
:on-exceed="handleExceed" |
|
|
|
|
> |
|
|
|
|
<el-button>上传</el-button> |
|
|
|
|
<template #tip> |
|
|
|
|
<div class="el-upload__tip"> |
|
|
|
|
大小不超过500KB的jpg/png文件。 |
|
|
|
|
</div> |
|
|
|
|
<div class="el-upload__tip">大小不超过500KB的jpg/png文件。</div> |
|
|
|
|
</template> |
|
|
|
|
</el-upload> |
|
|
|
|
<el-image-viewer |
|
|
|
@ -326,7 +403,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> |
|
|
|
@ -337,7 +416,8 @@
|
|
|
|
|
size="60%" |
|
|
|
|
v-model="drawer" |
|
|
|
|
:direction="direction" |
|
|
|
|
:before-close="handleDrawerClose"> |
|
|
|
|
:before-close="handleDrawerClose" |
|
|
|
|
> |
|
|
|
|
<BasicShopSub :mainId="basicClientId"></BasicShopSub> |
|
|
|
|
</el-drawer> |
|
|
|
|
<!-- <el-drawer--> |
|
|
|
@ -361,20 +441,19 @@ import BasicShopSub from '@/views/basicdata/brand/basicShopSub.vue';
|
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { getSelect, getLazyTree, getLazyList, getLazyTreeAll } from '@/api/base/region'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js'; |
|
|
|
|
import { Base64 } from 'js-base64'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
components: { |
|
|
|
|
BasicShopSub |
|
|
|
|
|
|
|
|
|
BasicShopSub, |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
activeNames: ['1'], |
|
|
|
|
height: 0, |
|
|
|
|
showImgViewer: false, |
|
|
|
|
imgPreviewUrl: [],// 当前要放大的图片存放位置 |
|
|
|
|
imgPreviewUrl: [], // 当前要放大的图片存放位置 |
|
|
|
|
fileList: [], |
|
|
|
|
|
|
|
|
|
// 主键 |
|
|
|
@ -403,13 +482,13 @@ export default {
|
|
|
|
|
page: { |
|
|
|
|
currentPage: 1, |
|
|
|
|
pageSize: 30, |
|
|
|
|
total: 40 |
|
|
|
|
total: 40, |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 表单数据 |
|
|
|
|
form: { |
|
|
|
|
contractStartTime: '', |
|
|
|
|
contractEntTime: '' |
|
|
|
|
contractEntTime: '', |
|
|
|
|
}, |
|
|
|
|
// 选择行 |
|
|
|
|
selectionList: [], |
|
|
|
@ -431,7 +510,7 @@ export default {
|
|
|
|
|
const start = new Date(); |
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
|
|
|
|
return [start, end]; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
text: '上个月', |
|
|
|
@ -440,7 +519,7 @@ export default {
|
|
|
|
|
const start = new Date(); |
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
|
|
|
|
return [start, end]; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
text: '最近3个月', |
|
|
|
@ -449,8 +528,8 @@ export default {
|
|
|
|
|
const start = new Date(); |
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
|
|
|
|
return [start, end]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
rules: { |
|
|
|
|
clientName: [ |
|
|
|
@ -465,43 +544,25 @@ export default {
|
|
|
|
|
{ required: true, message: '请选择配送业务类型', trigger: 'change' }, |
|
|
|
|
// { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
typeService: [ |
|
|
|
|
{ required: true, message: '请选择客户端类型', trigger: 'change' } |
|
|
|
|
], |
|
|
|
|
typeServiceList: [ |
|
|
|
|
{ required: true, message: '请选择服务类型', trigger: 'change' } |
|
|
|
|
], |
|
|
|
|
detailedly: [ |
|
|
|
|
{ required: true, message: '请填写详细地址', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
clientType: [ |
|
|
|
|
{ required: true, message: '请选择客户类型', trigger: 'change' } |
|
|
|
|
], |
|
|
|
|
linkman: [ |
|
|
|
|
{ required: true, message: '请填写联系人', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
phone: [ |
|
|
|
|
{ required: true, message: '请填写联系电话', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
typeService: [{ required: true, message: '请选择客户端类型', trigger: 'change' }], |
|
|
|
|
typeServiceList: [{ required: true, message: '请选择服务类型', trigger: 'change' }], |
|
|
|
|
detailedly: [{ required: true, message: '请填写详细地址', trigger: 'blur' }], |
|
|
|
|
clientType: [{ required: true, message: '请选择客户类型', trigger: 'change' }], |
|
|
|
|
linkman: [{ required: true, message: '请填写联系人', trigger: 'blur' }], |
|
|
|
|
phone: [{ required: true, message: '请填写联系电话', trigger: 'blur' }], |
|
|
|
|
contractEntTime: [ |
|
|
|
|
{ type: 'date', required: true, message: '请选择合同结束时间', trigger: 'change' } |
|
|
|
|
{ type: 'date', required: true, message: '请选择合同结束时间', trigger: 'change' }, |
|
|
|
|
], |
|
|
|
|
contractStartTime: [ |
|
|
|
|
{ type: 'date', required: true, message: '请选择合同开始时间', trigger: 'change' } |
|
|
|
|
], |
|
|
|
|
bladeRegionProvinceId: [ |
|
|
|
|
{ required: true, message: '请选择地址', trigger: 'change' } |
|
|
|
|
{ type: 'date', required: true, message: '请选择合同开始时间', trigger: 'change' }, |
|
|
|
|
], |
|
|
|
|
leaseAccessories: [ |
|
|
|
|
{ required: true, message: '请上传合同文件', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
bladeRegionProvinceId: [{ required: true, message: '请选择地址', trigger: 'change' }], |
|
|
|
|
leaseAccessories: [{ required: true, message: '请上传合同文件', trigger: 'blur' }], |
|
|
|
|
}, |
|
|
|
|
bianji: false |
|
|
|
|
bianji: false, |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
created() {}, |
|
|
|
|
watch: { |
|
|
|
|
'$route.query.id': { |
|
|
|
|
handler(newVal, oldVal) { |
|
|
|
@ -509,10 +570,10 @@ export default {
|
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
deep: true, |
|
|
|
|
immediate: true |
|
|
|
|
} |
|
|
|
|
immediate: true, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
mounted() { |
|
|
|
|
this.init(); |
|
|
|
|
getLazyTreeAll().then(res => { |
|
|
|
|
if (res.data.success) { |
|
|
|
@ -532,23 +593,23 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
headers() { |
|
|
|
|
return { |
|
|
|
|
'Blade-Auth': 'Bearer ' + getToken() |
|
|
|
|
'Blade-Auth': 'Bearer ' + getToken(), |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
action() { |
|
|
|
|
// return '/api/logpm-basicdata/common/uploadFile'; |
|
|
|
|
return '/api/blade-resource/oss/endpoint/put-file' |
|
|
|
|
} |
|
|
|
|
return '/api/blade-resource/oss/endpoint/put-file'; |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
coverCharge(num) { |
|
|
|
|
this.distriType = false; |
|
|
|
|
console.log(num); |
|
|
|
|
num.forEach(i =>{ |
|
|
|
|
if(i == '3'){ |
|
|
|
|
num.forEach(i => { |
|
|
|
|
if (i == '3') { |
|
|
|
|
this.distriType = true; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
handleChange(val) { |
|
|
|
@ -562,22 +623,24 @@ export default {
|
|
|
|
|
path: '/basicdata/brand/basicdataTripartiteMall', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '商场 - ' + row.clientName |
|
|
|
|
} |
|
|
|
|
name: '商场 - ' + row.clientName, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
//打开文件 |
|
|
|
|
downloadLink(row) { |
|
|
|
|
console.log('>>>>>', row); |
|
|
|
|
window.open('http://192.168.10.100:8012/onlinePreview?url=' + encodeURIComponent(Base64.encode(row.leaseAccessories))); |
|
|
|
|
window.open( |
|
|
|
|
'http://192.168.10.100:8012/onlinePreview?url=' + |
|
|
|
|
encodeURIComponent(Base64.encode(row.leaseAccessories)) |
|
|
|
|
); |
|
|
|
|
}, |
|
|
|
|
//控制控货 |
|
|
|
|
makeCargo(row) { |
|
|
|
|
console.log('控货操作!!', row); |
|
|
|
|
let r = { |
|
|
|
|
id: row.id, |
|
|
|
|
cargoControl: row.cargoControl |
|
|
|
|
cargoControl: row.cargoControl, |
|
|
|
|
}; |
|
|
|
|
this.$confirm(`确定要修改${row.clientName}的控货状态吗?`, { |
|
|
|
|
type: 'warning', |
|
|
|
@ -592,26 +655,34 @@ export default {
|
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!' |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
done(); |
|
|
|
|
} else { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '操作失败!' |
|
|
|
|
message: '操作失败!', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
//点击其他地方时就相当于点击了false |
|
|
|
|
//done 关闭窗口 |
|
|
|
|
done(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
async beforeAvatarUpload(rawFile) { |
|
|
|
|
if (rawFile.type !== 'image/png') { |
|
|
|
|
ElMessage.error('图片格式只能为image/png!'); |
|
|
|
|
return false; |
|
|
|
|
} else if (rawFile.size / 1024 / 1024 > 2) { |
|
|
|
|
ElMessage.error('图片大小不能大于2MB!'); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
const res = await compressImageBlob(rawFile); |
|
|
|
|
return res; |
|
|
|
|
}, |
|
|
|
|
uploadSuccess(fileList) { |
|
|
|
|
// this.form.fileName = |
|
|
|
@ -642,10 +713,13 @@ export default {
|
|
|
|
|
this.showImgViewer = true; |
|
|
|
|
|
|
|
|
|
console.log('-=-=sc上传', this.fileList); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
handleExceed(files, fileList) { |
|
|
|
|
this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`); |
|
|
|
|
this.$message.warning( |
|
|
|
|
`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${ |
|
|
|
|
files.length + fileList.length |
|
|
|
|
} 个文件` |
|
|
|
|
); |
|
|
|
|
}, |
|
|
|
|
beforeRemove(file, fileList) { |
|
|
|
|
return this.$confirm(`确定移除 ${file.name}?`); |
|
|
|
@ -680,7 +754,6 @@ export default {
|
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// console.log('市111', this.optioner); |
|
|
|
|
this.height = this.setPx(document.body.clientHeight - 340); |
|
|
|
|
}, |
|
|
|
@ -697,7 +770,6 @@ export default {
|
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
handleSubmit(from) { |
|
|
|
|
|
|
|
|
|
console.log('上传的集合。。', JSON.parse(JSON.stringify(this.fileList))); |
|
|
|
|
if (this.title == '编辑' && this.bianji == false) { |
|
|
|
|
console.log('编辑1111'); |
|
|
|
@ -705,7 +777,6 @@ export default {
|
|
|
|
|
let li = []; |
|
|
|
|
this.fileList.forEach(it => { |
|
|
|
|
li.push(it.url); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
this.form.leaseAccessories = li.length > 0 ? li.join(',') : null; |
|
|
|
|
} else { |
|
|
|
@ -725,22 +796,21 @@ export default {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!this.form.id) { |
|
|
|
|
|
|
|
|
|
console.log('提交的数据:', this.form); |
|
|
|
|
this.$refs[from].validate((valid) => { |
|
|
|
|
this.$refs[from].validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
// this.form.typeService = !!this.form.typeService ? parseInt(this.form.typeService) : undefined; |
|
|
|
|
this.form.bladeRegionCityId = this.form.bladeRegionProvinceId[1]; |
|
|
|
|
this.form.bladeRegionAreaId = this.form.bladeRegionProvinceId[2]; |
|
|
|
|
this.form.bladeRegionProvinceId = this.form.bladeRegionProvinceId[0]; |
|
|
|
|
this.form.pid = this.$route.query.id; |
|
|
|
|
console.log("上传llll>>>",this.form); |
|
|
|
|
console.log('上传llll>>>', this.form); |
|
|
|
|
add(this.form).then(() => { |
|
|
|
|
this.box = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!' |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
@ -748,10 +818,9 @@ export default {
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
console.log('提交的数据:', this.form); |
|
|
|
|
this.$refs[from].validate((valid) => { |
|
|
|
|
this.$refs[from].validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
// this.form.typeService = !!this.form.typeService ? parseInt(this.form.typeService) : undefined; |
|
|
|
|
this.form.bladeRegionCityId = this.form.bladeRegionProvinceId[1]; |
|
|
|
@ -762,7 +831,7 @@ export default {
|
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!' |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
@ -770,8 +839,6 @@ export default {
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleAdd() { |
|
|
|
@ -786,8 +853,8 @@ export default {
|
|
|
|
|
path: '/basicdata/brand/basicClientFrom', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '新增 - ' + row.clientName |
|
|
|
|
} |
|
|
|
|
name: '新增 - ' + row.clientName, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleEdit(row) { |
|
|
|
@ -800,14 +867,14 @@ export default {
|
|
|
|
|
res.data.data.typeService = res.data.data.typeService.toString(); |
|
|
|
|
console.log(res.data.data); |
|
|
|
|
this.form = res.data.data; |
|
|
|
|
let bus =[]; |
|
|
|
|
this.form.typeServiceBusiness.forEach(i =>{ |
|
|
|
|
let bus = []; |
|
|
|
|
this.form.typeServiceBusiness.forEach(i => { |
|
|
|
|
bus.push(i.typeService); |
|
|
|
|
if(i.typeService == '3'){ |
|
|
|
|
if (i.typeService == '3') { |
|
|
|
|
this.distriType = true; |
|
|
|
|
this.form.businessType = i.mold; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
this.form.typeServiceList = bus; |
|
|
|
|
console.log(this.form); |
|
|
|
|
let a = []; |
|
|
|
@ -824,19 +891,20 @@ export default {
|
|
|
|
|
d.forEach(i => { |
|
|
|
|
let q = { |
|
|
|
|
name: '', |
|
|
|
|
url: i |
|
|
|
|
url: i, |
|
|
|
|
}; |
|
|
|
|
le.push(q); |
|
|
|
|
}); |
|
|
|
|
this.fileList = le; |
|
|
|
|
} else { |
|
|
|
|
this.fileList = [{ |
|
|
|
|
name: this.form.fileName, |
|
|
|
|
url: this.form.leaseAccessories |
|
|
|
|
}]; |
|
|
|
|
this.fileList = [ |
|
|
|
|
{ |
|
|
|
|
name: this.form.fileName, |
|
|
|
|
url: this.form.leaseAccessories, |
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleView(row) { |
|
|
|
@ -848,14 +916,14 @@ export default {
|
|
|
|
|
res.data.data.typeService = res.data.data.typeService.toString(); |
|
|
|
|
console.log('>>>>>', res.data.data); |
|
|
|
|
this.form = res.data.data; |
|
|
|
|
let bus =[]; |
|
|
|
|
this.form.typeServiceBusiness.forEach(i =>{ |
|
|
|
|
let bus = []; |
|
|
|
|
this.form.typeServiceBusiness.forEach(i => { |
|
|
|
|
bus.push(i.typeService); |
|
|
|
|
if(i.typeService == '3'){ |
|
|
|
|
if (i.typeService == '3') { |
|
|
|
|
this.distriType = true; |
|
|
|
|
i.businessType = i.mold; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
this.form.typeServiceList = bus; |
|
|
|
|
let a = []; |
|
|
|
|
if (!!this.form.bladeRegionProvinceId) { |
|
|
|
@ -871,32 +939,34 @@ export default {
|
|
|
|
|
d.forEach(i => { |
|
|
|
|
let q = { |
|
|
|
|
name: '', |
|
|
|
|
url: i |
|
|
|
|
url: i, |
|
|
|
|
}; |
|
|
|
|
le.push(q); |
|
|
|
|
}); |
|
|
|
|
this.fileList = le; |
|
|
|
|
} else { |
|
|
|
|
this.fileList = [{ |
|
|
|
|
name: '', |
|
|
|
|
url: this.form.leaseAccessories |
|
|
|
|
}]; |
|
|
|
|
this.fileList = [ |
|
|
|
|
{ |
|
|
|
|
name: '', |
|
|
|
|
url: this.form.leaseAccessories, |
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleDrawer(row) { |
|
|
|
|
this.basicClientId = row.id; |
|
|
|
|
this.drawer = true; |
|
|
|
|
}, |
|
|
|
|
handleBrand(row) { //品牌 |
|
|
|
|
handleBrand(row) { |
|
|
|
|
//品牌 |
|
|
|
|
this.$router.push({ |
|
|
|
|
path:'/basicdata/brand/basicdataStoreBrand', |
|
|
|
|
query:{ |
|
|
|
|
path: '/basicdata/brand/basicdataStoreBrand', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: "品牌 - "+row.clientName |
|
|
|
|
} |
|
|
|
|
name: '品牌 - ' + row.clientName, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
//历史记录 |
|
|
|
@ -909,10 +979,9 @@ export default {
|
|
|
|
|
path: '/basicdata/brand/basicHistoricalContract', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '历史记录 - ' + row.clientName |
|
|
|
|
} |
|
|
|
|
name: '历史记录 - ' + row.clientName, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
//仓库 |
|
|
|
|
handleEntrepot(row) { |
|
|
|
@ -925,10 +994,9 @@ export default {
|
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '服务仓 - ' + row.clientName, |
|
|
|
|
type: '2' |
|
|
|
|
} |
|
|
|
|
type: '2', |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
//联系人 |
|
|
|
|
handleLinkman(row) { |
|
|
|
@ -937,8 +1005,8 @@ export default {
|
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '联系人 - ' + row.clientName, |
|
|
|
|
type: 2 |
|
|
|
|
} |
|
|
|
|
type: 2, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
//基地 |
|
|
|
@ -947,8 +1015,8 @@ export default {
|
|
|
|
|
path: '/basicdata/brand/basicdataCustomerBase', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '基地 - ' + row.clientName |
|
|
|
|
} |
|
|
|
|
name: '基地 - ' + row.clientName, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
//商场 |
|
|
|
@ -957,8 +1025,8 @@ export default {
|
|
|
|
|
path: '/basicdata/brand/basicShop', |
|
|
|
|
query: { |
|
|
|
|
id: row.id, |
|
|
|
|
name: '门店- ' + row.clientName |
|
|
|
|
} |
|
|
|
|
name: '门店- ' + row.clientName, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleDrawerClose() { |
|
|
|
@ -973,7 +1041,7 @@ export default {
|
|
|
|
|
this.$confirm('确定将选择数据删除?', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning' |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
return remove(this.ids); |
|
|
|
@ -983,7 +1051,7 @@ export default {
|
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!' |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -991,7 +1059,7 @@ export default {
|
|
|
|
|
this.$confirm('确定将选择数据删除?', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning' |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
return remove(row.id); |
|
|
|
@ -1000,7 +1068,7 @@ export default {
|
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!' |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -1054,15 +1122,15 @@ export default {
|
|
|
|
|
}); |
|
|
|
|
let dz = ''; |
|
|
|
|
data.records.forEach(it => { |
|
|
|
|
let arrsheng = this.optioner.filter((i) => { |
|
|
|
|
let arrsheng = this.optioner.filter(i => { |
|
|
|
|
return it.bladeRegionProvinceId == 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.bladeRegionCityId == i.value; |
|
|
|
|
}); |
|
|
|
|
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) ); |
|
|
|
|
let arrqu = arrshi[0].children.filter((i) => { |
|
|
|
|
let arrqu = arrshi[0].children.filter(i => { |
|
|
|
|
return it.bladeRegionAreaId == i.value; |
|
|
|
|
}); |
|
|
|
|
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) ); |
|
|
|
@ -1076,8 +1144,7 @@ export default {
|
|
|
|
|
this.loading = false; |
|
|
|
|
this.selectionClear(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|