|
@ -224,8 +224,8 @@ Vue.component('breast-cancer-patient', {
|
|
|
{
|
|
|
label: '随访状态',
|
|
|
children: [
|
|
|
{ prop: 'label1', label: '已随访' },
|
|
|
{ prop: 'label2', label: '未随访' },
|
|
|
{ prop: 'followupNum', label: '已随访' },
|
|
|
{ prop: 'unFollowupNum', label: '未随访' },
|
|
|
]
|
|
|
},
|
|
|
],
|
|
@ -414,18 +414,18 @@ Vue.component('breast-cancer-patient', {
|
|
|
},
|
|
|
openDialog(row, prop) {
|
|
|
var vm = this
|
|
|
// todo 需改为未随访字段 未随访不可点击
|
|
|
const excludeFields = ['infoCompleteNum']
|
|
|
// 未随访不可点击
|
|
|
const excludeFields = ['unFollowupNum']
|
|
|
if (excludeFields.includes(prop)) {
|
|
|
return
|
|
|
}
|
|
|
// 随访字段 需改随访字段 点击已随访需待状态过去
|
|
|
const includeFields = ["followUp", ]
|
|
|
if (includeFields.includes(prop)) {
|
|
|
this.query.followUp = row.followUp
|
|
|
}else{
|
|
|
this.query.followUp = ''
|
|
|
}
|
|
|
// 随访字段 点击已随访需待状态过去 20250807 接口不支持未随访查询,筛选条件待定
|
|
|
// const includeFields = ["followupNum", ]
|
|
|
// if (includeFields.includes(prop)) {
|
|
|
// this.query.followupNum = row.followupNum
|
|
|
// }else{
|
|
|
// this.query.followupNum = ''
|
|
|
// }
|
|
|
vm.dialogLoading = true
|
|
|
this.query.type = 'r_' + prop
|
|
|
this.query.orgCode = row.orgCode
|