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.

1035 lines
37 KiB

<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<el-form-item label="客户名称:">
<el-input v-model="query.clientName" placeholder="请输入客户名称"></el-input>
</el-form-item>
2 years ago
<el-form-item label="客户类型:">
<!-- <el-input v-model="query.typeService" placeholder="请输入客户类型;1 C端 2 B端"></el-input>-->
<el-select v-model="query.clientType" class="m-2" placeholder="请选择客户端类型">
<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="地址:">
2 years ago
<!-- <el-input v-model="query.bladeRegionProvinceId" placeholder="请输入省份"></el-input>-->
<el-cascader :options="optioner" v-model="query.bladeRegionProvinceId">
<template #default="{ node, data }">
<span>{{ data.label }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
2 years ago
<!-- <el-form-item label="市:">-->
<!-- <el-input v-model="query.bladeRegionCityId" placeholder="请输入市"></el-input>-->
2 years ago
<!-- </el-form-item>-->
<!-- <el-form-item label="区/县:">-->
<!-- <el-input v-model="query.bladeRegionAreaId" placeholder="请输入区/县"></el-input>-->
<!-- -->
<!-- </el-form-item>-->
<el-form-item label="合同开始时间:">
2 years ago
<!-- <el-input v-model="query.contractStartTime" placeholder="请输入合同开始时间"></el-input>-->
<div class="block">
2 years ago
<!-- <span class="demonstration">With quick options</span>-->
<el-date-picker
v-model="dataShi"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
:size="'default'"
format="YYYY/MM/DD"
value-format="YYYY-MM-DD HH:mm:ss"
/>
</div>
</el-form-item>
2 years ago
<!-- <el-form-item label="合同结束时间:">-->
<!-- <el-input v-model="query.contractEntTime" placeholder="请输入合同结束时间"></el-input>-->
<!-- </el-form-item>-->
<!-- 查询按钮 -->
<el-form-item>
<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>
<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>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</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-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">
<!-- 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">
2 years ago
<!-- <template slot-scope="{item}" 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'">
2 years ago
<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>
<span target="_blank" v-if="row.clientType == '4'">个人</span>
<!-- <span target="_blank" v-else>收货方</span>-->
</template>
<!-- <el-link href="https://element.eleme.io" target="_blank" v-if="item.prop === 'fileName'">{{scope}}</el-link>-->
2 years ago
<template #default="{row,$index}" v-if="item.prop === 'cargoControl'">
<el-switch
2 years ago
v-model="row.cargoControl"
active-text="开"
inactive-text="关"
@click="makeCargo(row)"
>
</el-switch>
</template>
</el-table-column>
</template>
<!-- 操作栏模块 -->
2 years ago
<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>
2 years ago
<el-dropdown>
<el-button type="primary" text>
更多
<el-icon class="el-icon--right">
<arrow-down />
</el-icon>
</el-button>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item>
<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-dropdown-item>
<el-dropdown-item>
<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-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>
</el-dropdown-menu>
</template>
</el-dropdown>
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<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="[10, 20, 30, 40, 50, 100]"
: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-form :disabled="view" ref="form" :model="form" :rules="rules" label-width="120px">
<!-- 表单字段 -->
<el-form-item label="客户名称" prop="clientName">
2 years ago
<el-input v-model="form.clientName" placeholder="请输入客户名称" style="width: 100%" />
</el-form-item>
<el-form-item label="客户类型" prop="clientType">
2 years ago
<!-- <el-input v-model="form.clientName" placeholder="请输入客户名称" style="width: 100%"/>-->
<!-- <el-select v-model="form.clientType" class="m-2" placeholder="请选择客户类型" style="width: 100%">-->
<!-- <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-option
v-for="item in clientType"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
/>
</el-select>
2 years ago
</el-form-item>
2 years ago
<el-form-item label="服务类型" prop="clientId">
<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">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="费用类型" prop="freightMark" 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">{{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">
&lt;!&ndash; <el-input v-model="form.typeService" placeholder="请输入客户类型"/>&ndash;&gt;
&lt;!&ndash; <el-input v-model="form.typeService" placeholder="请输入客户类型;1 C端 2 B端"/>&ndash;&gt;
<el-select v-model="form.typeService" 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="linkman">
2 years ago
<el-input v-model="form.linkman" placeholder="请输入联系人" style="width: 100%" />
</el-form-item>
<el-form-item label="联系电话" prop="phone">
2 years ago
<el-input v-model="form.phone" placeholder="请输入联系电话" style="width: 100%" />
</el-form-item>
2 years ago
<el-form-item label="地址" prop="bladeRegionProvinceId">
<!-- <el-input v-model="form.bladeRegionProvinceId" placeholder="请输入省份"/>-->
<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>
</template>
</el-cascader>
</el-form-item>
2 years ago
<el-form-item label="详细地址" prop="phone">
<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="bladeRegionCityId">-->
<!-- <el-input v-model="form.bladeRegionCityId" placeholder="请输入市"/>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="区/县" prop="bladeRegionAreaId">-->
<!-- <el-input v-model="form.bladeRegionAreaId" placeholder="请输入区/县"/>-->
<!-- </el-form-item>-->
<el-form-item label="合同附件" prop="leaseAccessories" style="width: 100%">
2 years ago
<!-- <el-input v-model="form.leaseAccessories" placeholder="请输入合同附件"/>-->
<el-upload
v-model:file-list="fileList"
class="upload-demo"
:action="action"
:headers="headers"
multiple
:on-preview="handlePreview"
:on-success="(response, file, fileList) => {uploadSuccess(fileList)}"
:on-remove="handleRemove"
:before-remove="beforeRemove"
:limit="3"
:on-exceed="handleExceed"
>
2 years ago
<el-button>上传</el-button>
<template #tip>
<div class="el-upload__tip">
大小不超过500KB的jpg/png文件
</div>
</template>
</el-upload>
<el-image-viewer
v-if="showImgViewer"
:url-list="imgPreviewUrl"
@close="handleCo"
:z-index="300"
fit="cover"
/>
</el-form-item>
<el-form-item label="合同开始时间" prop="contractStartTime" label-width="120px">
2 years ago
<!-- <el-input v-model="form.contractStartTime" placeholder="请输入合同开始时间"/>-->
<div class="demo-date-picker" style="width: 60%">
<div class="block">
2 years ago
<!-- <span class="demonstration">Default</span>-->
<el-date-picker
v-model="form.contractStartTime"
type="date"
placeholder="选择时间"
2 years ago
format="YYYY/MM/DD HH:mm:ss"
value-format="YYYY-MM-DD HH:mm:ss"
/>
</div>
</div>
</el-form-item>
<el-form-item label="合同结束时间" prop="contractEntTime" label-width="120px">
2 years ago
<!-- <el-input v-model="form.contractEntTime" placeholder="请输入合同结束时间"/>-->
<div class="demo-date-picker">
<div class="block">
<!-- <span class="demonstration">Default</span>-->
<el-date-picker
v-model="form.contractEntTime"
type="date"
placeholder="选择时间"
2 years ago
format="YYYY/MM/DD HH:mm:ss"
value-format="YYYY-MM-DD HH:mm:ss"
/>
</div>
</div>
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit('form')"> </el-button>
2 years ago
<!-- <el-button icon="el-icon-circle-close" @click="box = false"> </el-button>-->
</span>
</template>
</el-dialog>
<el-drawer
title="子表操作"
append-to-body
size="60%"
v-model="drawer"
:direction="direction"
:before-close="handleDrawerClose">
<BasicShopSub :mainId="basicClientId"></BasicShopSub>
</el-drawer>
2 years ago
<!-- <el-drawer-->
<!-- title="历史记录"-->
<!-- append-to-body-->
<!-- size="60%"-->
<!-- v-model="drawer"-->
<!-- :direction="direction"-->
<!-- :before-close="handleDrawerClose">-->
<!-- <BasicShopSub :mainId="basicClientId"></BasicShopSub>-->
<!-- </el-drawer>-->
</div>
</basic-container>
</template>
2 years ago
<script>
import { getList, getDetail, add, update, updateCargoControl } from '@/api/basicdata/basicClient';
import option from '@/option/basicdata/basicClient';
import { mapGetters } from 'vuex';
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 globalc from '@/api/basicdata/globalc';
import { Base64 } from 'js-base64';
export default {
2 years ago
components: {
BasicShopSub
},
2 years ago
data() {
return {
2 years ago
activeNames: ['1'],
height: 0,
showImgViewer: false,
2 years ago
imgPreviewUrl: [],// 当前要放大的图片存放位置
fileList: [],
// 主键
basicClientId: '',
// fileList:[], // 上传数据
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否展示抽屉
drawer: false,
// 抽屉方向
direction: 'rtl',
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
// 查询信息
query: {},
//查询时间
2 years ago
dataShi: '',
// 分页信息
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
// 表单数据
form: {
2 years ago
contractStartTime: '',
contractEntTime: ''
},
// 选择行
selectionList: [],
2 years ago
testForm: {},
// 表单配置
option: option,
// 表单列表
data: [],
2 years ago
clientType: [],
optioner: [],
distributionType: [],
distriType: false, // 配送自提
shortcuts: [
{
text: '上周',
value: () => {
2 years ago
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
}
},
{
text: '上个月',
value: () => {
2 years ago
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
}
},
{
text: '最近3个月',
value: () => {
2 years ago
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
}
}
],
rules: {
clientName: [
{ required: true, message: '请输入客户名称', trigger: 'blur' },
{ min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' }
],
typeService: [
{ required: true, message: '请选择客户端类型', trigger: 'change' }
],
clientType: [
{ required: true, message: '请选择客户类型', trigger: 'change' }
],
linkman: [
{ required: true, message: '请填写联系人', trigger: 'blur' }
],
phone: [
{ required: true, message: '请填写联系电话', trigger: 'blur' }
],
2 years ago
contractEntTime: [
{ type: 'date', required: true, message: '请选择合同结束时间', trigger: 'change' }
],
contractStartTime: [
{ type: 'date', required: true, message: '请选择合同开始时间', trigger: 'change' }
],
2 years ago
bladeRegionProvinceId: [
{ required: true, message: '请选择地址', trigger: 'change' }
],
leaseAccessories: [
{ required: true, message: '请上传合同文件', trigger: 'blur' }
]
},
2 years ago
bianji: false
};
},
created() {
},
2 years ago
mounted() {
this.init();
getLazyTreeAll().then(res => {
2 years ago
if (res.data.success) {
this.optioner = res.data.data;
this.onLoad(this.page);
}
2 years ago
});
},
computed: {
2 years ago
...mapGetters(['permission']),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
2 years ago
return ids.join(',');
},
headers() {
return {
2 years ago
'Blade-Auth': 'Bearer ' + getToken()
};
},
action() {
2 years ago
return '/api/logpm-basicdata/common/uploadFile';
// return '/api/blade-resource/oss/endpoint/put-file-attach'
}
},
methods: {
2 years ago
coverCharge(num) {
this.distriType = false;
console.log(num);
num.forEach(i =>{
if(i == '3'){
this.distriType = true;
}
})
},
handleChange(val) {
console.log(val);
},
//
handleMall(row) {
console.log('>>>', row);
this.$router.push({
path: '/basicdata/brand/basicdataTripartiteMall',
query: {
id: row.id,
name: '商场 - ' + row.clientName
}
});
},
//打开文件
2 years ago
downloadLink(row) {
console.log('>>>>>', row);
window.open('http://192.168.2.100:8012/onlinePreview?url=' + encodeURIComponent(Base64.encode(row.leaseAccessories)));
},
//控制控货
2 years ago
makeCargo(row) {
console.log('控货操作!!', row);
let r = {
2 years ago
id: row.id,
cargoControl: row.cargoControl
2 years ago
};
this.$confirm(`确定要修改${row.clientName}的控货状态吗?`, {
2 years ago
type: 'warning',
//beforeClose 阻止关闭弹窗
beforeClose: async (action, instance, done) => {
//下面这行代码就是弹出的确认删除和取消删除
2 years ago
if (action === 'confirm') {
// 调取接口
updateCargoControl(r).then(res => {
console.log(res);
2 years ago
if (res.statusText == 'OK') {
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
done();
2 years ago
} else {
this.$message({
2 years ago
type: 'warning',
message: '操作失败!'
});
}
});
2 years ago
} else {
//点击其他地方时就相当于点击了false
//done 关闭窗口
done();
}
}
});
},
uploadSuccess(fileList) {
2 years ago
console.log('123123123', fileList);
// this.form.fileName =
// this.$set(row, 'imageCos', fileList);
2 years ago
if (this.title == '编辑') {
this.bianji = true;
}
},
handleRemove(file) {
2 years ago
console.log('3333333', file);
let id1 = this.fileList.findIndex(item => {
if (item.id == file.url) {
2 years ago
return true;
}
2 years ago
});
this.fileList.splice(id1, 1);
2 years ago
console.log('fileList', this.fileList);
},
handleCo(file, fileList) {
// console.log('3333333',file, fileList);
2 years ago
this.showImgViewer = false;
},
handlePreview(file) {
2 years ago
console.log('111111', file);
this.imgPreviewUrl[0] = file.response.data.link;
// this.imgPreviewUrl[0] = file.url;
// this.imgPreviewUrl[0] = this.$api + file.response.data.id
this.showImgViewer = true;
2 years ago
console.log('-=-=sc上传', this.fileList);
},
handleExceed(files, fileList) {
this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
},
beforeRemove(file, fileList) {
2 years ago
return this.$confirm(`确定移除 ${file.name}`);
},
2 years ago
async init() {
//字典
getDictionaryBiz('client_type').then(res => {
// console.log("字典》》》",res);
this.clientType = res.data.data;
});
2 years ago
//字典
getDictionaryBiz('basic_freight_type').then(res => {
// console.log("字典》》》",res);
this.freightType = res.data.data;
});
//字典
getDictionaryBiz('distribution_type').then(res => {
// console.log("字典》》》",res);
this.distributionType = res.data.data;
});
// console.log("globalc.optioner===",globalc.optioner);
// let optioner = JSON.parse(localStorage.getItem('optioner'));
// // console.log("-=-=-=-=",optioner);
// if(optioner.length > 0){
// this.optioner = optioner
// console.log("打印》》》",this.optioner);
// }else{
// globalc.useGetGlobalProperties().then(res =>{
// this.optioner = res;
// console.log("打印》》》",this.optioner);
// localStorage.setItem("optioner",JSON.stringify(globalc.optioner))
// });
// }
// console.log('市111', this.optioner);
this.height = this.setPx(document.body.clientHeight - 340);
},
2 years ago
searchHide() {
this.search = !this.search;
},
2 years ago
searchChange() {
this.onLoad(this.page);
},
2 years ago
searchReset() {
this.query = {};
this.dataShi = '';
this.page.currentPage = 1;
this.onLoad(this.page);
},
2 years ago
handleSubmit(from) {
2 years ago
console.log('上传的集合。。', JSON.parse(JSON.stringify(this.fileList)));
if (this.title == '编辑' && this.bianji == false) {
console.log('编辑1111');
if (this.fileList.length > 0) {
let li = [];
this.fileList.forEach(it => {
2 years ago
li.push(it.url);
2 years ago
});
this.form.leaseAccessories = li.length > 0 ? li.join(',') : null;
} else {
return this.$message.warning('请上传文件!');
}
2 years ago
} else {
if (this.fileList.length > 0) {
let li = [];
this.fileList.forEach(it => {
2 years ago
li.push(it.response.data.link);
this.form.fileName = it.response.data.originalName;
2 years ago
});
this.form.leaseAccessories = li.length > 0 ? li.join(',') : null;
} else {
return this.$message.warning('请上传文件!');
}
}
if (!this.form.id) {
2 years ago
console.log('提交的数据:', this.form);
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];
2 years ago
console.log("上传llll>>>",this.form);
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
});
} else {
console.log('error submit!!');
return false;
}
});
} else {
2 years ago
console.log('提交的数据:', this.form);
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];
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
2 years ago
});
} else {
console.log('error submit!!');
return false;
}
});
}
},
2 years ago
handleAdd() {
this.title = '新增';
this.form = {};
2 years ago
this.fileList = [];
2 years ago
this.box = true;
},
2 years ago
handleAddSon(row) {
this.$router.push({
path: '/basicdata/brand/basicClientFrom',
query: {
id: row.id,
name: '新增 - ' + row.clientName
}
});
},
handleEdit(row) {
this.title = '编辑';
this.fileList = [];
2 years ago
this.box = true;
getDetail(row.id).then(res => {
res.data.data.typeService = res.data.data.typeService.toString();
console.log(res.data.data);
this.form = res.data.data;
2 years ago
console.log(this.form);
let a = [];
if (!!this.form.bladeRegionProvinceId) {
a.push(res.data.data.bladeRegionProvinceId);
a.push(res.data.data.bladeRegionCityId);
a.push(res.data.data.bladeRegionAreaId);
}
this.form.bladeRegionProvinceId = a;
2 years ago
if (!!this.form.leaseAccessories) {
if (this.form.leaseAccessories.includes(',')) {
let le = [];
2 years ago
let d = this.form.leaseAccessories.splice(',');
d.forEach(i => {
let q = {
name: '',
url: i
};
le.push(q);
2 years ago
});
this.fileList = le;
2 years ago
} else {
this.fileList = [{
name: '',
url: this.form.leaseAccessories
}];
}
}
});
},
2 years ago
handleView(row) {
this.title = '查看';
this.view = true;
this.box = true;
2 years ago
this.fileList = [];
getDetail(row.id).then(res => {
res.data.data.typeService = res.data.data.typeService.toString();
2 years ago
console.log('>>>>>', res.data.data);
this.form = res.data.data;
2 years ago
let a = [];
if (!!this.form.bladeRegionProvinceId) {
a.push(res.data.data.bladeRegionProvinceId);
a.push(res.data.data.bladeRegionCityId);
a.push(res.data.data.bladeRegionAreaId);
}
this.form.bladeRegionProvinceId = a;
2 years ago
if (!!this.form.leaseAccessories) {
if (this.form.leaseAccessories.includes(',')) {
let le = [];
2 years ago
let d = this.form.leaseAccessories.splice(',');
d.forEach(i => {
let q = {
name: '',
url: i
};
le.push(q);
2 years ago
});
this.fileList = le;
2 years ago
} else {
this.fileList = [{
name: '',
url: this.form.leaseAccessories
}];
}
}
});
},
handleDrawer(row) {
this.basicClientId = row.id;
this.drawer = true;
},
//历史记录
handleHistory(row) {
// this.basicClientId = row.id;
// this.drawer = true;
// this.$router.push('/basicdata/brand/basicHistoricalContract?id='+row.id+";name="+row.clientName);
this.$router.push({
2 years ago
path: '/basicdata/brand/basicHistoricalContract',
query: {
id: row.id,
2 years ago
name: '历史记录 - ' + row.clientName
}
});
},
//仓库
handleEntrepot(row) {
// this.basicClientId = row.id;
// this.drawer = true;
// this.$router.push('/basicdata/brand/basicHistoricalContract?id='+row.id+";name="+row.clientName);
this.$router.push({
2 years ago
path: '/basicdata/brand/basicStorageServices',
query: {
id: row.id,
2 years ago
name: '服务仓 - ' + row.clientName,
type: '2'
}
});
},
//联系人
handleLinkman(row) {
this.$router.push({
2 years ago
path: '/basicdata/brand/basicStoreContact',
query: {
id: row.id,
2 years ago
name: '联系人 - ' + row.clientName,
type: 2
}
});
},
//基地
handleBase(row) {
this.$router.push({
2 years ago
path: '/basicdata/brand/basicdataCustomerBase',
query: {
id: row.id,
2 years ago
name: '基地 - ' + row.clientName
}
});
},
//商场
handleStore(row) {
this.$router.push({
2 years ago
path: '/basicdata/brand/basicShop',
query: {
id: row.id,
2 years ago
name: '门店- ' + row.clientName
}
});
},
2 years ago
handleDrawerClose() {
this.basicClientId = '';
this.drawer = false;
},
2 years ago
handleDelete() {
if (this.selectionList.length === 0) {
2 years ago
this.$message.warning('请选择至少一条数据');
return;
}
2 years ago
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
});
},
2 years ago
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
2 years ago
type: 'success',
message: '操作成功!'
});
});
},
2 years ago
beforeClose(done) {
done();
this.form = {};
this.view = false;
},
2 years ago
selectionChange(list) {
this.selectionList = list;
},
2 years ago
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
},
2 years ago
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
2 years ago
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
2 years ago
onLoad(page, params = {}) {
this.loading = true;
2 years ago
console.log('-=-=', this.query);
if (this.dataShi.length > 0) {
console.log('-=-=', this.dataShi);
this.query.contractStartTime = this.dataShi[0];
this.query.contractEntTime = this.dataShi[1];
}
2 years ago
if (!!this.query.bladeRegionProvinceId) {
this.query.bladeRegionCityId = this.query.bladeRegionProvinceId[1];
this.query.bladeRegionAreaId = this.query.bladeRegionProvinceId[2];
this.query.bladeRegionProvinceId = this.query.bladeRegionProvinceId[0];
}
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
2 years ago
console.log(data);
this.clientType.forEach(it => {
data.records.forEach(i => {
if (parseInt(it.dictKey) == parseInt(i.clientType)) {
i.typeService = it.dictValue;
console.log('==-=-=', i.typeService, it.dictKey, it.dictValue);
}
2 years ago
if (i.clientType == '-1') {
i.typeService = '无';
}
2 years ago
});
});
let dz = '';
data.records.forEach(it => {
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) => {
return it.bladeRegionCityId == i.value;
});
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
let arrqu = arrshi[0].children.filter((i) => {
return it.bladeRegionAreaId == i.value;
});
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
2 years ago
dz = arrsheng[0].label + '/' + arrshi[0].label + '/' + arrqu[0].label;
it.bladeRegionProvinceId = dz;
2 years ago
});
// console.log("dzdz",dz);
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>