|
|
|
@ -269,6 +269,10 @@ |
|
|
|
<span slot="label" style="" @click="MFGlag = true"><a herf="#">MFG</a></span> |
|
|
|
<el-input v-model="modalData.cManufactureEngineerName" disabled style="width: 170px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="文档工程师" prop="docEngineerName" :rules="rules.docEngineerName"> |
|
|
|
<span slot="label" style="" @click="docEngineerFlag = true"><a herf="#">文档工程师</a></span> |
|
|
|
<el-input v-model="modalData.docEngineerName" disabled style="width: 110px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center"> |
|
|
|
<el-button type="primary" @click="saveData()">保存</el-button> |
|
|
|
@ -651,6 +655,57 @@ |
|
|
|
</el-footer> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<!--文档工程师选择弹框--> |
|
|
|
<el-dialog title="文档工程师" @close="closeDocEngineerInfoDialog" @open="openDocEngineerInfoDialog" :visible.sync="docEngineerFlag" width="559px" v-drag> |
|
|
|
<el-form inline="inline" label-position="top" :model="searchBusinessData7" style="margin-left: 7px;margin-top: -5px;"> |
|
|
|
<el-form-item label="用户账号"> |
|
|
|
<el-input v-model="searchBusinessData7.username" clearable style="width: 110px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="用户名"> |
|
|
|
<el-input v-model="searchBusinessData7.userDisplay" clearable style="width: 110px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="是否在用"> |
|
|
|
<el-select filterable v-model="searchBusinessData7.active" style="width: 140px"> |
|
|
|
<el-option label="是" value="Y"></el-option> |
|
|
|
<el-option label="否" value="N"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label=" "> |
|
|
|
<el-button type="primary" style="padding: 3px 12px" @click="searchBusinessInfoList7()">查询</el-button> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<el-table |
|
|
|
:height="height + 110" |
|
|
|
:data="businessDataList7" |
|
|
|
stripe |
|
|
|
highlight-current-row |
|
|
|
border |
|
|
|
@row-dblclick="docEngineerRowDblclick" |
|
|
|
style="width: 100%;"> |
|
|
|
<el-table-column |
|
|
|
prop="username" |
|
|
|
header-align="center" |
|
|
|
align="center" |
|
|
|
label="用户账号"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="userDisplay" |
|
|
|
header-align="center" |
|
|
|
align="center" |
|
|
|
label="用户名"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="active" |
|
|
|
header-align="center" |
|
|
|
align="center" |
|
|
|
label="是否在用"> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center"> |
|
|
|
<el-button @click="docEngineerFlag = false">关闭</el-button> |
|
|
|
</el-footer> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<el-tabs style="height:100%; margin-top: 0px; width: 100%;" v-model="activeName" class="customer-tab" type="border-card" @tab-click="tabClick"> |
|
|
|
<el-tab-pane label="项目物料" name="projectPart"> |
|
|
|
<el-table |
|
|
|
@ -668,7 +723,7 @@ |
|
|
|
fixed="left" |
|
|
|
label="操作"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<a type="text" size="small" @click="updatePartModal(scope.row)">编辑</a> |
|
|
|
<a type="text" size="small" v-if="scope.row.testPartNo !== 'P000000'" @click="updatePartModal(scope.row)">编辑</a> |
|
|
|
<a type="text" size="small" @click="toMes(scope.row)">详情</a> |
|
|
|
<a type="text" size="small" @click="deletePartModal(scope.row)">删除</a> |
|
|
|
</template> |
|
|
|
@ -728,6 +783,7 @@ import row from "element-ui/packages/row"; |
|
|
|
import 'moment/locale/zh-cn'; |
|
|
|
import {EventBus} from "../../../main"; |
|
|
|
import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
import {searchBusinessInfo7} from "../../../api/factory/site"; |
|
|
|
/*打样记录組件*/ |
|
|
|
|
|
|
|
export default { |
|
|
|
@ -793,6 +849,7 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
businessDataList4: [], |
|
|
|
businessDataList5: [], |
|
|
|
businessDataList6: [], |
|
|
|
businessDataList7: [], |
|
|
|
dataList: [], |
|
|
|
projectPartList: [], |
|
|
|
// ======== 选中的当前行数据 ======== |
|
|
|
@ -809,6 +866,7 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
IPQCFlag:false, |
|
|
|
FQCFlag:false, |
|
|
|
MFGlag:false, |
|
|
|
docEngineerFlag:false, |
|
|
|
newCustomerFlag:false, |
|
|
|
modalData:{ |
|
|
|
flag:'', |
|
|
|
@ -844,6 +902,8 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
cQualityEngineer3Name:'', |
|
|
|
cManufactureEngineer:'', |
|
|
|
cManufactureEngineerName:'', |
|
|
|
docEngineer:'', |
|
|
|
docEngineerName:'', |
|
|
|
engineer:'', |
|
|
|
engineerName:'', |
|
|
|
//projectCreationDate为当前服务器的时间 |
|
|
|
@ -918,6 +978,15 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
page: 1, |
|
|
|
limit: 10, |
|
|
|
}, |
|
|
|
searchBusinessData7:{ |
|
|
|
site: this.$store.state.user.site, |
|
|
|
username: '', |
|
|
|
roleDesc: '', |
|
|
|
userDisplay: '', |
|
|
|
active: '', |
|
|
|
page: 1, |
|
|
|
limit: 10, |
|
|
|
}, |
|
|
|
activeName: 'projectPart', |
|
|
|
// 展示列集 |
|
|
|
columnList: [ |
|
|
|
@ -1210,6 +1279,24 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
fixed: '', |
|
|
|
columnWidth: 120, |
|
|
|
}, |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 101001014, |
|
|
|
serialNumber: '101001014Table1DocEngineer', |
|
|
|
tableId: "101001014Table1", |
|
|
|
tableName: "项目信息表", |
|
|
|
columnProp: 'docEngineerName', |
|
|
|
headerAlign: "center", |
|
|
|
align: "left", |
|
|
|
columnLabel: '文档工程师', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
columnSortable: false, |
|
|
|
sortLv: 0, |
|
|
|
status: true, |
|
|
|
fixed: '', |
|
|
|
columnWidth: 120, |
|
|
|
}, |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 101001014, |
|
|
|
@ -1574,6 +1661,24 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
fixed: '', |
|
|
|
columnWidth: 120, |
|
|
|
}, |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 101001014, |
|
|
|
serialNumber: '101001014Table1DocEngineer', |
|
|
|
tableId: "101001014Table1", |
|
|
|
tableName: "项目信息表", |
|
|
|
columnProp: 'docEngineerName', |
|
|
|
headerAlign: "center", |
|
|
|
align: "left", |
|
|
|
columnLabel: '文档工程师', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
columnSortable: false, |
|
|
|
sortLv: 0, |
|
|
|
status: true, |
|
|
|
fixed: '', |
|
|
|
columnWidth: 120, |
|
|
|
}, |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 101001014, |
|
|
|
@ -1822,6 +1927,20 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
trigger: ['blur','change'] |
|
|
|
} |
|
|
|
], |
|
|
|
docEngineer:[ |
|
|
|
{ |
|
|
|
required: true, |
|
|
|
message: ' ', |
|
|
|
trigger: ['blur','change'] |
|
|
|
} |
|
|
|
], |
|
|
|
docEngineerName:[ |
|
|
|
{ |
|
|
|
required: true, |
|
|
|
message: ' ', |
|
|
|
trigger: ['blur','change'] |
|
|
|
} |
|
|
|
], |
|
|
|
projectManagerName:[ |
|
|
|
{ |
|
|
|
required: true, |
|
|
|
@ -2256,14 +2375,18 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
item.cQualityEngineer2Name = item.cQualityEngineer2.split('-')[1] |
|
|
|
item.cQualityEngineer3Name = item.cQualityEngineer3.split('-')[1] |
|
|
|
item.cManufactureEngineerName = item.cManufactureEngineer.split('-')[1] |
|
|
|
if (item.docEngineer != null && item.docEngineer !== ''){ |
|
|
|
item.docEngineerName = item.docEngineer.split('-')[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
console.log(this.totalPage) |
|
|
|
// 判断是否全部存在数据 |
|
|
|
if (this.totalPage > 0) { |
|
|
|
// 设置选中行 |
|
|
|
this.$refs.mainTable.setCurrentRow(this.dataList[0]) |
|
|
|
// 加载当前的页签的table |
|
|
|
this.refreshCurrentTabTable() |
|
|
|
this.projectPartClickRow(this.dataList[0]) |
|
|
|
this.projectPartClickRow(this.projectPartList[0]) |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
@ -2330,6 +2453,8 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
cQualityEngineer3Name:'', |
|
|
|
cManufactureEngineer: '', |
|
|
|
cManufactureEngineerName: '', |
|
|
|
docEngineer: '', |
|
|
|
docEngineerName: '', |
|
|
|
projectCreationDate:new Date(), |
|
|
|
createDate: '', |
|
|
|
// active: 'Y', |
|
|
|
@ -2371,12 +2496,16 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
cQualityEngineer3Name: row.cQualityEngineer3.split('-')[1], // 截取用户名 |
|
|
|
cManufactureEngineer: row.cManufactureEngineer, |
|
|
|
cManufactureEngineerName: row.cManufactureEngineer.split('-')[1], // 截取用户名 |
|
|
|
docEngineer: row.docEngineer, |
|
|
|
projectCreationDate: row.projectCreationDate, |
|
|
|
status: row.status, |
|
|
|
// active: row.active, |
|
|
|
createBy: this.$store.state.user.name, |
|
|
|
updateBy: this.$store.state.user.name, |
|
|
|
} |
|
|
|
if (row.docEngineer != null && row.docEngineer !== ''){ |
|
|
|
this.modalData.docEngineerName= row.docEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
this.modalDisableFlag = true |
|
|
|
this.modalPartDisableFlag = false |
|
|
|
this.modalFlag = true |
|
|
|
@ -2474,6 +2603,10 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
this.$message.warning('请输入MFG!') |
|
|
|
return |
|
|
|
} |
|
|
|
if (this.modalData.docEngineer === '' || this.modalData.docEngineer == null) { |
|
|
|
this.$message.warning('请输入文档工程师!') |
|
|
|
return |
|
|
|
} |
|
|
|
// if (this.modalData.active === '' || this.modalData.active == null) { |
|
|
|
// this.$message.warning('选择是否在用!') |
|
|
|
// return |
|
|
|
@ -2501,6 +2634,7 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
cQualityEngineer2: this.modalData.cQualityEngineer2, |
|
|
|
cQualityEngineer3: this.modalData.cQualityEngineer3, |
|
|
|
cManufactureEngineer: this.modalData.cManufactureEngineer, |
|
|
|
docEngineer: this.modalData.docEngineer, |
|
|
|
projectCreationDate: this.modalData.projectCreationDate, |
|
|
|
createDate: this.modalData.createDate, |
|
|
|
createBy: this.modalData.createBy, |
|
|
|
@ -2569,6 +2703,7 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
cQualityEngineer2: this.modalData.cQualityEngineer2, |
|
|
|
cQualityEngineer3: this.modalData.cQualityEngineer3, |
|
|
|
cManufactureEngineer: this.modalData.cManufactureEngineer, |
|
|
|
docEngineer: this.modalData.docEngineer, |
|
|
|
projectCreationDate: this.modalData.projectCreationDate, |
|
|
|
createDate: this.modalData.createDate, |
|
|
|
createBy: this.modalData.createBy, |
|
|
|
@ -2618,6 +2753,38 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
}) |
|
|
|
} |
|
|
|
} else if (this.modalData.flag === '2'){ |
|
|
|
let inData = { |
|
|
|
projectId : this.modalData.projectId, |
|
|
|
projectNo: this.modalData.projectNo, |
|
|
|
projectDesc: this.modalData.projectDesc, |
|
|
|
projectCategory: this.modalData.projectCategory, |
|
|
|
projectCloseDate: this.modalData.projectCloseDate, |
|
|
|
needDate: this.modalData.needDate, |
|
|
|
cProjectRegion: this.modalData.cProjectRegion, |
|
|
|
projectManager: this.modalData.projectManager, |
|
|
|
projectOwner: this.modalData.projectOwner, |
|
|
|
engineer: this.modalData.engineer, |
|
|
|
cQualityEngineer1: this.modalData.cQualityEngineer1, |
|
|
|
cQualityEngineer2: this.modalData.cQualityEngineer2, |
|
|
|
cQualityEngineer3: this.modalData.cQualityEngineer3, |
|
|
|
cManufactureEngineer: this.modalData.cManufactureEngineer, |
|
|
|
docEngineer: this.modalData.docEngineer, |
|
|
|
projectCreationDate: this.modalData.projectCreationDate, |
|
|
|
createDate: this.modalData.createDate, |
|
|
|
createBy: this.modalData.createBy, |
|
|
|
updateBy: this.modalData.updateBy, |
|
|
|
site: this.modalData.site, |
|
|
|
bu: this.modalData.bu, |
|
|
|
customerNo: this.modalData.customerNo, |
|
|
|
customerDesc: this.modalData.customerDesc, |
|
|
|
status: this.modalData.status, |
|
|
|
active: this.modalData.active, |
|
|
|
closeDate : this.modalData.projectCloseDate, |
|
|
|
buildDate : this.modalData.projectCreationDate, |
|
|
|
priority: this.modalData.priority, |
|
|
|
testPartNo: 'P000000', |
|
|
|
partDesc: '无物料', |
|
|
|
} |
|
|
|
if (new Date(this.modalData.needDate).getTime() < new Date().getTime()) { |
|
|
|
this.$confirm('预计完成日期小于当前日期,确定继续保存?', '提示', { |
|
|
|
confirmButtonText: '确定', |
|
|
|
@ -2626,6 +2793,16 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
}).then(() => { |
|
|
|
eamProjectInfoEdit(this.modalData).then(({data}) => { |
|
|
|
if (data && data.code === '0') { |
|
|
|
if (this.projectPartList.length !== 0 && this.projectPartList[0].testPartNo === 'P000000') { |
|
|
|
inData.projectPartId = this.projectPartList[0].projectPartId |
|
|
|
eamProjectPartInfoEdit(inData).then(({data}) => { |
|
|
|
if (data && data.code !== 0) { |
|
|
|
this.$alert(data.msg, '错误', { |
|
|
|
confirmButtonText: '确定' |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
this.getDataList() |
|
|
|
this.modalFlag=false |
|
|
|
EventBus.$emit('updateProjectPartInfo') |
|
|
|
@ -2653,6 +2830,16 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
else { |
|
|
|
eamProjectInfoEdit(this.modalData).then(({data}) => { |
|
|
|
if (data && data.code === '0') { |
|
|
|
if (this.projectPartList.length !== 0 && this.projectPartList[0].testPartNo === 'P000000') { |
|
|
|
inData.projectPartId = this.projectPartList[0].projectPartId |
|
|
|
eamProjectPartInfoEdit(inData).then(({data}) => { |
|
|
|
if (data && data.code !== 0) { |
|
|
|
this.$alert(data.msg, '错误', { |
|
|
|
confirmButtonText: '确定' |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
this.getDataList() |
|
|
|
this.modalFlag=false |
|
|
|
EventBus.$emit('updateProjectPartInfo') |
|
|
|
@ -2776,6 +2963,13 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
searchBusinessInfoList7 () { |
|
|
|
searchBusinessInfo7(this.searchBusinessData7).then(({data}) => { |
|
|
|
if (data && data.code === 0){ |
|
|
|
this.businessDataList7 = data.rows; |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
// 打开项目经理 |
|
|
|
openProjectManagerInfoDialog () { |
|
|
|
//请求 |
|
|
|
@ -2806,6 +3000,11 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
//请求 |
|
|
|
this.searchBusinessInfoList5(); |
|
|
|
}, |
|
|
|
// 打开文档工程师 |
|
|
|
openDocEngineerInfoDialog () { |
|
|
|
//请求 |
|
|
|
this.searchBusinessInfoList7(); |
|
|
|
}, |
|
|
|
openEngineer6InfoDialog () { |
|
|
|
//请求 |
|
|
|
this.searchBusinessInfoList6(); |
|
|
|
@ -2843,6 +3042,11 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
this.businessDataList5 = [] |
|
|
|
this.MFGlag = false |
|
|
|
}, |
|
|
|
//关闭 |
|
|
|
closeDocEngineerInfoDialog () { |
|
|
|
this.businessDataList7 = [] |
|
|
|
this.docEngineerFlag = false |
|
|
|
}, |
|
|
|
projectManagerRowDblclick(row) { |
|
|
|
if (row && row.username && row.userDisplay) { |
|
|
|
this.modalData.projectManager = row.username + '-' + row.userDisplay; |
|
|
|
@ -2882,6 +3086,11 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
this.modalData.cManufactureEngineerName = this.modalData.cManufactureEngineer.split('-')[1] // 截取用户名 |
|
|
|
this.MFGlag = false |
|
|
|
}, |
|
|
|
docEngineerRowDblclick (row) { |
|
|
|
this.modalData.docEngineer = row.username + '-' + row.userDisplay |
|
|
|
this.modalData.docEngineerName = this.modalData.docEngineer.split('-')[1] // 截取用户名 |
|
|
|
this.docEngineerFlag = false |
|
|
|
}, |
|
|
|
closeClear () { |
|
|
|
this.modalData.bu = '' |
|
|
|
this.modalData.projectNo = '' |
|
|
|
@ -2901,6 +3110,12 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
this.modalData.cQualityEngineer1Name = '' |
|
|
|
this.modalData.cQualityEngineer2 = '' |
|
|
|
this.modalData.cQualityEngineer2Name = '' |
|
|
|
this.modalData.cQualityEngineer3 = '' |
|
|
|
this.modalData.cQualityEngineer3Name = '' |
|
|
|
this.modalData.cManufactureEngineer = '' |
|
|
|
this.modalData.cManufactureEngineerName = '' |
|
|
|
this.modalData.docEngineer = '' |
|
|
|
this.modalData.docEngineerName = '' |
|
|
|
this.modalData.projectCreationDate = new Date() |
|
|
|
}, |
|
|
|
|
|
|
|
@ -2926,6 +3141,9 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
item.cQualityEngineer2Name = item.cQualityEngineer2.split('-')[1] |
|
|
|
item.cQualityEngineer3Name = item.cQualityEngineer3.split('-')[1] |
|
|
|
item.cManufactureEngineerName = item.cManufactureEngineer.split('-')[1] |
|
|
|
if (item.docEngineer != null && item.docEngineer !== ''){ |
|
|
|
item.docEngineerName = item.docEngineer.split('-')[1] |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
@ -2962,12 +3180,16 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
cQualityEngineer3Name: row.cQualityEngineer3.split('-')[1], // 截取用户名 |
|
|
|
cManufactureEngineer: row.cManufactureEngineer, |
|
|
|
cManufactureEngineerName: row.cManufactureEngineer.split('-')[1], // 截取用户名 |
|
|
|
docEngineer: row.docEngineer, |
|
|
|
projectCreationDate: row.projectCreationDate, |
|
|
|
status: '草稿', |
|
|
|
// active: row.active, |
|
|
|
createBy: this.$store.state.user.name, |
|
|
|
updateBy: this.$store.state.user.name, |
|
|
|
} |
|
|
|
if (row.docEngineer != null && row.docEngineer !== ''){ |
|
|
|
this.modalData.docEngineerName= row.docEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
this.modalDisableFlag = true |
|
|
|
this.modalPartDisableFlag = true |
|
|
|
this.modalFlag = true |
|
|
|
@ -3004,12 +3226,16 @@ import {queryCustomerList} from "../../../api/customer/customer"; |
|
|
|
cQualityEngineer3Name: row.cQualityEngineer3.split('-')[1], // 截取用户名 |
|
|
|
cManufactureEngineer: row.cManufactureEngineer, |
|
|
|
cManufactureEngineerName: row.cManufactureEngineer.split('-')[1], // 截取用户名 |
|
|
|
docEngineer: row.docEngineer, |
|
|
|
projectCreationDate: row.buildDate, |
|
|
|
status: row.status, |
|
|
|
// active: row.active, |
|
|
|
createBy: this.$store.state.user.name, |
|
|
|
updateBy: this.$store.state.user.name, |
|
|
|
} |
|
|
|
if (row.docEngineer != null && row.docEngineer !== ''){ |
|
|
|
this.modalData.docEngineerName= row.docEngineer.split('-')[1] // 截取用户名 |
|
|
|
} |
|
|
|
this.modalDisableFlag = true |
|
|
|
this.modalPartDisableFlag = true |
|
|
|
this.modalFlag = true |
|
|
|
|