Compare commits
2 Commits
355f6bcf86
...
38fb56e09e
Author | SHA1 | Date |
---|---|---|
|
38fb56e09e | |
|
105537c49e |
|
@ -837,10 +837,9 @@ 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.IntrahepaticLesion && (obj.LesionOrgan === '肝脏' || obj.LesionOrgan === 'Liver') && obj.LesionType === 0 && obj.SaveTypeEnum === 2
|
obj => !obj.IsLymphNodes && obj.LesionType === 0 && obj.LesionName !== innerForm.LesionName
|
||||||
)
|
)
|
||||||
|
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