Browse Source

fix:[试验管理][试验方法]页面完善

master
HanLong 5 days ago
parent
commit
26b1bac2ed
5 changed files with 38 additions and 4 deletions
  1. +6
    -1
      src/lang/en.js
  2. +11
    -0
      src/lang/en/business/study/studyMethod.js
  3. +6
    -1
      src/lang/zh.js
  4. +11
    -0
      src/lang/zh/business/study/studyMethod.js
  5. +4
    -2
      src/views/business/study/comp/enter.vue

+ 6
- 1
src/lang/en.js View File

@ -27,6 +27,10 @@ import studyFormFill from './en/business/study/studyFormFill'
import studyFormPlan from './en/business/study/studyFormPlan' import studyFormPlan from './en/business/study/studyFormPlan'
//申请表单 //申请表单
import studyFormApply from './en/business/study/studyFormApply' import studyFormApply from './en/business/study/studyFormApply'
//饲养间
import studyRoom from './en/business/study/studyRoom'
//试验方法
import studyMethod from './en/business/study/studyMethod'
//表单 //表单
import form from './en/business/form/form' import form from './en/business/form/form'
@ -144,7 +148,8 @@ export default {
studyFormFill: studyFormFill, studyFormFill: studyFormFill,
studyFormPlan: studyFormPlan, studyFormPlan: studyFormPlan,
studyFormApply: studyFormApply, studyFormApply: studyFormApply,
studyRoom: studyRoom,
studyMethod: studyMethod,
nonTrial: nonTrial, nonTrial: nonTrial,
drug: drug drug: drug
}, },

+ 11
- 0
src/lang/en/business/study/studyMethod.js View File

@ -0,0 +1,11 @@
export default {
ffmc: '方法名称',
cjr: '创建人',
cjsj: '创建时间',
zt: '状态',
yuedu: '阅读',
daochu: '导出',
mc: '名称',
ff: '方法',
qmhz: '签名汇总'
}

+ 6
- 1
src/lang/zh.js View File

@ -27,6 +27,10 @@ import studyFormFill from './zh/business/study/studyFormFill'
import studyFormPlan from './zh/business/study/studyFormPlan' import studyFormPlan from './zh/business/study/studyFormPlan'
//申请表单 //申请表单
import studyFormApply from './zh/business/study/studyFormApply' import studyFormApply from './zh/business/study/studyFormApply'
//饲养间
import studyRoom from './zh/business/study/studyRoom'
//试验方法
import studyMethod from './zh/business/study/studyMethod'
//表单 //表单
import form from './zh/business/form/form' import form from './zh/business/form/form'
@ -140,7 +144,8 @@ export default {
studyFormFill: studyFormFill, studyFormFill: studyFormFill,
studyFormPlan: studyFormPlan, studyFormPlan: studyFormPlan,
studyFormApply: studyFormApply, studyFormApply: studyFormApply,
studyRoom: studyRoom,
studyMethod: studyMethod,
nonTrial: nonTrial, nonTrial: nonTrial,
drug: drug drug: drug
}, },

+ 11
- 0
src/lang/zh/business/study/studyMethod.js View File

@ -0,0 +1,11 @@
export default {
ffmc: '方法名称',
cjr: '创建人',
cjsj: '创建时间',
zt: '状态',
yuedu: '阅读',
daochu: '导出',
mc: '名称',
ff: '方法',
qmhz: '签名汇总'
}

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

@ -14,6 +14,7 @@
<syxx v-if="active === 'syxx'" :study="study" @showDetail="showDetailCallback"/> <syxx v-if="active === 'syxx'" :study="study" @showDetail="showDetailCallback"/>
<syff v-if="active === 'syff'" :study="study" @showDetail="showDetailCallback"/> <syff v-if="active === 'syff'" :study="study" @showDetail="showDetailCallback"/>
<wzlb v-if="active === 'wzlb'" :study="study" @showDetail="showDetailCallback"/> <wzlb v-if="active === 'wzlb'" :study="study" @showDetail="showDetailCallback"/>
<syj v-if="active === 'syj'" :study="study" @showDetail="showDetailCallback"/>
</div> </div>
</div> </div>
</div> </div>
@ -25,10 +26,11 @@ import tbbd from './tbbd.vue'
import syxx from './syxx.vue' import syxx from './syxx.vue'
import syff from './syff.vue' import syff from './syff.vue'
import wzlb from './wzlb.vue' import wzlb from './wzlb.vue'
import syj from './syj.vue'
export default { export default {
name: 'StudyEnter', name: 'StudyEnter',
props: {}, props: {},
components: { ytbd, tbbd ,syxx,syff,wzlb},
components: { ytbd, tbbd ,syxx,syff,wzlb, syj},
computed: {}, computed: {},
filters: {}, filters: {},
data() { data() {
@ -47,7 +49,7 @@ export default {
study: {}, study: {},
} }
}, },
created() {
created() {
// let x = this.$route.params // let x = this.$route.params
// let y = this.$route.query // let y = this.$route.query
// debugger // debugger

Loading…
Cancel
Save