From 0fac5a03a4a2dda40686916909937f37a5239fce Mon Sep 17 00:00:00 2001 From: dxfeng Date: Mon, 13 Mar 2023 11:21:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B2=97=E4=BD=8D=E7=AE=A1=E7=90=86=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E6=90=9C=E7=B4=A2BUG=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pc4mobx/organization/components/job/Job.js | 4 ++-- pc4mobx/organization/stores/job.js | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pc4mobx/organization/components/job/Job.js b/pc4mobx/organization/components/job/Job.js index cc52470..cb2c5a1 100644 --- a/pc4mobx/organization/components/job/Job.js +++ b/pc4mobx/organization/components/job/Job.js @@ -561,7 +561,7 @@ export default class Job extends React.Component { job } = this.props; const { - isPanelShow, jobName, conditionNum, visible, condition, form, + isPanelShow, jobTitleName, conditionNum, visible, condition, form, tableStore, dataSource, columns, loading, date, nEdialogTitle, dialogLoading, form1, isEdit, newVisible,selectedRowKeys, total, current, pageSize, init, defaultShowLeft,form2,hasRight @@ -618,7 +618,7 @@ export default class Job extends React.Component { job.setPanelStatus(bool)} hideSearchAd={() => job.setPanelStatus(false)} searchsAd={isPanelShow ? this.getPanelComponents() :
} diff --git a/pc4mobx/organization/stores/job.js b/pc4mobx/organization/stores/job.js index 69c6a4a..66e91e7 100644 --- a/pc4mobx/organization/stores/job.js +++ b/pc4mobx/organization/stores/job.js @@ -45,7 +45,7 @@ export class JobStore { @observable form = new WeaForm(); @observable form1 = new WeaForm(); //新增主表表单 @observable form2 = new WeaForm(); //复制表单 合并表单 - @observable jobName = ''; + @observable jobTitleName = ''; @observable conditionNum = 6; @observable ids = ''; //选择行id @observable id = ''; //页面跳转参数id @@ -86,7 +86,7 @@ export class JobStore { if (this.isEmptyObject(this.form.getFormParams())) { params = { ...params, - jobName: this.jobName, + jobTitleName: this.jobTitleName, }; } else { params = { @@ -325,7 +325,7 @@ export class JobStore { updateFields(val) { this.form.updateFields({ - jobName: { + jobTitleName: { value: val } }); @@ -348,7 +348,7 @@ export class JobStore { } setJobName(val) { - this.jobName = val; + this.jobTitleName = val; } isEmptyObject(obj) {