addEdit.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. <template>
  2. <el-dialog
  3. :title="title"
  4. :center="true"
  5. align="left"
  6. top="12vh"
  7. width="900px"
  8. @close="showModelThis = false"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. v-loading="loading"
  12. append-to-body
  13. element-loading-text="拼命加载中"
  14. element-loading-spinner="el-icon-loading"
  15. element-loading-background="rgba(0, 0, 0, 0.8)"
  16. >
  17. <el-card style="margin-top: -20px">
  18. <el-row :gutter="10">
  19. <el-col :span="24">
  20. <el-form
  21. label-position="right"
  22. label-width="110px"
  23. :model="ruleForm"
  24. :rules="rulesThis"
  25. ref="ruleForm"
  26. >
  27. <el-row>
  28. <el-col :span="12">
  29. <el-form-item label="组织/企业:" prop="region">
  30. <el-select
  31. v-model="ruleForm.region"
  32. style="width: 100%"
  33. :disabled="isDetail == '007'"
  34. placeholder="请选择组织/企业"
  35. >
  36. <el-option label="组织" value="0"></el-option>
  37. <el-option label="企业" value="1"></el-option>
  38. </el-select>
  39. </el-form-item>
  40. </el-col>
  41. <el-col :span="12">
  42. <el-form-item label="上级组织" prop="pid">
  43. <el-input
  44. v-model="organName"
  45. disabled
  46. :placeholder="organName ? '上级组织' : '暂无上级组织'"
  47. minlength="100"
  48. />
  49. </el-form-item>
  50. </el-col>
  51. <el-col :span="24" v-if="ruleForm.region === '0'">
  52. <el-form-item label="组织名称:" prop="name">
  53. <el-input
  54. v-model="ruleForm.name"
  55. :disabled="isDetail == '007'"
  56. placeholder="组织名称"
  57. minlength="50"
  58. />
  59. </el-form-item>
  60. </el-col>
  61. <el-col :span="24" v-if="ruleForm.region === '1'">
  62. <el-form-item label="企业名称:" prop="companyName">
  63. <el-input
  64. v-model="ruleForm.companyName"
  65. :disabled="isDetail == '007'"
  66. placeholder="企业名称"
  67. minlength="50"
  68. ><template v-if="organName" slot="prepend">{{
  69. organName
  70. }}</template></el-input
  71. >
  72. </el-form-item>
  73. </el-col>
  74. <el-col
  75. :span="24"
  76. v-if="ruleForm.region === '1'"
  77. style="padding: 0 0 16px 0"
  78. >
  79. <el-table
  80. :data="tableData"
  81. :size="'mini'"
  82. border
  83. style="width: 100%"
  84. >
  85. <el-table-column
  86. prop="contactor"
  87. label="联系人"
  88. show-overflow-tooltip
  89. />
  90. <el-table-column
  91. prop="commobile"
  92. label="联系电话"
  93. show-overflow-tooltip
  94. />
  95. <el-table-column
  96. prop="position"
  97. label="职位"
  98. show-overflow-tooltip
  99. />
  100. <el-table-column
  101. prop="comdepart"
  102. label="所在部门"
  103. show-overflow-tooltip
  104. />
  105. <el-table-column
  106. prop="wxaccount"
  107. label="微信号"
  108. show-overflow-tooltip
  109. />
  110. <el-table-column
  111. prop="qqaccount"
  112. label="qq号"
  113. show-overflow-tooltip
  114. />
  115. <el-table-column
  116. prop="email"
  117. label="邮箱"
  118. show-overflow-tooltip
  119. />
  120. <el-table-column fixed="right" v-if="isDetail !== '007'">
  121. <template slot="header" slot-scope="scope">
  122. <span>操作</span>
  123. <el-tooltip
  124. class="item"
  125. effect="dark"
  126. content="添加"
  127. placement="top"
  128. >
  129. <i
  130. class="el-icon-circle-plus-outline fr"
  131. style="font-size: 18px; margin-top: 2px"
  132. @click="openEdit('-1', {})"
  133. />
  134. </el-tooltip>
  135. </template>
  136. <template slot-scope="scope">
  137. <el-tooltip effect="dark" content="修改" placement="top">
  138. <i
  139. class="el-icon-edit tb-icon"
  140. @click="openEdit(scope.$index, scope.row)"
  141. ></i>
  142. </el-tooltip>
  143. <el-tooltip
  144. effect="dark"
  145. content="禁/启用"
  146. placement="top"
  147. >
  148. <i
  149. class="el-icon-delete tb-icon"
  150. @click="openDelete(scope.$index)"
  151. ></i>
  152. </el-tooltip>
  153. </template>
  154. </el-table-column>
  155. </el-table>
  156. <contact-modal
  157. :showModel="editModel"
  158. :index="findex"
  159. :sitem="sitem"
  160. @cancel="editModel = false"
  161. @refresh="contactRefresh"
  162. />
  163. </el-col>
  164. <el-col :span="24" style="text-align: right">
  165. <el-button
  166. v-if="isDetail !== '007'"
  167. type="primary"
  168. @click="submitForm"
  169. >保 存
  170. </el-button>
  171. <el-button @click="showModelThis = false">{{
  172. isDetail == "007" ? "关 闭" : "取 消"
  173. }}</el-button>
  174. </el-col>
  175. </el-row>
  176. </el-form>
  177. </el-col>
  178. </el-row>
  179. </el-card>
  180. </el-dialog>
  181. </template>
  182. <script>
  183. import resToken from "@/mixins/resToken";
  184. import asyncRequest from "@/apis/service/serviceParam/business";
  185. import contactModal from "./contactModal";
  186. export default {
  187. name: "goodsBack",
  188. props: ["showModel", "isDetail", "id", "organ", "kh"],
  189. mixins: [resToken],
  190. components: {
  191. contactModal,
  192. },
  193. data() {
  194. return {
  195. findex: -1,
  196. sitem: null,
  197. editModel: false,
  198. loading: false,
  199. title: "添加企业/组织",
  200. showModelThis: this.showModel,
  201. ruleForm: {},
  202. rulesThis: this.rules,
  203. organName: "",
  204. tableData: [],
  205. old_tableData: [],
  206. rules: {
  207. region: [
  208. {
  209. required: true,
  210. message: "请选择组织/企业",
  211. trigger: "change",
  212. },
  213. ],
  214. name: [
  215. {
  216. required: true,
  217. message: "组织名称不能为空",
  218. trigger: "blur",
  219. },
  220. ],
  221. companyName: [
  222. {
  223. required: false,
  224. message: "企业名称不能为空",
  225. trigger: "blur",
  226. },
  227. ],
  228. },
  229. };
  230. },
  231. watch: {
  232. showModel: function (val) {
  233. this.showModelThis = val;
  234. if (val) {
  235. this.initForm();
  236. }
  237. },
  238. showModelThis(val) {
  239. if (!val) {
  240. this.$emit("cancel");
  241. }
  242. },
  243. },
  244. methods: {
  245. async initForm() {
  246. this.loading = true;
  247. this.tableData = [];
  248. this.old_tableData = [];
  249. this.organName = "";
  250. await this.resetForm();
  251. if (this.isDetail === "003") {
  252. this.title = "添加企业/组织";
  253. this.rulesThis = this.rules;
  254. } else if (this.isDetail === "005") {
  255. this.title = "修改企业/组织";
  256. this.rulesThis = this.rules;
  257. await this.initData();
  258. } else {
  259. this.title = "查看企业/组织";
  260. this.rulesThis = {};
  261. await this.initData();
  262. }
  263. this.setOrganName();
  264. this.loading = false;
  265. },
  266. setOrganName() {
  267. this.organName = "";
  268. if (this.organ && this.organ.length > 1) {
  269. this.organ.forEach((e) => {
  270. if (e.id !== "0") {
  271. console.log(e.name);
  272. this.organName += e.name;
  273. this.ruleForm.pid = e.id;
  274. }
  275. });
  276. } else {
  277. this.organName = "";
  278. }
  279. const { companyName } = this.ruleForm;
  280. let isok = companyName.indexOf(this.organName) == 0;
  281. if (isok) {
  282. let str = companyName;
  283. this.ruleForm.companyName = str.substring(
  284. this.organName.length,
  285. this.ruleForm.companyName.length
  286. );
  287. }
  288. console.log(isok);
  289. },
  290. openEdit(index, sitem) {
  291. this.findex = index;
  292. this.sitem = sitem;
  293. this.editModel = true;
  294. },
  295. openDelete(index) {
  296. this.tableData.splice(index, 1);
  297. },
  298. async resetForm() {
  299. await this.$nextTick(() => {
  300. if (this.$refs.ruleForm) {
  301. this.$refs.ruleForm.resetFields();
  302. this.$refs.ruleForm.clearValidate();
  303. this.ruleForm = {
  304. id: "",
  305. pid: "0",
  306. region: "0",
  307. name: "",
  308. companyName: "",
  309. };
  310. }
  311. });
  312. },
  313. async initData() {
  314. let res = {};
  315. if (this.kh + "" === "0") {
  316. res = await asyncRequest.zdetail({ id: this.id });
  317. } else {
  318. res = await asyncRequest.qdetail({ id: this.id });
  319. }
  320. const { code, data, message } = res;
  321. if (code === 0) {
  322. const { pid, name, pname, companyName, parent, member } = data;
  323. console.log(data);
  324. this.organName = pname;
  325. this.ruleForm = {
  326. id: this.id,
  327. region: this.kh + "" || "0",
  328. pid: parent ? parent : pid ? pid : "0",
  329. name: name || "",
  330. companyName: companyName || "",
  331. };
  332. if (member && member.length > 0) {
  333. this.old_tableData = JSON.parse(JSON.stringify(member));
  334. this.tableData = JSON.parse(JSON.stringify(member));
  335. } else {
  336. this.old_tableData = [];
  337. this.tableData = [];
  338. }
  339. this.$refs.ruleForm.resetFields();
  340. this.$refs.ruleForm.clearValidate();
  341. } else if (code >= 100 && code <= 104) {
  342. await this.logout();
  343. } else {
  344. this.$message.warning(message);
  345. }
  346. },
  347. contactRefresh(e) {
  348. this.editModel = false;
  349. const {
  350. index,
  351. contactor,
  352. commobile,
  353. position,
  354. comdepart,
  355. wxaccount,
  356. qqaccount,
  357. email,
  358. id,
  359. is_del,
  360. } = e;
  361. if (index + "" === "-1") {
  362. this.tableData.push(e);
  363. } else {
  364. let findex = parseInt(index);
  365. this.tableData[findex].contactor = contactor || "";
  366. this.tableData[findex].commobile = commobile || "";
  367. this.tableData[findex].position = position || "";
  368. this.tableData[findex].comdepart = comdepart || "";
  369. this.tableData[findex].wxaccount = wxaccount || "";
  370. this.tableData[findex].qqaccount = qqaccount || "";
  371. this.tableData[findex].email = email || "";
  372. this.tableData[findex].id = id || "";
  373. this.tableData[findex].is_del = is_del || "0";
  374. }
  375. },
  376. async submitForm() {
  377. await this.$refs.ruleForm.validate(async (valid) => {
  378. if (valid) {
  379. this.loading = true;
  380. const { id, pid, name, companyName } = this.ruleForm;
  381. let res = {};
  382. if (this.ruleForm.region === "0") {
  383. let zitem = {
  384. id: id,
  385. pid: pid,
  386. name: name,
  387. };
  388. if (this.isDetail === "003") {
  389. delete zitem["id"];
  390. res = await asyncRequest.zadd(zitem);
  391. } else {
  392. res = await asyncRequest.zupdate(zitem);
  393. }
  394. } else {
  395. if (this.tableData.length === 0) {
  396. this.$message.warning("至少填写一个联系人!");
  397. this.loading = false;
  398. return;
  399. }
  400. let qitem = {
  401. id: id,
  402. companyName: this.organName + companyName,
  403. parent: pid,
  404. customer_member: this.getCustomer(),
  405. };
  406. if (this.isDetail === "003") {
  407. delete qitem["id"];
  408. res = await asyncRequest.qadd(qitem);
  409. } else {
  410. res = await asyncRequest.qupdate(qitem);
  411. }
  412. }
  413. this.loading = false;
  414. if (res && res.code === 0) {
  415. const title = this.isDetail === "add" ? "添加成功!" : "修改成功!";
  416. this.$notify.success({
  417. title,
  418. message: "",
  419. });
  420. this.showModelThis = false;
  421. // 刷新
  422. this.$emit("refresh");
  423. } else if (res && res.code >= 100 && res.code <= 104) {
  424. await this.logout();
  425. } else {
  426. this.$message.warning(res.message);
  427. }
  428. } else {
  429. console.log("error submit!!");
  430. return false;
  431. }
  432. });
  433. },
  434. getCustomer() {
  435. let list = JSON.parse(JSON.stringify(this.tableData));
  436. let oldlist = JSON.parse(JSON.stringify(this.old_tableData));
  437. let hasIDlist = [];
  438. list.forEach((a) => {
  439. if (a.id !== "") {
  440. hasIDlist.push(a);
  441. }
  442. });
  443. let newList = [];
  444. let resList = [];
  445. oldlist.forEach((a, ai) => {
  446. let item = null;
  447. let index = hasIDlist.findIndex((b) => a.id === b.id);
  448. if (index === -1) {
  449. item = JSON.parse(JSON.stringify(a));
  450. item.is_del = "1";
  451. } else {
  452. item = JSON.parse(JSON.stringify(hasIDlist[index]));
  453. }
  454. newList.push(item);
  455. });
  456. list.forEach((b) => {
  457. if (b.id === "") {
  458. b.is_del = "0";
  459. newList.push(b);
  460. }
  461. });
  462. newList.forEach((a) => {
  463. let m = {
  464. id: a.id,
  465. contactor: a.contactor,
  466. position: a.position,
  467. commobile: a.commobile,
  468. comdepart: a.comdepart,
  469. wxaccount: a.wxaccount,
  470. qqaccount: a.qqaccount,
  471. email: a.email,
  472. is_del: a.is_del || "0",
  473. status: a.status || "1",
  474. };
  475. resList.push(m);
  476. });
  477. return resList;
  478. },
  479. },
  480. };
  481. </script>
  482. <style lang="scss" scoped>
  483. .storeAnomaly {
  484. // width: calc( 100% - 110px);
  485. }
  486. </style>