Browse Source

提交

newStyle
douzhuo 2 years ago
parent
commit
b24531c485
5 changed files with 246 additions and 62 deletions
  1. +45
    -0
      src/api/modules/api.js
  2. +1
    -1
      src/components/wechat/WxEditor.vue
  3. +197
    -59
      src/views/Customer/source.vue
  4. +1
    -0
      src/views/Receive/index.vue
  5. +2
    -2
      vue.config.js

+ 45
- 0
src/api/modules/api.js View File

@@ -1121,3 +1121,48 @@ export function setTargetExecutionRate(data) {
data
})
}

// 客户来源列表
export function getSourceList(data) {
return request({
url: '/autoSR/customer/source/list',
method: 'get',
params: data
})
}

// 添加客户类型
export function setSourceAdd(data) {
return request({
url: '/autoSR/customer/source/add',
method: 'get',
params: data
})
}

// 更新客户来源文字
export function setSourceUpdate(data) {
return request({
url: '/autoSR/customer/source/update',
method: 'get',
params: data
})
}

// 删除客户来源
export function setSourceDel(data) {
return request({
url: '/autoSR/customer/source/del',
method: 'get',
params: data
})
}

// 修改顺序
export function setSourceupDateSort(data) {
return request({
url: '/autoSR/customer/source/updateSort',
method: 'get',
params: data
})
}

+ 1
- 1
src/components/wechat/WxEditor.vue View File

@@ -158,7 +158,7 @@
uploadError() {
// loading动画消失
this.quillUpdateImg = false;
this.$message.error("图片插入失败");
this.error("图片插入失败");
}
}
}


+ 197
- 59
src/views/Customer/source.vue View File

@@ -18,39 +18,22 @@
<!-- 表格 -->
<div class="cen-tab">
<el-table :data="tableData" stripe style="width: 100%" row-key="id">
<el-table-column prop="words" label="序号" align="center">
<el-table-column label="序号" align="center">
<template slot-scope="scope">
{{ scope.$index + 1 }}
</template>
</el-table-column>
<el-table-column prop="houseName" label="来源" align="center">
<el-table-column prop="sourceName" label="来源" align="center">
</el-table-column>
<el-table-column prop="createDate" label="关联客户" align="center">
<el-table-column prop="customerCount" label="关联客户" align="center">
</el-table-column>
<!-- scope -->
<el-table-column label="操作" align="center">
<template slot-scope="scope" style="">
<el-button
v-if="cus_sou_edit"
type="text"
@click="bianji(scope.row)"
>编辑</el-button
>
<el-button v-if="cus_sou_del" type="text" @click="del(scope.row)"
>删除</el-button
>
<el-button type="text" @click="bianji(scope.row)">编辑</el-button>
<el-button type="text" @click="del(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<div style="display: flex; justify-content: flex-end; margin-top: 10px">
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="Page"
:page-sizes="[10, 30, 50]"
:page-size="size"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
>
</el-pagination>
</div>
</div>

<el-dialog
@@ -66,9 +49,9 @@
label-width="140px"
style="width: 60%; margin: 0 auto"
>
<el-form-item label="客户来源" prop="source">
<el-form-item label="客户来源" prop="sourceName">
<el-input
v-model="ruleForm.source"
v-model="ruleForm.sourceName"
maxlength="8"
clearable
></el-input>
@@ -76,17 +59,20 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false">取 消</el-button>
<el-button type="primary" :loading="loadingFlag" @click="editor()"
<el-button type="primary" :loading="loadingFlag" @click="addForm"
>保存</el-button
>
</div>
</el-dialog>

<el-dialog
title="删除来源"
:visible.sync="delVisible"
@close="$refs.ruleForm.resetFields()"
>
<div style="text-align:center;margin-bottom:20px;">请将此来源的客户转移到以下来源</div>
<div style="text-align: center; margin-bottom: 20px">
请将此来源的客户转移到以下来源
</div>
<el-form
:model="ruleForm"
label-position="labelPosition"
@@ -95,18 +81,28 @@
label-width="140px"
style="width: 60%; margin: 0 auto"
>
<el-form-item label="客户移至" prop="source">
<el-input
v-model="ruleForm.source"
maxlength="8"
clearable
></el-input>
<el-form-item label="客户移至" prop="newSourceId">
<el-select v-model="deleteParams.newSourceId" placeholder="请选择">
<el-option
v-for="item in delIdList"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="delVisible = false">取 消</el-button>
<el-button type="primary" :loading="loadingFlag" @click="editor()"
>保存</el-button
<el-button
@click="
delVisible = false;
deleteParams.id = '';
"
>取 消</el-button
>
<el-button type="primary" :loading="loadingFlag" @click="deleteItem"
>删除</el-button
>
</div>
</el-dialog>
@@ -123,20 +119,7 @@ export default {
currentPage4: 1,
value: "",
input: "",
tableData: [
{
id: "0",
houseName: "123",
},
{
id: "1",
houseName: "456",
},
{
id: "2",
houseName: "789",
},
],
tableData: [], // 客户来源列表
multipleSelection: [],
dialogVisible: false,
loadingFlag: false,
@@ -145,6 +128,7 @@ export default {
ruleForm: {
editFlag: "",
id: "",
sourceName: "", //
},
houseId: "",
houseList: [],
@@ -153,11 +137,34 @@ export default {
words: "",
total: 0,
ruleser: {
source: [
{ required: true, message: "请填写户来源", trigger: "blur" },
sourceName: [
{ required: true, message: "请填写户来源", trigger: "blur" },
],
},
editFlag: false,
paramsList: {
// 列表入参
id: "",
sourceName: "", // 资源名称
houseId:
localStorage.getItem("houseId"), // 楼盘id
sort: "", // 顺序
},

deleteParams: {
// 删除入参
id: "",
newSourceId: "",
houseId:
localStorage.getItem("houseId"), // 楼盘id
},
delIdList: [], // 要转移的数据位置

editParams: {
// 编辑这一项
id: "", //
sourceName: "", //
},
};
},
computed: {
@@ -171,11 +178,105 @@ export default {
},
mounted() {
this.rowDrop();
return;

this.zkhousePage();
this.getList();
},
methods: {
/*判断类型选择使用方法*/
addForm() {
if (!this.editFlag) this.addCustomer();
else this.editCustomer();
},

// 初始化提交变量
initRuleForm() {
this.ruleForm = {
editFlag: "",
id: "",
sourceName: "", //
};
},

// 确认添加
addCustomer() {
this.$refs.ruleForm.validate((valid) => {
this.$api.api
.setSourceAdd({
sourceName: this.ruleForm.sourceName,
houseId: this.paramsList.houseId,
})
.then((res) => {
console.log(res);
if (res.code == 10000) {
this.dialogVisible = false;
this.$message({
message: res.message,
type: "success",
});
this.initRuleForm();
this.getList();
} else {
this.$message({
message: res.message,
type: "error",
});
}
});
});
},

// 编辑
editCustomer() {
this.$refs.ruleForm.validate((valid) => {
this.$api.api.setSourceUpdate(this.ruleForm).then((res) => {
console.log(res);
if (res.code == 10000) {
this.dialogVisible = false;
this.$message({
message: res.message,
type: "success",
});
this.initRuleForm();
this.getList();
} else {
this.$message({
message: res.message,
type: "error",
});
}
});
});
},

// 删除确认删除item
deleteItem() {
if (!this.deleteParams.newSourceId) {
this.$message({
message: "请选择客户移至",
type: "error",
});
return;
}
this.$api.api.setSourceDel(this.deleteParams).then((res) => {
console.log(res);
this.delVisible = false;
this.$message({
message: res.message,
});
this.deleteParams.newSourceId = "";
this.getList();
});
},

// 获取列表
getList() {
this.$api.api.getSourceList(this.paramsList).then((res) => {
if (res.code == 10000) {
console.log(res, "list");
this.tableData = res.data;
}
});
},

//行拖拽
rowDrop() {
const tbody = document.querySelector(".el-table__body-wrapper tbody");
@@ -186,6 +287,30 @@ export default {
const currRow = _this.tableData.splice(oldIndex, 1)[0];
console.log(currRow);
_this.tableData.splice(newIndex, 0, currRow);

let list = _this.tableData.map((item) => {
return item.id;
});
_this.$api.api
.setSourceupDateSort({
houseId: _this.paramsList.houseId,
newSorts: list.join(","),
})
.then((res) => {
console.log(res);
if (res.code == 10000) {
_this.$message({
message: res.message,
type: "success",
});
_this.getList();
} else {
_this.$message({
message: res.message,
type: "error",
});
}
});
},
});
},
@@ -237,13 +362,26 @@ export default {
},
//删除
del(item) {
this.delIdList = [];
this.deleteParams.id = item.id;
let arr = [];
this.tableData.forEach((items) => {
if (items.id != item.id) {
arr.push({
label: items.sourceName,
value: items.id,
});
}
});
console.log(arr);
this.delIdList = arr;
this.delVisible = true;
},
//编辑
bianji(row) {
this.ruleForm.id = row.id;
this.dialogVisible = true;
this.ruleForm.words = row.words;
this.ruleForm.sourceName = row.sourceName;
this.ruleForm.id = row.id;
this.editFlag = true;
},



+ 1
- 0
src/views/Receive/index.vue View File

@@ -2209,6 +2209,7 @@ export default {
this.tablist = [];
if (this.userinformationlist.yon == 0) {
this.isd = audopbj[this.AudioIdx].id;
console.log(audopbj[this.AudioIdx].speakerNum, 'speakerNum')
for (var i = 0; i <= audopbj[this.AudioIdx].speakerNum; i++) {
if (i == 0) {
this.tablist.push({


+ 2
- 2
vue.config.js View File

@@ -4,10 +4,10 @@
*/
// const url = 'http://pigx-gateway'
// const url = 'http://39.97.167.65:9999' //测试
// const url = 'http://192.168.31.169:9999' //长龙
const url = 'http://192.168.31.167:9999' //长龙
// const url = 'http://192.168.31.134:9999' //嘉豪
// const url = 'http://192.168.31.100:9999' //王笑
const url = 'http://62.234.122.43:9999' //正式
// const url = 'http://62.234.122.43:9999' //正式

const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css']


Loading…
Cancel
Save