fix: BUG修改
This commit is contained in:
parent
685531608a
commit
3a0bbb68b1
@ -119,6 +119,9 @@ export default {
|
||||
inspectTime: [
|
||||
{ required: true, message: "请选择检查时间", trigger: "change" },
|
||||
],
|
||||
enterpriseName: [
|
||||
{ required: true, message: "请选择分包单位", trigger: "change" },
|
||||
],
|
||||
changeLimitTime: [
|
||||
{ required: true, message: "请选择整改时限", trigger: "change" },
|
||||
],
|
||||
|
||||
@ -84,8 +84,8 @@ if (process.env.NODE_ENV == 'development') {
|
||||
// axios.defaults.baseURL ='http://101.43.164.214:45011/' //上海优益(上海建工)
|
||||
// axios.defaults.baseURL = 'http://192.168.34.221:28888/' //郭圣雄本地
|
||||
// axios.defaults.baseURL = 'http://192.168.34.221:28889/' //郭圣雄本地
|
||||
// axios.defaults.baseURL ='http://192.168.34.221:9111/' //郭圣雄本地
|
||||
axios.defaults.baseURL = 'http://192.168.34.155:19111/' //彭洁本地
|
||||
axios.defaults.baseURL ='http://192.168.34.221:9111/' //郭圣雄本地
|
||||
// axios.defaults.baseURL = 'http://192.168.34.155:19111/' //彭洁本地
|
||||
// axios.defaults.baseURL = 'http://182.90.224.237:51234' //郭圣雄远程
|
||||
// axios.defaults.baseURL ='http://101.43.164.214:45020/' //沈阳和盈
|
||||
// axios.defaults.baseURL ='http://183.249.224.118:9000/' //嘉兴王江泾公用码头
|
||||
|
||||
@ -688,7 +688,7 @@
|
||||
:placeholder="$t('message.quality.pleaseSelect')"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in crewList"
|
||||
v-for="item in crewUpdateList"
|
||||
:key="item.userId + ''"
|
||||
:label="item.realName"
|
||||
:value="item.userId + ''"
|
||||
@ -1214,7 +1214,7 @@
|
||||
:close-on-click-modal="false"
|
||||
>
|
||||
<div class="dialog_content">
|
||||
<el-radio-group
|
||||
<!-- <el-radio-group
|
||||
v-model="subcontractType"
|
||||
size="small"
|
||||
style="margin-bottom: 20px"
|
||||
@ -1226,7 +1226,7 @@
|
||||
<el-radio-button :label="6">{{
|
||||
$t('message.quality.lborSubcontractor')
|
||||
}}</el-radio-button>
|
||||
</el-radio-group>
|
||||
</el-radio-group> -->
|
||||
<el-table
|
||||
:data="subcontractList"
|
||||
style="width: 100%"
|
||||
@ -2070,6 +2070,7 @@ export default {
|
||||
checkStrictly: false
|
||||
},
|
||||
crewList: [],
|
||||
crewUpdateList: [],
|
||||
routineList: [], //例行检查列表
|
||||
showEnterpriseDialog: false, // 显示分包选择弹窗
|
||||
subcontractType: 1, //分包商类型
|
||||
@ -2100,6 +2101,7 @@ export default {
|
||||
player: '',
|
||||
isShow: false,
|
||||
videoName: '',
|
||||
unitEnterpriseId: ''
|
||||
}
|
||||
},
|
||||
created() {
|
||||
@ -2560,7 +2562,9 @@ export default {
|
||||
inspectStartTime: '',
|
||||
recordType: '',
|
||||
level: '',
|
||||
status: ''
|
||||
status: '',
|
||||
urgentLevel: '',
|
||||
regionId: '',
|
||||
}
|
||||
this.pageNo = 1
|
||||
this.pageSize = 10
|
||||
@ -2605,6 +2609,7 @@ export default {
|
||||
this.getPositionList()
|
||||
this.getDescribeClassifyList()
|
||||
this.getPeopleList()
|
||||
this.getPeopleUpdateList();
|
||||
this.getRoutineInspect()
|
||||
this.close()
|
||||
this.rectifyRecordList = []
|
||||
@ -2677,7 +2682,18 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
//获取整改人
|
||||
getPeopleUpdateList() {
|
||||
let data = {
|
||||
projectSn: this.projectSn,
|
||||
enterpriseId: this.unitEnterpriseId
|
||||
}
|
||||
getProjectChilderSystemUserListApi(data).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.crewUpdateList = res.result
|
||||
}
|
||||
})
|
||||
},
|
||||
//获取问题描述
|
||||
handleChange(value) {
|
||||
|
||||
@ -2739,7 +2755,7 @@ export default {
|
||||
this.showEnterpriseDialog = true
|
||||
}
|
||||
let data = {
|
||||
enterpriseTypeId: this.subcontractType,
|
||||
// enterpriseTypeId: this.subcontractType,
|
||||
pageNo: 1,
|
||||
pageSize: 999,
|
||||
projectSn: this.projectSn
|
||||
@ -2761,10 +2777,15 @@ export default {
|
||||
if (this.recordType == 1) {
|
||||
this.addForm1.enterpriseSn = val.enterpriseSn
|
||||
this.addForm1.enterpriseName = val.enterpriseName
|
||||
this.unitEnterpriseId = val.id
|
||||
} else {
|
||||
this.addForm2.enterpriseSn = val.enterpriseSn
|
||||
this.addForm2.enterpriseName = val.enterpriseName
|
||||
this.unitEnterpriseId = val.id
|
||||
}
|
||||
this.addForm1.changeId = "";
|
||||
this.getPeopleList();
|
||||
this.getPeopleUpdateList();
|
||||
this.showEnterpriseDialog = false
|
||||
},
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
1782
src/views/projectFront/quality/v2/inspectionRecordOld.vue
Normal file
1782
src/views/projectFront/quality/v2/inspectionRecordOld.vue
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user