123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601 |
- <template>
- <div class="borderless" v-loading="pageLoading">
- <div class="customer-head">
- <div class="customer-back">
- <el-button type="danger" style="border: none;background: none;color: red" icon="el-icon-arrow-left"
- @click="backToList" :loading="btnLoading">返回列表</el-button>
- </div>
- <div class="add-customer-btn">
- <el-button type="primary" size="small" class="el-button--small-yh" @click.stop="openEdit"
- v-if="disabled && !approvalStatus">编 辑
- </el-button>
- <el-button type="primary" size="small" class="el-button--small-yh" @click.stop="submit" v-if="form.status == 1">
- 提交
- </el-button>
- <el-dropdown style="margin-right: 8px;margin-left: 8px;">
- <el-button type="primary" size="small">
- 审核处理<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item :disabled="form.status > 0 || approvalStatus" @click.native="pleaseCheck">请核数据
- </el-dropdown-item>
- <el-dropdown-item :disabled="!form.approvalStatus"
- @click.native="checkScheduleDialog = true, checkId = form.id">审核进度</el-dropdown-item>
- <el-dropdown-item disabled>撤销请核</el-dropdown-item>
- <el-dropdown-item v-if="checkDisabled && form.approvalStatus == 'S'" @click.native="openCheckDialog">审批
- </el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- <el-button type="success" :disabled="!form.id" size="small" @click="copyDoc" :loading="btnLoading" v-if="false">
- 复制单据</el-button>
- <el-button type="primary" @click="editCustomer" size="small" :loading="btnLoading">保存数据</el-button>
- </div>
- </div>
- <div class="customer-main">
- <trade-card title="基础信息">
- <avue-form ref="form" class="trading-form" v-model="form" :option="option">
- <template slot-scope="{}" slot="corpNameLabel">
- <span style="color: #409EFF;cursor: pointer" @click.stop="khEdit">客户名称:</span>
- </template>
- <template slot-scope="{row,index}" slot="corpName">
- <warehous-Kh v-model="form.corpName" :zhKey="true" :disabled="disabled || approvalStatus"
- @getCropId="getCropId"></warehous-Kh>
- </template>
- <template slot="fromUser">
- <el-select v-model="form.fromUser" filterable clearable size="small" :disabled="disabled || approvalStatus">
- <el-option v-for="(item, index) in userList" :key="index" :label="item.realName" :value="item.id">
- </el-option>
- </el-select>
- </template>
- <template slot="toUser">
- <el-select v-model="form.toUser" filterable clearable size="small" :disabled="disabled || approvalStatus">
- <el-option v-for="(item, index) in userList" :key="index" :label="item.realName" :value="item.id">
- </el-option>
- </el-select>
- </template>
- </avue-form>
- </trade-card>
- <trade-card title="沟通记录">
- <avue-crud ref="crud" :data="dataList" :option="tableOption" :cell-style="cellStyle" @saveColumn="saveColumn"
- @resetColumn="resetColumn">
- <template slot="menuLeft">
- <el-button type="primary" icon="el-icon-plus" size="small" @click.stop="newDetails"
- :disabled="disabled || approvalStatus">
- 录入明细</el-button>
- <el-button type="info" icon="el-icon-printer" size="small" v-if="false">报表打印</el-button>
- </template>
- <template slot="menu" slot-scope="{ row, index }">
- <el-button size="small" icon="el-icon-edit" type="text" @click="rowCell(row, index)"
- :disabled="disabled || approvalStatus">{{
- row.$cellEdit ? "保存" : "修改"
- }}</el-button>
- <el-button size="small" icon="el-icon-delete" type="text" @click="rowDel(row, index)"
- :disabled="disabled || approvalStatus">
- 删除</el-button>
- </template>
- <template slot="bizDate" slot-scope="{ row, index }">
- <el-date-picker v-if="row.$cellEdit" v-model="row.bizDate" type="date" placeholder="选择日期" size="small"
- style="width: 100%" format="yyyy-MM-dd" valueFormat="yyyy-MM-dd"></el-date-picker>
- <span v-else>{{ row.bizDate }}</span>
- </template>
- <template slot="spId" slot-scope="{ row, index }">
- <el-select v-if="row.$cellEdit" v-model="row.spId" filterable clearable size="small" :disabled="disabled"
- @change="spIdChange(row)">
- <el-option v-for="(item, index) in goodsDescList" :key="index" :label="item.cname" :value="item.id">
- </el-option>
- </el-select>
- <span v-else>{{ row.serviceProjectName }}</span>
- </template>
- <template slot="bizContent" slot-scope="{ row, index }">
- <el-input v-if="row.$cellEdit" v-model="row.bizContent" size="small" placeholder="输入内容" />
- <span v-else>{{ row.bizContent }}</span>
- </template>
- <template slot="contacts" slot-scope="{ row, index }">
- <el-input v-if="row.$cellEdit" v-model="row.contacts" size="small" placeholder="输入客户联系人" />
- <span v-else>{{ row.contacts }}</span>
- </template>
- <template slot="tel" slot-scope="{ row, index }">
- <el-input v-if="row.$cellEdit" v-model="row.tel" size="small" placeholder="输入联系方式" />
- <span v-else>{{ row.tel }}</span>
- </template>
- <template slot="approval" slot-scope="{ row, index }">
- <el-switch v-model="row.approval" :disabled="!row.$cellEdit" :inactive-value="0" :active-value="1">
- </el-switch>
- </template>
- </avue-crud>
- </trade-card>
- <el-dialog append-to-body title="审批" class="el-dialogDeep" :visible.sync="checkDialog" width="50%"
- :close-on-click-modal="false" :destroy-on-close="true" :close-on-press-escape="false" v-dialog-drag>
- <check :checkData="checkData" :checkDetail="false" :idList="[]" @choceCheckFun="choceCheckFun">
- </check>
- </el-dialog>
- <el-dialog append-to-body title="审批进度" class="el-dialogDeep" :visible.sync="checkScheduleDialog" width="40%"
- :close-on-click-modal="false" :destroy-on-close="true" :close-on-press-escape="false" v-dialog-drag>
- <check-schedule :checkId="checkId" :batchNo="batchNo" @choceScheduleFun="choceScheduleFun">
- </check-schedule>
- </el-dialog>
- </div>
- </div>
- </template>
- <script>
- import tableOption from "./config/customerContact.json";
- import {
- isDiscount,
- isPercentage,
- micrometerFormat,
- IntegerFormat
- } from "@/util/validate";
- import { gainUser } from "@/api/basicData/customerInquiry";
- import { getUserInfo } from "@/api/system/user";
- import { getDeptTree } from "@/api/system/dept";
- import { getCurrentDate } from "@/util/date";
- import { dataDetail, typeSave, removeGoods, pleaseCheck, getGoodsDescList, leadsSubmit } from "@/api/standAlone/saleLeads";
- import { contrastObj, contrastList } from "@/util/contrastData";
- import check from "@/components/check/check";
- import checkSchedule from "@/components/check/checkSchedule";
- export default {
- name: "detail",
- props: {
- detailData: {
- type: Object
- }
- },
- components: {
- check,
- checkSchedule,
- },
- data() {
- const validateRemark = (rule, value, callback) => {
- if (this.form.status == 2 && !this.form.remarks) {
- callback(new Error('备注不能为空'))
- } else {
- callback()
- }
- }
- return {
- checkData: {},
- checkDialog: false,
- batchNo: '',
- checkId: '',
- checkScheduleDialog: false,
- approvalStatus: false,
- disabled: false,
- checkDisabled: false,
- pageLoading: false,
- btnLoading: false,
- form: {},
- option: {
- menuBtn: false,
- labelWidth: 100,
- column: [
- {
- label: "客户名称",
- prop: "corpName",
- rules: [
- {
- required: true,
- message: " ",
- trigger: "blur"
- }
- ],
- span: 8,
- slot: true,
- },
- {
- label: "客户联系人",
- prop: "contacts",
- rules: [
- {
- required: true,
- message: " ",
- trigger: "blur"
- }
- ],
- span: 8,
- slot: true,
- },
- {
- label: "客户电话",
- prop: "tel",
- rules: [
- {
- required: true,
- message: " ",
- trigger: "blur"
- }
- ],
- span: 8,
- slot: true,
- type: 'number',
- controls: false,
- mock: {
- type: 'number',
- precision: 0,
- },
- },
- {
- label: "业务内容",
- prop: "bizContent",
- rules: [
- {
- required: true,
- message: " ",
- trigger: "blur"
- }
- ],
- span: 8,
- slot: true,
- },
- {
- label: "业务日期",
- prop: "bizDate",
- span: 8,
- type: "date",
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd HH:mm:ss",
- rules: [
- {
- required: true,
- message: " ",
- trigger: "blur"
- }
- ]
- },
- {
- label: "承揽人",
- prop: "fromUser",
- rules: [
- {
- required: true,
- message: " ",
- trigger: "change"
- }
- ],
- span: 8,
- slot: true,
- },
- {
- label: "对接人",
- prop: "toUser",
- rules: [
- {
- required: true,
- message: " ",
- trigger: "change"
- }
- ],
- span: 8,
- slot: true,
- },
- {
- label: "状态",
- prop: "status",
- span: 8,
- type: 'select',
- dicData: [
- { label: '沟通中', value: 0 },
- { label: '成交', value: 1, disabled: true },
- { label: '未成交', value: 2 },
- ],
- rules: [
- {
- required: true,
- message: " ",
- trigger: "change"
- }
- ],
- },
- {
- label: "备注",
- prop: "remarks",
- type: "textarea",
- minRows: 2,
- span: 24,
- rules: [
- { validator: validateRemark, trigger: 'blur' }
- ]
- },
- ],
- },
- dataList: [],
- tableOption: {},
- goodsoptions: [],
- unitOption: [],
- selectionList: [],
- search: {},
- treeStyle: "height:" + (window.innerHeight - 315) + "px",
- goodsOption: {},
- loading: false,
- switchDialog: false, // 报表弹窗控制
- userList: [],
- dic: [],
- loginUser: '', // 登录人
- loginUserId: null,
- oldForm: {},
- oldDataList: [],
- goodsDescList: []
- }
- },
- async created() {
- this.$set(this.form, 'bizDate', getCurrentDate()); // 默认当前日期
- this.tableOption = await this.getColumnData(
- this.getColumnName(102),
- tableOption
- );
- gainUser().then(res => {
- this.userList = res.data.data;
- });
- getUserInfo().then(res => {
- this.$set(this.form, 'fromUser', res.data.data.id);
- this.$set(this.form, 'toUser', res.data.data.id);
- this.loginUser = res.data.data.realName;
- this.loginUserId = res.data.data.id;
- })
- getDeptTree().then(res => {
- this.dic = res.data.data
- })
- getGoodsDescList().then(res => {
- this.goodsDescList = res.data.data
- })
- this.getWorkDicts('unit').then(res => {
- this.unitOption = res.data.data;
- })
- if (this.detailData.query) {
- this.disabled = true;
- this.option.column.map(e => {
- this.$set(e, 'disabled', true)
- })
- this.queryData(this.detailData.id);
- } else if (this.detailData.auditId) {
- this.checker = true;
- this.batchNo = this.detailData.check.batchNo
- this.queryData(this.detailData.id);
- } else if (this.detailData.check) {
- this.disabled = true;
- this.checkDisabled = true;
- this.batchNo = this.detailData.check.batchNo
- this.option.column.map(e => {
- this.$set(e, 'disabled', true)
- })
- this.queryData(this.detailData.check.billId);
- }
- },
- filters: {
- IntegerFormat(num) {
- return IntegerFormat(num);
- },
- decimalFormat(num) {
- return num ? Number(num).toFixed(2) : "0.00";
- }
- },
- methods: {
- openCheckDialog() {
- this.checkData = this.detailData.check
- this.checkDialog = true;
- },
- choceCheckFun() {
- this.checkDialog = false;
- },
- choceScheduleFun() {
- this.checkScheduleDialog = false
- },
- khEdit() {
- this.$router.push('/basicData/customerInformation/index')
- },
- // 查询
- queryData(id) {
- this.pageLoading = true;
- dataDetail({ id: id }).then(res => {
- this.form = res.data.data;
- this.dataList = this.form.itemList ? this.form.itemList : [];
- delete this.form.itemList;
- this.oldForm = { ...this.form };
- this.oldDataList = [...this.dataList];
- this.approvalStatus = this.form.approvalStatus == "S" || this.form.approvalStatus == "A" ? true : false;
- if (this.form.status > 0) {
- this.option.column.map(e => {
- this.$set(e, 'disabled', true)
- })
- }
- }).finally(() => {
- this.pageLoading = false;
- })
- },
- pleaseCheck() {
- if (this.dataList.length == 0) {
- return this.$message.error('沟通记录为空不能提交')
- }
- for (let i = 0; i < this.dataList.length; i++) {
- if (!this.dataList[i].id) {
- return this.$message.error('沟通记录未保存不能提交')
- }
- }
- this.$confirm("您确定提交此次申请吗?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- this.btnLoading = true;
- this.$set(this.form, 'itemList', this.dataList)
- const data = {
- ...this.form,
- checkType: "xsjh",
- url: "/saleLeads/index",
- pageStatus: "this.$store.getters.xsjhStatus",
- pageLabel: "销售机会"
- };
- pleaseCheck(data).then(res => {
- this.$message({ type: "success", message: '请核成功' });
- this.disabled = true;
- this.option.column.map(e => {
- this.$set(e, 'disabled', true)
- })
- this.queryData(this.form.id);
- }).finally(() => {
- this.btnLoading = false;
- })
- });
- },
- //返回列表
- backToList() {
- this.$emit("goBack");
- },
- // 编辑按钮触发
- openEdit() {
- this.disabled = false;
- },
- // 复制
- copyDoc() {
- this.$emit("copyOrder", this.form.id);
- },
- submit() {
- let data = {
- ...this.form,
- itemList: this.dataList
- }
- this.btnLoading = true;
- leadsSubmit(data).then(res => {
- this.$message.success('提交成功')
- // this.$message({ type: "success", message: this.form.id ? "修改成功!" : "新增成功!" });
- // this.queryData(res.data.data);
- data.corpId=res.data.data
- this.$router.push({
- path: '/workManagement/main-items/list',
- query: { data: data }
- });
- }).finally(() => {
- this.btnLoading = false;
- })
- },
- getCropId(row) {
- this.form.corpId = row
- },
- //修改提交触发
- editCustomer(status) {
- this.$refs["form"].validate((valid, done) => {
- done();
- if (valid) {
- this.btnLoading = true;
- this.$set(this.form, 'itemList', this.dataList)
- typeSave(this.form).then(res => {
- this.$message({ type: "success", message: this.form.id ? "修改成功!" : "新增成功!" });
- this.queryData(res.data.data);
- }).finally(() => {
- this.btnLoading = false;
- })
- } else {
- return false
- }
- })
- },
- cellStyle() {
- return "padding:0;height:40px;";
- },
- async saveColumn() {
- const inSave = await this.saveColumnData(
- this.getColumnName(102),
- this.tableOption
- );
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- this.$nextTick(() => {
- this.$refs.crud.doLayout()
- })
- }
- },
- async resetColumn() {
- this.tableOption = tableOption;
- const inSave = await this.delColumnData(
- this.getColumnName(102),
- tableOption
- );
- if (inSave) {
- this.$nextTick(() => {
- this.$refs.crud.doLayout()
- })
- this.$message.success("重置成功");
- //关闭窗口
- setTimeout(() => {
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- }, 1000);
- }
- },
- //录入明细
- newDetails() {
- this.$refs["form"].validate((valid, done) => {
- done()
- if (valid) {
- this.dataList.push({
- bizDate: getCurrentDate(),
- bizTime: getCurrentDate(),
- bizUserName: this.loginUser,
- bizUser: this.loginUserId,
- $cellEdit: true,
- })
- }
- })
- },
- rowCell(row, index) {
- if (row.$cellEdit == true) {
- this.$set(row, "$cellEdit", false);
- } else {
- this.$set(row, "$cellEdit", true);
- }
- },
- rowDel(row, index) {
- this.$confirm("确定删除数据?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id) {
- removeGoods(row.id).then(res => {
- this.$message({
- type: 'success',
- message: '删除成功!'
- })
- this.dataList.splice(row.$index, 1);
- })
- } else {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.dataList.splice(row.$index, 1);
- }
- });
- },
- spIdChange(row) {
- console.log(row)
- this.goodsDescList.forEach(e => {
- row.serviceProjectName = e.cname
- row.chargeProposal = e.remarks
- });
- },
- // 验证新旧值对比
- verification() {
- if (contrastObj(this.form, this.oldForm) ||
- contrastList(this.dataList, this.oldDataList)) {
- this.$confirm("数据发生变化未有提交记录, 是否提交?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- this.editCustomer();
- }).catch(() => {
- return false; //取消改动数据
- })
- } else {
- return true;
- }
- },
- },
- }
- </script>
- <style scoped>
- </style>
|