Browse Source

fix:[试验管理]填报bug

lkf
15881625488@163.com 3 months ago
parent
commit
a6ac76f6ac
8 changed files with 11 additions and 11 deletions
  1. +1
    -1
      src/views/business/form/drug/comp/tbbdList.vue
  2. +2
    -2
      src/views/business/form/drug/comp/ytbdList.vue
  3. +1
    -1
      src/views/business/form/nonTrial/comp/tbbdList.vue
  4. +2
    -2
      src/views/business/form/nonTrial/comp/ytbdList.vue
  5. +1
    -1
      src/views/business/study/comp/jhbdList.vue
  6. +1
    -1
      src/views/business/study/comp/tbbd/Ghgsr.vue
  7. +1
    -1
      src/views/business/study/comp/tbbdList.vue
  8. +2
    -2
      src/views/business/study/comp/ytbdList.vue

+ 1
- 1
src/views/business/form/drug/comp/tbbdList.vue View File

@ -110,7 +110,7 @@
@click="edit(scope.row)" v-hasPermi="['business:drugFormFill:bj']">{{ @click="edit(scope.row)" v-hasPermi="['business:drugFormFill:bj']">{{
$t('form.edit') }}</el-button> $t('form.edit') }}</el-button>
<!-- 复核 --> <!-- 复核 -->
<el-button type="text" v-if="scope.row.bdzt === 3" @click="fh(scope.row)"
<el-button type="text" v-if="scope.row.bdzt === 3&&id!=scope.row.userId" @click="fh(scope.row)"
v-hasPermi="['business:drugFormFill:fh']">{{ v-hasPermi="['business:drugFormFill:fh']">{{
$t('page.business.study.studyFormFill.fh') }}</el-button> $t('page.business.study.studyFormFill.fh') }}</el-button>
<!-- 加签 --> <!-- 加签 -->

+ 2
- 2
src/views/business/form/drug/comp/ytbdList.vue View File

@ -96,13 +96,13 @@
<template> <template>
<!-- 有权限审核 --> <!-- 有权限审核 -->
<el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:drugFormPre:sh']" <el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:drugFormPre:sh']"
v-if="scope.row.bdzt === 3">{{ $t('page.business.form.audit') }}</el-button>
v-if="scope.row.bdzt === 3&&id!=scope.row.userId">{{ $t('page.business.form.audit') }}</el-button>
</template> </template>
</template> </template>
<template v-else> <template v-else>
<!-- 有权限审核 --> <!-- 有权限审核 -->
<el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:drugFormPre:sh']" <el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:drugFormPre:sh']"
v-if="scope.row.bdzt === 3">{{ $t('page.business.form.audit') }}</el-button>
v-if="scope.row.bdzt === 3&&id!=scope.row.userId">{{ $t('page.business.form.audit') }}</el-button>
</template> </template>
<template v-if="scope.row.bdzt === 5&&id==scope.row.userId"> <template v-if="scope.row.bdzt === 5&&id==scope.row.userId">
<el-button type="text" @click="gb(scope.row)">{{ $t('page.business.study.studyFormPre.guanbi') }}</el-button> <el-button type="text" @click="gb(scope.row)">{{ $t('page.business.study.studyFormPre.guanbi') }}</el-button>

+ 1
- 1
src/views/business/form/nonTrial/comp/tbbdList.vue View File

@ -111,7 +111,7 @@
@click="edit(scope.row)" v-hasPermi="['business:nonTrialFormFill:bj']">{{ @click="edit(scope.row)" v-hasPermi="['business:nonTrialFormFill:bj']">{{
$t('form.edit') }}</el-button> $t('form.edit') }}</el-button>
<!-- 复核 --> <!-- 复核 -->
<el-button type="text" v-if="scope.row.bdzt === 3" @click="fh(scope.row)"
<el-button type="text" v-if="scope.row.bdzt === 3&&id!=scope.row.userId" @click="fh(scope.row)"
v-hasPermi="['business:nonTrialFormFill:fh']">{{ v-hasPermi="['business:nonTrialFormFill:fh']">{{
$t('page.business.study.studyFormFill.fh') }}</el-button> $t('page.business.study.studyFormFill.fh') }}</el-button>
<!-- 加签 --> <!-- 加签 -->

+ 2
- 2
src/views/business/form/nonTrial/comp/ytbdList.vue View File

@ -97,13 +97,13 @@
<template> <template>
<!-- 有权限审核 --> <!-- 有权限审核 -->
<el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:nonTrialFormPre:sh']" <el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:nonTrialFormPre:sh']"
v-if="scope.row.bdzt === 3">{{ $t('page.business.form.audit') }}</el-button>
v-if="scope.row.bdzt === 3&&id!=scope.row.userId">{{ $t('page.business.form.audit') }}</el-button>
</template> </template>
</template> </template>
<template v-else> <template v-else>
<!-- 有权限审核 --> <!-- 有权限审核 -->
<el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:nonTrialFormPre:sh']" <el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:nonTrialFormPre:sh']"
v-if="scope.row.bdzt === 3">{{ $t('page.business.form.audit') }}</el-button>
v-if="scope.row.bdzt === 3&&id!=scope.row.userId">{{ $t('page.business.form.audit') }}</el-button>
</template> </template>
<template v-if="scope.row.bdzt === 5 && id == scope.row.userId"> <template v-if="scope.row.bdzt === 5 && id == scope.row.userId">
<el-button type="text" @click="gb(scope.row)">{{ $t('page.business.study.studyFormPre.guanbi') <el-button type="text" @click="gb(scope.row)">{{ $t('page.business.study.studyFormPre.guanbi')

+ 1
- 1
src/views/business/study/comp/jhbdList.vue View File

@ -72,7 +72,7 @@
@click="edit(scope.row)" v-hasPermi="['business:studyFormPlan:bj']">{{ @click="edit(scope.row)" v-hasPermi="['business:studyFormPlan:bj']">{{
$t('form.edit') }}</el-button> $t('form.edit') }}</el-button>
<!-- 复核 --> <!-- 复核 -->
<el-button type="text" v-if="scope.row.bdzt === 3" @click="fh(scope.row)"
<el-button type="text" v-if="scope.row.bdzt === 3&&id!=scope.row.userId" @click="fh(scope.row)"
v-hasPermi="['business:studyFormPlan:fh']">{{ v-hasPermi="['business:studyFormPlan:fh']">{{
$t('page.business.study.studyFormPlan.fh') }}</el-button> $t('page.business.study.studyFormPlan.fh') }}</el-button>
<!-- 更换归属人 --> <!-- 更换归属人 -->

+ 1
- 1
src/views/business/study/comp/tbbd/Ghgsr.vue View File

@ -93,7 +93,7 @@ export default {
reset() { reset() {
this.form = { this.form = {
id: null, id: null,
qmyy: $t('page.business.study.studyFormFill.ghgsr'),
qmyy: this.$t('page.business.study.studyFormFill.ghgsr'),
userId: null, userId: null,
UserMc: null, UserMc: null,
remark: null, remark: null,

+ 1
- 1
src/views/business/study/comp/tbbdList.vue View File

@ -111,7 +111,7 @@
@click="edit(scope.row)" v-hasPermi="['business:studyFormFill:bj']">{{ @click="edit(scope.row)" v-hasPermi="['business:studyFormFill:bj']">{{
$t('form.edit') }}</el-button> $t('form.edit') }}</el-button>
<!-- 复核 --> <!-- 复核 -->
<el-button type="text" v-if="scope.row.bdzt === 3 && isMatchSubject" @click="fh(scope.row)"
<el-button type="text" v-if="scope.row.bdzt === 3 && isMatchSubject&&id!=scope.row.userId" @click="fh(scope.row)"
v-hasPermi="['business:studyFormFill:fh']">{{ v-hasPermi="['business:studyFormFill:fh']">{{
$t('page.business.study.studyFormFill.fh') }}</el-button> $t('page.business.study.studyFormFill.fh') }}</el-button>
<!-- 加签 --> <!-- 加签 -->

+ 2
- 2
src/views/business/study/comp/ytbdList.vue View File

@ -94,13 +94,13 @@
<template> <template>
<!-- 有权限审核 --> <!-- 有权限审核 -->
<el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:studyFormPre:sh']" <el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:studyFormPre:sh']"
v-if="scope.row.bdzt === 3 && isMatchSubject">{{ $t('page.business.form.audit') }}</el-button>
v-if="scope.row.bdzt === 3 && isMatchSubjectt&&id!=scope.row.userId">{{ $t('page.business.form.audit') }}</el-button>
</template> </template>
</template> </template>
<template v-else> <template v-else>
<!-- 有权限审核 --> <!-- 有权限审核 -->
<el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:studyFormPre:sh']" <el-button type="text" @click="audit(scope.row)" v-hasPermi="['business:studyFormPre:sh']"
v-if="scope.row.bdzt === 3 && isMatchSubject">{{ $t('page.business.form.audit') }}</el-button>
v-if="scope.row.bdzt === 3 && isMatchSubject&&id!=scope.row.userId">{{ $t('page.business.form.audit') }}</el-button>
</template> </template>
<template v-if="scope.row.bdzt === 5 && id == scope.row.userId"> <template v-if="scope.row.bdzt === 5 && id == scope.row.userId">
<el-button type="text" @click="gb(scope.row)">{{ $t('page.business.study.studyFormPre.guanbi') <el-button type="text" @click="gb(scope.row)">{{ $t('page.business.study.studyFormPre.guanbi')

Loading…
Cancel
Save