Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -312,7 +312,8 @@
|
|||||||
path:'/docManage/splitting/splitDetail',
|
path:'/docManage/splitting/splitDetail',
|
||||||
query: {
|
query: {
|
||||||
infoId:val.id,
|
infoId:val.id,
|
||||||
infoNumber:val.serialNumber
|
infoNumber:val.serialNumber,
|
||||||
|
createBy:val.createBy
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -251,11 +251,22 @@
|
|||||||
>
|
>
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
<div style='font-size: 20px;margin-bottom: 20px;display: flex;justify-content: center' class="box-title-text-index" v-for='(item,key) in NotSelectedRowKeysValue'>
|
<!-- 没有工程接口人,导致下发收集失败提示-->
|
||||||
|
<span v-if='NoEngineer === 0'>
|
||||||
|
NIO编号为
|
||||||
|
</span>
|
||||||
|
<span style='font-size: 16px;margin-bottom: 20px;' v-for='(item,key) in NotSelectedNoEngineerValue' v-if='NoEngineer === 0'>
|
||||||
|
<span style='color: red'>{{ item.nioNumber }}、</span>
|
||||||
|
</span>
|
||||||
|
<span v-if='NoEngineer === 0'>
|
||||||
|
工程接口人没有填写,请填写完工程接口人再进行下发收集。
|
||||||
|
</span>
|
||||||
|
<!-- 状态不符合,导致不能操作按钮,没有权限-->
|
||||||
|
<div style='font-size: 18px;margin-bottom: 20px;display: flex;justify-content: center' class="box-title-text-index" v-for='(item,key) in NotSelectedRowKeysValue' v-if='NoEngineer === 1'>
|
||||||
<div>NIO编号为{{ item.nioNumber }},状态为<span style='color: red'>{{ item.state }}</span>,没有此按钮的操作权限。</div>
|
<div>NIO编号为{{ item.nioNumber }},状态为<span style='color: red'>{{ item.state }}</span>,没有此按钮的操作权限。</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 认证工程师-提示-->
|
<!-- 认证工程师-提示-->
|
||||||
<div style='font-size: 16px;color: red;display: flex;justify-content: center'>
|
<div style='font-size: 16px;color: red;display: flex;justify-content: center' v-if='NoEngineer === 1'>
|
||||||
{{ currentPersonRole =='homo'? '认证工程师': (currentPersonRole =='sdt'? '工程接口人': '填写人') }}数据状态为
|
{{ currentPersonRole =='homo'? '认证工程师': (currentPersonRole =='sdt'? '工程接口人': '填写人') }}数据状态为
|
||||||
<!-- 下发收集时-->
|
<!-- 下发收集时-->
|
||||||
<span v-if='jurisdiction === "HOMOZFSJ"'>
|
<span v-if='jurisdiction === "HOMOZFSJ"'>
|
||||||
@@ -444,6 +455,8 @@ export default {
|
|||||||
},
|
},
|
||||||
RoleType: [ ],// 控件类型
|
RoleType: [ ],// 控件类型
|
||||||
NotSelectedRowKeysValue: [],
|
NotSelectedRowKeysValue: [],
|
||||||
|
NoEngineer: 1, // 下发收集的权限,0为没有接口人 1为由接口人 默认有
|
||||||
|
NotSelectedNoEngineerValue: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
@@ -484,7 +497,9 @@ export default {
|
|||||||
// 认证工程师 下发收集 权限
|
// 认证工程师 下发收集 权限
|
||||||
// 仅仅状态为 待发起收集 工程接口人退回 变更 可以下发收集
|
// 仅仅状态为 待发起收集 工程接口人退回 变更 可以下发收集
|
||||||
homodistributionAndCollection() {
|
homodistributionAndCollection() {
|
||||||
|
this.NoEngineer = 1
|
||||||
this.NotSelectedRowKeysValue = []
|
this.NotSelectedRowKeysValue = []
|
||||||
|
this.NotSelectedNoEngineerValue = []
|
||||||
// 定义开关 0为没有权限 1为有权限
|
// 定义开关 0为没有权限 1为有权限
|
||||||
let flag = 1
|
let flag = 1
|
||||||
if(this.selectedRowKeysValue.length == 0) {
|
if(this.selectedRowKeysValue.length == 0) {
|
||||||
@@ -492,9 +507,15 @@ export default {
|
|||||||
this.$message.warning(this.$t('selectLeastOne'))
|
this.$message.warning(this.$t('selectLeastOne'))
|
||||||
} else {
|
} else {
|
||||||
this.selectedRowKeysValue.forEach((item, index) => {
|
this.selectedRowKeysValue.forEach((item, index) => {
|
||||||
|
// 状态不符合,不能下发收集
|
||||||
if(item.state !== '待发起收集' && item.state !== '工程接口人退回' && item.state !== '变更') {
|
if(item.state !== '待发起收集' && item.state !== '工程接口人退回' && item.state !== '变更') {
|
||||||
this.NotSelectedRowKeysValue.push(item)
|
this.NotSelectedRowKeysValue.push(item)
|
||||||
flag = 0
|
flag = 0
|
||||||
|
}
|
||||||
|
// 状态符合,但是没有工程接口人 不能下发收集
|
||||||
|
if(item.sdt.dataValue === null && (flag == 1 || flag == 3)) {
|
||||||
|
this.NotSelectedNoEngineerValue.push(item)
|
||||||
|
flag = 3
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -699,7 +720,6 @@ export default {
|
|||||||
// 填写人 提交 权限
|
// 填写人 提交 权限
|
||||||
// 仅仅状态为 待填写 认证工程师退回 可以提交
|
// 仅仅状态为 待填写 认证工程师退回 可以提交
|
||||||
dreJurisdictionSubmit() {
|
dreJurisdictionSubmit() {
|
||||||
console.log(this.selectedRowKeysValue,'this.selectedRowKeysValue')
|
|
||||||
// 定义开关 0为没有权限 1为有权限
|
// 定义开关 0为没有权限 1为有权限
|
||||||
this.NotSelectedRowKeysValue = []
|
this.NotSelectedRowKeysValue = []
|
||||||
let flag = 1
|
let flag = 1
|
||||||
@@ -782,7 +802,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then( (res) =>{
|
.then( (res) =>{
|
||||||
console.log(res)
|
|
||||||
if (res.data.success) {
|
if (res.data.success) {
|
||||||
_this.$message.success(res.data.result)
|
_this.$message.success(res.data.result)
|
||||||
this.areaVisibleFreeze = false
|
this.areaVisibleFreeze = false
|
||||||
@@ -792,7 +811,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch( (error) =>{
|
.catch( (error) =>{
|
||||||
console.log(error);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 冻结配置取消
|
// 冻结配置取消
|
||||||
@@ -819,7 +837,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then( (res) =>{
|
.then( (res) =>{
|
||||||
console.log(res)
|
|
||||||
if (res.data.success) {
|
if (res.data.success) {
|
||||||
this.FreezeList = res.data.result
|
this.FreezeList = res.data.result
|
||||||
}else{
|
}else{
|
||||||
@@ -827,7 +844,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch( (error) =>{
|
.catch( (error) =>{
|
||||||
console.log(error);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 下发收集的权限
|
// 下发收集的权限
|
||||||
@@ -838,6 +854,9 @@ export default {
|
|||||||
} else if(homodistributionAndCollection == 0){
|
} else if(homodistributionAndCollection == 0){
|
||||||
this.visibleoperationFailed = true
|
this.visibleoperationFailed = true
|
||||||
this.jurisdiction = 'HOMOZFSJ'
|
this.jurisdiction = 'HOMOZFSJ'
|
||||||
|
} else if(homodistributionAndCollection == 3) {
|
||||||
|
this.visibleoperationFailed = true
|
||||||
|
this.NoEngineer = 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 下发收集---请求接口
|
// 下发收集---请求接口
|
||||||
@@ -865,7 +884,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then( (res) =>{
|
.then( (res) =>{
|
||||||
console.log(res)
|
|
||||||
if (res.data.success) {
|
if (res.data.success) {
|
||||||
_this.$message.success(res.data.message)
|
_this.$message.success(res.data.message)
|
||||||
_this.areaVisible = false
|
_this.areaVisible = false
|
||||||
@@ -875,7 +893,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch( (error) =>{
|
.catch( (error) =>{
|
||||||
console.log(error);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 同步上报库 权限
|
// 同步上报库 权限
|
||||||
@@ -937,7 +954,6 @@ export default {
|
|||||||
this.$confirm({
|
this.$confirm({
|
||||||
content: _this.$t('Areyousureparameteritems'),
|
content: _this.$t('Areyousureparameteritems'),
|
||||||
onOk() {
|
onOk() {
|
||||||
console.log(configDataList,'configDataListconfigDataList')
|
|
||||||
postAction(_this.url.add, configDataList).then((res) => {
|
postAction(_this.url.add, configDataList).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
_this.GetgetTableList()
|
_this.GetgetTableList()
|
||||||
@@ -985,7 +1001,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then( (res) =>{
|
.then( (res) =>{
|
||||||
console.log(res)
|
|
||||||
if (res.data.success) {
|
if (res.data.success) {
|
||||||
_this.$message.success(res.data.result)
|
_this.$message.success(res.data.result)
|
||||||
_this.GetgetTableList()
|
_this.GetgetTableList()
|
||||||
@@ -995,7 +1010,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch( (error) =>{
|
.catch( (error) =>{
|
||||||
console.log(error);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 强制撤回权限
|
// 强制撤回权限
|
||||||
@@ -1032,7 +1046,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then( (res) =>{
|
.then( (res) =>{
|
||||||
console.log(res)
|
|
||||||
if (res.data.success) {
|
if (res.data.success) {
|
||||||
_this.$message.success(res.data.result)
|
_this.$message.success(res.data.result)
|
||||||
_this.getTableList()
|
_this.getTableList()
|
||||||
@@ -1042,7 +1055,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch( (error) =>{
|
.catch( (error) =>{
|
||||||
console.log(error);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 分配填写人
|
// 分配填写人
|
||||||
@@ -1092,7 +1104,6 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
handleCody() {
|
handleCody() {
|
||||||
console.log(this.paramsManifest, 'paramsManifestparamsManifestparamsManifestparamsManifest')
|
|
||||||
},
|
},
|
||||||
searchQuery() {
|
searchQuery() {
|
||||||
this.pageNo = 1
|
this.pageNo = 1
|
||||||
@@ -1147,7 +1158,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.log(error)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -888,7 +888,7 @@
|
|||||||
return current && current < moment().subtract(1, 'day')
|
return current && current < moment().subtract(1, 'day')
|
||||||
},
|
},
|
||||||
getRoleByUserId() {
|
getRoleByUserId() {
|
||||||
getAction('/sys/role/getRoleByUserId', {}).then((res) => {
|
getAction('/sys/role/getRoleByUserId', { projectLibraryId: this.$route.query.id }).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.roleSwitchingList = res.result || []
|
this.roleSwitchingList = res.result || []
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user