|
@@ -1,28 +1,28 @@
|
|
|
<template>
|
|
|
<el-dialog
|
|
|
+ v-loading="loading"
|
|
|
:title="title"
|
|
|
:center="true"
|
|
|
align="left"
|
|
|
top="12vh"
|
|
|
width="900px"
|
|
|
- @close="showModelThis = false"
|
|
|
:close-on-click-modal="false"
|
|
|
:visible.sync="showModelThis"
|
|
|
- v-loading="loading"
|
|
|
append-to-body
|
|
|
element-loading-text="拼命加载中"
|
|
|
element-loading-spinner="el-icon-loading"
|
|
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
+ @close="showModelThis = false"
|
|
|
>
|
|
|
<el-card style="margin-top: -20px">
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="24">
|
|
|
<el-form
|
|
|
+ ref="ruleForm"
|
|
|
label-position="right"
|
|
|
label-width="110px"
|
|
|
:model="ruleForm"
|
|
|
:rules="rulesThis"
|
|
|
- ref="ruleForm"
|
|
|
>
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
@@ -33,8 +33,8 @@
|
|
|
:disabled="isDetail !== '003'"
|
|
|
placeholder="请选择组织/企业"
|
|
|
>
|
|
|
- <el-option label="组织" value="0"></el-option>
|
|
|
- <el-option label="企业" value="1"></el-option>
|
|
|
+ <el-option label="组织" value="0" />
|
|
|
+ <el-option label="企业" value="1" />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -49,7 +49,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
- <el-col :span="24" v-if="ruleForm.region === '0'">
|
|
|
+ <el-col v-if="ruleForm.region === '0'" :span="24">
|
|
|
<el-form-item label="组织名称:" prop="name">
|
|
|
<el-input
|
|
|
v-model="ruleForm.name"
|
|
@@ -59,22 +59,21 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="24" v-if="ruleForm.region === '1'">
|
|
|
+ <el-col v-if="ruleForm.region === '1'" :span="24">
|
|
|
<el-form-item label="企业名称:" prop="companyName">
|
|
|
<el-input
|
|
|
v-model="ruleForm.companyName"
|
|
|
:disabled="isDetail == '007'"
|
|
|
placeholder="企业名称"
|
|
|
maxlength="50"
|
|
|
- ><template v-if="organName" slot="prepend">{{
|
|
|
- organName
|
|
|
- }}</template></el-input
|
|
|
- >
|
|
|
+ ><template v-if="organName" slot="prepend">{{
|
|
|
+ organName
|
|
|
+ }}</template></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col
|
|
|
- :span="24"
|
|
|
v-if="ruleForm.region === '1'"
|
|
|
+ :span="24"
|
|
|
style="padding: 0 0 16px 0"
|
|
|
>
|
|
|
<el-table
|
|
@@ -118,7 +117,7 @@
|
|
|
label="邮箱"
|
|
|
show-overflow-tooltip
|
|
|
/>
|
|
|
- <el-table-column fixed="right" v-if="isDetail !== '007'">
|
|
|
+ <el-table-column v-if="isDetail !== '007'" fixed="right">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<span>操作</span>
|
|
|
<el-tooltip
|
|
@@ -139,7 +138,7 @@
|
|
|
<i
|
|
|
class="el-icon-edit tb-icon"
|
|
|
@click="openEdit(scope.$index, scope.row)"
|
|
|
- ></i>
|
|
|
+ />
|
|
|
</el-tooltip>
|
|
|
<el-tooltip
|
|
|
effect="dark"
|
|
@@ -149,13 +148,13 @@
|
|
|
<i
|
|
|
class="el-icon-delete tb-icon"
|
|
|
@click="openDelete(scope.$index)"
|
|
|
- ></i>
|
|
|
+ />
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<contact-modal
|
|
|
- :showModel="editModel"
|
|
|
+ :show-model="editModel"
|
|
|
:index="findex"
|
|
|
:sitem="sitem"
|
|
|
@cancel="editModel = false"
|
|
@@ -167,7 +166,7 @@
|
|
|
v-if="isDetail !== '007'"
|
|
|
type="primary"
|
|
|
@click="submitForm"
|
|
|
- >保 存
|
|
|
+ >保 存
|
|
|
</el-button>
|
|
|
<el-button @click="showModelThis = false">{{
|
|
|
isDetail == "007" ? "关 闭" : "取 消"
|
|
@@ -180,174 +179,174 @@
|
|
|
</el-card>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
- <script>
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
-import asyncRequest from "@/apis/service/serviceParam/business";
|
|
|
-import contactModal from "./contactModal";
|
|
|
+<script>
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
+import asyncRequest from '@/apis/service/serviceParam/business'
|
|
|
+import contactModal from './contactModal'
|
|
|
export default {
|
|
|
- name: "goodsBack",
|
|
|
- props: ["showModel", "isDetail", "id", "organ", "kh"],
|
|
|
- mixins: [resToken],
|
|
|
+ name: 'GoodsBack',
|
|
|
components: {
|
|
|
- contactModal,
|
|
|
+ contactModal
|
|
|
},
|
|
|
+ mixins: [resToken],
|
|
|
+ props: ['showModel', 'isDetail', 'id', 'organ', 'kh'],
|
|
|
data() {
|
|
|
return {
|
|
|
findex: -1,
|
|
|
sitem: null,
|
|
|
editModel: false,
|
|
|
loading: false,
|
|
|
- title: "添加企业/组织",
|
|
|
+ title: '添加企业/组织',
|
|
|
showModelThis: this.showModel,
|
|
|
ruleForm: {},
|
|
|
rulesThis: this.rules,
|
|
|
- organName: "",
|
|
|
+ organName: '',
|
|
|
tableData: [],
|
|
|
old_tableData: [],
|
|
|
rules: {
|
|
|
region: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: "请选择组织/企业",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
+ message: '请选择组织/企业',
|
|
|
+ trigger: 'change'
|
|
|
+ }
|
|
|
],
|
|
|
name: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: "组织名称不能为空",
|
|
|
- trigger: "blur",
|
|
|
- },
|
|
|
+ message: '组织名称不能为空',
|
|
|
+ trigger: 'blur'
|
|
|
+ }
|
|
|
],
|
|
|
companyName: [
|
|
|
{
|
|
|
required: false,
|
|
|
- message: "企业名称不能为空",
|
|
|
- trigger: "blur",
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- };
|
|
|
+ message: '企业名称不能为空',
|
|
|
+ trigger: 'blur'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
- showModel: function (val) {
|
|
|
- this.showModelThis = val;
|
|
|
+ showModel: function(val) {
|
|
|
+ this.showModelThis = val
|
|
|
if (val) {
|
|
|
- this.initForm();
|
|
|
+ this.initForm()
|
|
|
}
|
|
|
},
|
|
|
showModelThis(val) {
|
|
|
if (!val) {
|
|
|
- this.$emit("cancel");
|
|
|
+ this.$emit('cancel')
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
async initForm() {
|
|
|
- this.loading = true;
|
|
|
- this.tableData = [];
|
|
|
- this.old_tableData = [];
|
|
|
- this.organName = "";
|
|
|
- await this.resetForm();
|
|
|
- if (this.isDetail === "003") {
|
|
|
- this.title = "添加企业/组织";
|
|
|
- this.rulesThis = this.rules;
|
|
|
- } else if (this.isDetail === "005") {
|
|
|
- this.title = "修改企业/组织";
|
|
|
- this.rulesThis = this.rules;
|
|
|
- await this.initData();
|
|
|
+ this.loading = true
|
|
|
+ this.tableData = []
|
|
|
+ this.old_tableData = []
|
|
|
+ this.organName = ''
|
|
|
+ await this.resetForm()
|
|
|
+ if (this.isDetail === '003') {
|
|
|
+ this.title = '添加企业/组织'
|
|
|
+ this.rulesThis = this.rules
|
|
|
+ } else if (this.isDetail === '005') {
|
|
|
+ this.title = '修改企业/组织'
|
|
|
+ this.rulesThis = this.rules
|
|
|
+ await this.initData()
|
|
|
} else {
|
|
|
- this.title = "查看企业/组织";
|
|
|
- this.rulesThis = {};
|
|
|
- await this.initData();
|
|
|
+ this.title = '查看企业/组织'
|
|
|
+ this.rulesThis = {}
|
|
|
+ await this.initData()
|
|
|
}
|
|
|
- this.setOrganName();
|
|
|
- this.loading = false;
|
|
|
+ this.setOrganName()
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
setOrganName() {
|
|
|
- this.organName = "";
|
|
|
+ this.organName = ''
|
|
|
if (this.organ && this.organ.length > 1) {
|
|
|
this.organ.forEach((e) => {
|
|
|
- if (e.id !== "0") {
|
|
|
- console.log(e.name);
|
|
|
- this.organName += e.name;
|
|
|
- this.ruleForm.pid = e.id;
|
|
|
+ if (e.id !== '0') {
|
|
|
+ console.log(e.name)
|
|
|
+ this.organName += e.name
|
|
|
+ this.ruleForm.pid = e.id
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
} else {
|
|
|
- this.organName = "";
|
|
|
+ this.organName = ''
|
|
|
}
|
|
|
- const { companyName } = this.ruleForm;
|
|
|
- let isok = companyName.indexOf(this.organName) == 0;
|
|
|
+ const { companyName } = this.ruleForm
|
|
|
+ const isok = companyName.indexOf(this.organName) == 0
|
|
|
if (isok) {
|
|
|
- let str = companyName;
|
|
|
+ const str = companyName
|
|
|
this.ruleForm.companyName = str.substring(
|
|
|
this.organName.length,
|
|
|
this.ruleForm.companyName.length
|
|
|
- );
|
|
|
+ )
|
|
|
}
|
|
|
- console.log(isok);
|
|
|
+ console.log(isok)
|
|
|
},
|
|
|
openEdit(index, sitem) {
|
|
|
- this.findex = index;
|
|
|
- this.sitem = sitem;
|
|
|
- this.editModel = true;
|
|
|
+ this.findex = index
|
|
|
+ this.sitem = sitem
|
|
|
+ this.editModel = true
|
|
|
},
|
|
|
openDelete(index) {
|
|
|
- this.tableData.splice(index, 1);
|
|
|
+ this.tableData.splice(index, 1)
|
|
|
},
|
|
|
async resetForm() {
|
|
|
await this.$nextTick(() => {
|
|
|
if (this.$refs.ruleForm) {
|
|
|
- this.$refs.ruleForm.resetFields();
|
|
|
- this.$refs.ruleForm.clearValidate();
|
|
|
+ this.$refs.ruleForm.resetFields()
|
|
|
+ this.$refs.ruleForm.clearValidate()
|
|
|
this.ruleForm = {
|
|
|
- id: "",
|
|
|
- pid: "0",
|
|
|
- region: "0",
|
|
|
- name: "",
|
|
|
- companyName: "",
|
|
|
- };
|
|
|
+ id: '',
|
|
|
+ pid: '0',
|
|
|
+ region: '0',
|
|
|
+ name: '',
|
|
|
+ companyName: ''
|
|
|
+ }
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
async initData() {
|
|
|
- console.log(this.kh, this.id);
|
|
|
- let res = {};
|
|
|
- if (this.kh + "" === "0") {
|
|
|
- res = await asyncRequest.zdetail({ id: this.id });
|
|
|
+ console.log(this.kh, this.id)
|
|
|
+ let res = {}
|
|
|
+ if (this.kh + '' === '0') {
|
|
|
+ res = await asyncRequest.zdetail({ id: this.id })
|
|
|
} else {
|
|
|
- res = await asyncRequest.qdetail({ companyNo: this.id });
|
|
|
+ res = await asyncRequest.qdetail({ companyNo: this.id })
|
|
|
}
|
|
|
- const { code, data, message } = res;
|
|
|
+ const { code, data, message } = res
|
|
|
if (code === 0) {
|
|
|
- const { pid, name, pname, companyName, parent, member, id } = data;
|
|
|
- console.log(data);
|
|
|
- this.organName = pname;
|
|
|
+ const { pid, name, pname, companyName, parent, member, id } = data
|
|
|
+ console.log(data)
|
|
|
+ this.organName = pname
|
|
|
this.ruleForm = {
|
|
|
id: id,
|
|
|
- region: this.kh + "" || "0",
|
|
|
- pid: parent ? parent : pid ? pid : "0",
|
|
|
- name: name || "",
|
|
|
- companyName: companyName || "",
|
|
|
- };
|
|
|
+ region: this.kh + '' || '0',
|
|
|
+ pid: parent || (pid || '0'),
|
|
|
+ name: name || '',
|
|
|
+ companyName: companyName || ''
|
|
|
+ }
|
|
|
if (member && member.length > 0) {
|
|
|
- this.old_tableData = JSON.parse(JSON.stringify(member));
|
|
|
- this.tableData = JSON.parse(JSON.stringify(member));
|
|
|
+ this.old_tableData = JSON.parse(JSON.stringify(member))
|
|
|
+ this.tableData = JSON.parse(JSON.stringify(member))
|
|
|
} else {
|
|
|
- this.old_tableData = [];
|
|
|
- this.tableData = [];
|
|
|
+ this.old_tableData = []
|
|
|
+ this.tableData = []
|
|
|
}
|
|
|
- this.$refs.ruleForm.resetFields();
|
|
|
- this.$refs.ruleForm.clearValidate();
|
|
|
+ this.$refs.ruleForm.resetFields()
|
|
|
+ this.$refs.ruleForm.clearValidate()
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(message);
|
|
|
+ this.$message.warning(message)
|
|
|
}
|
|
|
},
|
|
|
contactRefresh(e) {
|
|
|
- this.editModel = false;
|
|
|
+ this.editModel = false
|
|
|
const {
|
|
|
index,
|
|
|
contactor,
|
|
@@ -358,115 +357,115 @@ export default {
|
|
|
qqaccount,
|
|
|
email,
|
|
|
id,
|
|
|
- is_del,
|
|
|
- } = e;
|
|
|
- if (index + "" === "-1") {
|
|
|
- this.tableData.push(e);
|
|
|
+ is_del
|
|
|
+ } = e
|
|
|
+ if (index + '' === '-1') {
|
|
|
+ this.tableData.push(e)
|
|
|
} else {
|
|
|
- let findex = parseInt(index);
|
|
|
- this.tableData[findex].contactor = contactor || "";
|
|
|
- this.tableData[findex].commobile = commobile || "";
|
|
|
- this.tableData[findex].position = position || "";
|
|
|
- this.tableData[findex].comdepart = comdepart || "";
|
|
|
- this.tableData[findex].wxaccount = wxaccount || "";
|
|
|
- this.tableData[findex].qqaccount = qqaccount || "";
|
|
|
- this.tableData[findex].email = email || "";
|
|
|
- this.tableData[findex].id = id || "";
|
|
|
- this.tableData[findex].is_del = is_del || "0";
|
|
|
+ const findex = parseInt(index)
|
|
|
+ this.tableData[findex].contactor = contactor || ''
|
|
|
+ this.tableData[findex].commobile = commobile || ''
|
|
|
+ this.tableData[findex].position = position || ''
|
|
|
+ this.tableData[findex].comdepart = comdepart || ''
|
|
|
+ this.tableData[findex].wxaccount = wxaccount || ''
|
|
|
+ this.tableData[findex].qqaccount = qqaccount || ''
|
|
|
+ this.tableData[findex].email = email || ''
|
|
|
+ this.tableData[findex].id = id || ''
|
|
|
+ this.tableData[findex].is_del = is_del || '0'
|
|
|
}
|
|
|
},
|
|
|
async submitForm() {
|
|
|
- await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
+ await this.$refs.ruleForm.validate(async(valid) => {
|
|
|
if (valid) {
|
|
|
if (this.loading) {
|
|
|
- return;
|
|
|
+ return
|
|
|
}
|
|
|
- this.loading = true;
|
|
|
- const { id, pid, name, companyName } = this.ruleForm;
|
|
|
- let res = {};
|
|
|
- if (this.ruleForm.region === "0") {
|
|
|
- let zitem = {
|
|
|
+ this.loading = true
|
|
|
+ const { id, pid, name, companyName } = this.ruleForm
|
|
|
+ let res = {}
|
|
|
+ if (this.ruleForm.region === '0') {
|
|
|
+ const zitem = {
|
|
|
id: id,
|
|
|
pid: pid,
|
|
|
- name: name,
|
|
|
- };
|
|
|
- if (this.isDetail === "003") {
|
|
|
- delete zitem["id"];
|
|
|
- res = await asyncRequest.zadd(zitem);
|
|
|
+ name: name
|
|
|
+ }
|
|
|
+ if (this.isDetail === '003') {
|
|
|
+ delete zitem['id']
|
|
|
+ res = await asyncRequest.zadd(zitem)
|
|
|
} else {
|
|
|
- res = await asyncRequest.zupdate(zitem);
|
|
|
+ res = await asyncRequest.zupdate(zitem)
|
|
|
}
|
|
|
} else {
|
|
|
if (this.tableData.length === 0) {
|
|
|
- this.$message.warning("至少填写一个联系人!");
|
|
|
- this.loading = false;
|
|
|
- return;
|
|
|
+ this.$message.warning('至少填写一个联系人!')
|
|
|
+ this.loading = false
|
|
|
+ return
|
|
|
}
|
|
|
- let qitem = {
|
|
|
+ const qitem = {
|
|
|
id: id,
|
|
|
companyName: this.organName + companyName,
|
|
|
parent: pid,
|
|
|
- customer_member: this.getCustomer(),
|
|
|
- };
|
|
|
+ customer_member: this.getCustomer()
|
|
|
+ }
|
|
|
|
|
|
- if (this.isDetail === "003") {
|
|
|
- delete qitem["id"];
|
|
|
- res = await asyncRequest.qadd(qitem);
|
|
|
+ if (this.isDetail === '003') {
|
|
|
+ delete qitem['id']
|
|
|
+ res = await asyncRequest.qadd(qitem)
|
|
|
} else {
|
|
|
- res = await asyncRequest.qupdate(qitem);
|
|
|
+ res = await asyncRequest.qupdate(qitem)
|
|
|
}
|
|
|
}
|
|
|
- this.loading = false;
|
|
|
+ this.loading = false
|
|
|
if (res && res.code === 0) {
|
|
|
- const title = this.isDetail === "003" ? "添加成功!" : "修改成功!";
|
|
|
+ const title = this.isDetail === '003' ? '添加成功!' : '修改成功!'
|
|
|
this.$notify.success({
|
|
|
title,
|
|
|
- message: "",
|
|
|
- });
|
|
|
- this.showModelThis = false;
|
|
|
+ message: ''
|
|
|
+ })
|
|
|
+ this.showModelThis = false
|
|
|
// 刷新
|
|
|
- this.$emit("refresh");
|
|
|
+ this.$emit('refresh')
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ this.$message.warning(res.message)
|
|
|
}
|
|
|
} else {
|
|
|
- console.log("error submit!!");
|
|
|
- return false;
|
|
|
+ console.log('error submit!!')
|
|
|
+ return false
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
getCustomer() {
|
|
|
- let list = JSON.parse(JSON.stringify(this.tableData));
|
|
|
- let oldlist = JSON.parse(JSON.stringify(this.old_tableData));
|
|
|
- let hasIDlist = [];
|
|
|
+ const list = JSON.parse(JSON.stringify(this.tableData))
|
|
|
+ const oldlist = JSON.parse(JSON.stringify(this.old_tableData))
|
|
|
+ const hasIDlist = []
|
|
|
list.forEach((a) => {
|
|
|
- if (a.id !== "") {
|
|
|
- hasIDlist.push(a);
|
|
|
+ if (a.id !== '') {
|
|
|
+ hasIDlist.push(a)
|
|
|
}
|
|
|
- });
|
|
|
- let newList = [];
|
|
|
- let resList = [];
|
|
|
+ })
|
|
|
+ const newList = []
|
|
|
+ const resList = []
|
|
|
oldlist.forEach((a, ai) => {
|
|
|
- let item = null;
|
|
|
- let index = hasIDlist.findIndex((b) => a.id + '' === b.id + '');
|
|
|
+ let item = null
|
|
|
+ const index = hasIDlist.findIndex((b) => a.id + '' === b.id + '')
|
|
|
if (index === -1) {
|
|
|
- item = JSON.parse(JSON.stringify(a));
|
|
|
- item.is_del = "1";
|
|
|
+ item = JSON.parse(JSON.stringify(a))
|
|
|
+ item.is_del = '1'
|
|
|
} else {
|
|
|
- item = JSON.parse(JSON.stringify(hasIDlist[index]));
|
|
|
+ item = JSON.parse(JSON.stringify(hasIDlist[index]))
|
|
|
}
|
|
|
- newList.push(item);
|
|
|
- });
|
|
|
+ newList.push(item)
|
|
|
+ })
|
|
|
list.forEach((b) => {
|
|
|
- if (b.id === "") {
|
|
|
- b.is_del = "0";
|
|
|
- newList.push(b);
|
|
|
+ if (b.id === '') {
|
|
|
+ b.is_del = '0'
|
|
|
+ newList.push(b)
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
newList.forEach((a) => {
|
|
|
- let m = {
|
|
|
+ const m = {
|
|
|
id: a.id,
|
|
|
contactor: a.contactor,
|
|
|
position: a.position,
|
|
@@ -475,16 +474,16 @@ export default {
|
|
|
wxaccount: a.wxaccount,
|
|
|
qqaccount: a.qqaccount,
|
|
|
email: a.email,
|
|
|
- is_del: a.is_del || "0",
|
|
|
- status: a.status || "1",
|
|
|
- };
|
|
|
- resList.push(m);
|
|
|
- });
|
|
|
+ is_del: a.is_del || '0',
|
|
|
+ status: a.status || '1'
|
|
|
+ }
|
|
|
+ resList.push(m)
|
|
|
+ })
|
|
|
|
|
|
- return resList;
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ return resList
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
@@ -492,4 +491,4 @@ export default {
|
|
|
// width: calc( 100% - 110px);
|
|
|
}
|
|
|
</style>
|
|
|
-
|
|
|
+
|