Compare commits
No commits in common. "38fb56e09ec5fcfd62ab899aaf812d4fafc9feaa" and "355f6bcf8694b5f996725ac8a0c752eed88aec19" have entirely different histories.
38fb56e09e
...
355f6bcf86
|
@ -837,9 +837,10 @@ export default {
|
||||||
const innerForm = this.innerFormData[`${table.Id}_${rowIndex}`]
|
const innerForm = this.innerFormData[`${table.Id}_${rowIndex}`]
|
||||||
if (table.LesionType === 0 && this.isBaseLineTask && !innerForm.IsLymphNodes && !innerForm.IntrahepaticLesion) {
|
if (table.LesionType === 0 && this.isBaseLineTask && !innerForm.IsLymphNodes && !innerForm.IntrahepaticLesion) {
|
||||||
const arr = Object.values(this.innerFormData).filter(
|
const arr = Object.values(this.innerFormData).filter(
|
||||||
obj => !obj.IsLymphNodes && obj.LesionType === 0 && obj.LesionName !== innerForm.LesionName
|
obj => !obj.IntrahepaticLesion && (obj.LesionOrgan === '肝脏' || obj.LesionOrgan === 'Liver') && obj.LesionType === 0 && obj.SaveTypeEnum === 2
|
||||||
)
|
)
|
||||||
if (arr.length === 0 && !innerForm.RowId) {
|
|
||||||
|
if (arr.length === 0) {
|
||||||
const confirm = await this.$confirm(
|
const confirm = await this.$confirm(
|
||||||
this.$t('trials:mRecist:warnning:msg7'),
|
this.$t('trials:mRecist:warnning:msg7'),
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue