diff --git a/src/api/business/study/studyFormApply.js b/src/api/business/study/studyFormApply.js
index b14d96c..8c4200b 100644
--- a/src/api/business/study/studyFormApply.js
+++ b/src/api/business/study/studyFormApply.js
@@ -24,7 +24,13 @@ export function studyFormApply_qmxx(query) {
params: query
})
}
-
+export function studyFormApply_jcgjqmxxList(query) {
+ return request({
+ url: '/system/business/studyFormApply/jcgjqmxxList',
+ method: 'get',
+ params: query
+ })
+}
//详情
export function studyFormApply_info(query) {
return request({
diff --git a/src/api/business/study/studyFormFill.js b/src/api/business/study/studyFormFill.js
index 14d1263..94d27bd 100644
--- a/src/api/business/study/studyFormFill.js
+++ b/src/api/business/study/studyFormFill.js
@@ -24,6 +24,13 @@ export function studyFormFill_exportDetail(query) {
params: query
})
}
+export function studyFormFill_jcgjqmxxList(query) {
+ return request({
+ url: '/system/business/studyFormFill/jcgjqmxxList',
+ method: 'get',
+ params: query
+ })
+}
//签名信息
export function studyFormFill_qmxx(query) {
diff --git a/src/api/business/study/studyFormPlan.js b/src/api/business/study/studyFormPlan.js
index be88b3a..1088999 100644
--- a/src/api/business/study/studyFormPlan.js
+++ b/src/api/business/study/studyFormPlan.js
@@ -24,7 +24,13 @@ export function studyFormPlan_qmxx(query) {
params: query
})
}
-
+export function studyFormPlan_jcgjqmxxList(query) {
+ return request({
+ url: '/system/business/studyFormPlan/jcgjqmxxList',
+ method: 'get',
+ params: query
+ })
+}
//详情
export function studyFormPlan_info(query) {
return request({
diff --git a/src/api/business/systemLog/systemLog.js b/src/api/business/systemLog/systemLog.js
new file mode 100644
index 0000000..4526380
--- /dev/null
+++ b/src/api/business/systemLog/systemLog.js
@@ -0,0 +1,9 @@
+import request from '@/utils/request'
+
+export function systemLog_list(query) {
+ return request({
+ url: '/system/business/systemLog/list',
+ method: 'get',
+ params: query
+ })
+}
diff --git a/src/lang/en.js b/src/lang/en.js
index b545326..9b1cc45 100644
--- a/src/lang/en.js
+++ b/src/lang/en.js
@@ -59,6 +59,8 @@ import sj from './en/business/resource/sj'
import gsp from './en/business/resource/gsp'
//档案记录
import archive from './en/business/archive/archive'
+//日志管理
+import systemLog from './en/system/systemLog'
export default {
system: {
@@ -104,8 +106,8 @@ export default {
reason: 'Reason',
modify: 'Modify',
modifyRecord: 'Change Data',
- hqz:'Get the value',
- xztp:'选择天平',
+ hqz: 'Get the value',
+ xztp: '选择天平',
lengthLimit: '长度不能超过',
notEmpty: '不能为空',
@@ -147,7 +149,8 @@ export default {
role,
dept,
user,
- template
+ template,
+ systemLog
},
business: {
home: home,
diff --git a/src/lang/en/system/systemLog.js b/src/lang/en/system/systemLog.js
new file mode 100644
index 0000000..3c8012e
--- /dev/null
+++ b/src/lang/en/system/systemLog.js
@@ -0,0 +1,10 @@
+export default {
+ //日志管理
+ czrz: 'User Action Log',
+ dlrz: 'User Login Log',
+ dc: 'Export Excel',
+ czr: 'User',
+ czlx: 'Action',
+ czxq: 'Detail',
+ czsj: 'Datetime'
+}
diff --git a/src/lang/zh.js b/src/lang/zh.js
index 1bca591..c070ccb 100644
--- a/src/lang/zh.js
+++ b/src/lang/zh.js
@@ -58,6 +58,8 @@ import sj from './zh/business/resource/sj'
import gsp from './zh/business/resource/gsp'
//档案记录
import archive from './zh/business/archive/archive'
+//日志管理
+import systemLog from './zh/system/systemLog'
export default {
system: {
@@ -100,8 +102,8 @@ export default {
reason: '原因',
modify: '修改',
modifyRecord: '修改记录',
- hqz:'获取值',
- xztp:'选择天平',
+ hqz: '获取值',
+ xztp: '选择天平',
lengthLimit: '长度不能超过',
notEmpty: '不能为空',
operationSuccess: '操作成功',
@@ -142,7 +144,8 @@ export default {
role,
dept,
user,
- template
+ template,
+ systemLog
},
business: {
home: home,
diff --git a/src/lang/zh/system/systemLog.js b/src/lang/zh/system/systemLog.js
new file mode 100644
index 0000000..4eeca86
--- /dev/null
+++ b/src/lang/zh/system/systemLog.js
@@ -0,0 +1,10 @@
+export default {
+ //日志管理
+ czrz: '操作日志',
+ dlrz: '登录日志',
+ dc: '导出Excel',
+ czr: '操作人',
+ czlx: '操作类型',
+ czxq: '操作详情',
+ czsj: '操作时间'
+}
diff --git a/src/views/business/comps/common/JcgjList.vue b/src/views/business/comps/common/JcgjList.vue
index e915d51..ff1ac26 100644
--- a/src/views/business/comps/common/JcgjList.vue
+++ b/src/views/business/comps/common/JcgjList.vue
@@ -1,11 +1,11 @@
-
+
-
+
{{ $t('page.business.study.study.qb') }}
{{ $t('page.business.study.study.lc') }}
@@ -81,6 +81,10 @@ export default {
type:Boolean,
default:false
},
+ readonly: {
+ type:Boolean,
+ default:false
+ },
},
data() {
return {
diff --git a/src/views/business/comps/template/comps/gsp/SYWZPZJHB.vue b/src/views/business/comps/template/comps/gsp/SYWZPZJHB.vue
index b899488..949c8bc 100644
--- a/src/views/business/comps/template/comps/gsp/SYWZPZJHB.vue
+++ b/src/views/business/comps/template/comps/gsp/SYWZPZJHB.vue
@@ -149,7 +149,7 @@ export default {
width: 280,
headerSelectKey: "preparationConcentrationUnit",
fillType: "actFill",
- headerOptions: this.$store.state.template.volumeOptions,
+ headerOptions: this.getDictOptions('business_nddw'),
defaultValue: "mg",
bodyType: "inputNumber",
bodyFillType: "actFill",
@@ -161,7 +161,7 @@ export default {
width: 280,
headerSelectKey: "preparationVolumeUnit",
fillType: "actFill",
- headerOptions: this.$store.state.template.volumeOptions,
+ headerOptions: this.getDictOptions('business_tjdw'),
bodyType: "inputNumber",
bodyFillType: "actFill",
bodyMaxlength: 10,
diff --git a/src/views/business/form/drug/comp/enter.vue b/src/views/business/form/drug/comp/enter.vue
index c046eba..a03c591 100644
--- a/src/views/business/form/drug/comp/enter.vue
+++ b/src/views/business/form/drug/comp/enter.vue
@@ -9,10 +9,10 @@
-
-
-
-
+
+
+
+
diff --git a/src/views/business/form/nonTrial/comp/enter.vue b/src/views/business/form/nonTrial/comp/enter.vue
index 1366156..984d362 100644
--- a/src/views/business/form/nonTrial/comp/enter.vue
+++ b/src/views/business/form/nonTrial/comp/enter.vue
@@ -9,10 +9,10 @@
-
-
-
-
+
+
+
+
diff --git a/src/views/business/form/nonTrial/comp/tbbd.vue b/src/views/business/form/nonTrial/comp/tbbd.vue
index 5cc5edf..4edce1a 100644
--- a/src/views/business/form/nonTrial/comp/tbbd.vue
+++ b/src/views/business/form/nonTrial/comp/tbbd.vue
@@ -1,7 +1,7 @@
@@ -41,6 +41,9 @@ export default {
methods: {
showDetailCallback(val){
this.$emit('showDetail',val)
+ },
+ changeTab(val){
+ this.$emit('changeTab',val)
}
}
}
diff --git a/src/views/business/form/nonTrial/comp/tbbdList.vue b/src/views/business/form/nonTrial/comp/tbbdList.vue
index 0340557..91e33f3 100644
--- a/src/views/business/form/nonTrial/comp/tbbdList.vue
+++ b/src/views/business/form/nonTrial/comp/tbbdList.vue
@@ -335,7 +335,11 @@ export default {
this.$alert(data.ffmc, '', {
confirmButtonText: this.$t('page.business.study.studyMethod.qyd'),
callback: action => {
- this.$tab.openPage("loading", data.toUrl)
+ if(this.$route.path===data.toUrl){
+ this.$emit('changeTab',{key:'syff'})
+ }else{
+ this.$tab.openPage("loading", data.toUrl)
+ }
}
});
},
diff --git a/src/views/business/form/nonTrial/comp/ytbd.vue b/src/views/business/form/nonTrial/comp/ytbd.vue
index 2b4fa26..ed6b693 100644
--- a/src/views/business/form/nonTrial/comp/ytbd.vue
+++ b/src/views/business/form/nonTrial/comp/ytbd.vue
@@ -1,7 +1,7 @@
@@ -41,6 +41,9 @@ export default {
methods: {
showDetailCallback(val){
this.$emit('showDetail',val)
+ },
+ changeTab(val){
+ this.$emit('changeTab',val)
}
}
}
diff --git a/src/views/business/form/nonTrial/comp/ytbdList.vue b/src/views/business/form/nonTrial/comp/ytbdList.vue
index db7b7fc..924760c 100644
--- a/src/views/business/form/nonTrial/comp/ytbdList.vue
+++ b/src/views/business/form/nonTrial/comp/ytbdList.vue
@@ -370,7 +370,11 @@ export default {
this.$alert(data.ffmc, '', {
confirmButtonText: this.$t('page.business.study.studyMethod.qyd'),
callback: action => {
- this.$tab.openPage("loading", data.toUrl)
+ if(this.$route.path===data.toUrl){
+ this.$emit('changeTab',{key:'syff'})
+ }else{
+ this.$tab.openPage("loading", data.toUrl)
+ }
}
});
},
diff --git a/src/views/business/resource/gsp/comps/ffjl/Jq.vue b/src/views/business/resource/gsp/comps/ffjl/Jq.vue
index 56fde7f..3c77bc0 100644
--- a/src/views/business/resource/gsp/comps/ffjl/Jq.vue
+++ b/src/views/business/resource/gsp/comps/ffjl/Jq.vue
@@ -3,7 +3,6 @@
-
-
+
@@ -107,7 +107,7 @@ export default {
mc: null,
bh: null,
qmyy: this.$t('page.business.resource.sj.sqjy'),
- sdrmm: null
+ qmrmm: null
}
this.resetForm("form")
},
@@ -119,6 +119,7 @@ export default {
this.form.id = row.id
this.form.mc = row.mc
this.form.bh = row.bh
+ this.daterange = []
this.open = true
},
save() {
diff --git a/src/views/business/resource/sj/comps/Sd.vue b/src/views/business/resource/sj/comps/Sd.vue
index 7d6e654..fbc2842 100644
--- a/src/views/business/resource/sj/comps/Sd.vue
+++ b/src/views/business/resource/sj/comps/Sd.vue
@@ -31,7 +31,8 @@
-
+
+
@@ -93,7 +94,7 @@ export default {
mc: null,
bh: null,
qmyy: this.$t('page.business.resource.sj.sdsj'),
- sdrmm: null
+ qmrmm: null
}
this.resetForm("form")
},
diff --git a/src/views/business/resource/sj/comps/Xgkc.vue b/src/views/business/resource/sj/comps/Xgkc.vue
index 99354df..9d841bf 100644
--- a/src/views/business/resource/sj/comps/Xgkc.vue
+++ b/src/views/business/resource/sj/comps/Xgkc.vue
@@ -42,7 +42,8 @@
-
+
+
@@ -109,7 +110,7 @@ export default {
mc: null,
bh: null,
qmyy: this.$t('page.business.resource.sj.xgkc'),
- sdrmm: null,
+ qmrmm: null,
kc: '',
kcdw: '',
}
diff --git a/src/views/business/study/comp/enter.vue b/src/views/business/study/comp/enter.vue
index 2aeedba..cda9a1e 100644
--- a/src/views/business/study/comp/enter.vue
+++ b/src/views/business/study/comp/enter.vue
@@ -9,12 +9,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/src/views/business/study/comp/jhbd/Xq.vue b/src/views/business/study/comp/jhbd/Xq.vue
index e1924d5..cb9c841 100644
--- a/src/views/business/study/comp/jhbd/Xq.vue
+++ b/src/views/business/study/comp/jhbd/Xq.vue
@@ -10,73 +10,181 @@
{{ $t('form.close') }}
+ {{
+ $t('page.business.study.studyFormPlan.tb') }}
-
-
-
-
{{ $t('page.business.study.studyFormPlan.dcqbjcgj') }}
-
-
{{ $t('page.business.study.studyFormPlan.dclcjcgj') }}
-
-
{{ $t('page.business.study.studyFormPlan.dcbjjcgj') }}
-
-
{{ $t('page.business.study.studyFormPlan.dcxgjcgj') }}
-
-
{{ $t('page.business.study.studyFormPlan.dcbhsjgj') }}
-
-
-
-
-
{{ $t('page.business.study.studyFormPlan.qmxx') }}
-
-
-
-
-
-
-
-
-
-
-
+ {{ $t('page.business.study.studyFormPlan.dcqbjcgj') }}
+
+ {{ $t('page.business.study.studyFormPlan.dclcjcgj') }}
+
+ {{ $t('page.business.study.studyFormPlan.dcbjjcgj') }}
+
+ {{ $t('page.business.study.studyFormPlan.dcxgjcgj') }}
+
+ {{ $t('page.business.study.studyFormPlan.dcbhsjgj') }}
+
+
+
+
+
+
+
+
+
+
+
{{ $t('page.business.study.studyFormPlan.qmxx') }}
+
+
+
+
+ | {{ $t('page.business.study.studyFormPlan.qmr') }} |
+ {{ $t('page.business.study.studyFormPlan.qmyy') }} |
+ {{ $t('page.business.study.studyFormPlan.qmsj') }} |
+ {{ $t('page.business.study.studyFormPlan.bzyy') }} |
+
+
+
+
+ | {{ item.qmrMc }} |
+ {{ $i18n.locale === 'zh_CN' ? item.qmyy : item.qmyyEn }} |
+ {{ item.createTime }} |
+ {{ item.remark }} |
+
+
+
+
+
+
{{ $t('page.business.study.studyFormPlan.jcgj') }}
+
+
+
+
+
+
+
+
+
+
+
{{ $t('page.business.study.studyFormPlan.qmxx') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
{{ $t('page.business.study.studyFormPlan.jcgj') }}
+
+
+
-
-
-
{{ $t('page.business.study.studyFormPlan.jcgj') }}
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/business/study/comp/jhbdList.vue b/src/views/business/study/comp/jhbdList.vue
index 3f07ada..ed077d8 100644
--- a/src/views/business/study/comp/jhbdList.vue
+++ b/src/views/business/study/comp/jhbdList.vue
@@ -191,7 +191,11 @@ export default {
this.$alert(data.ffmc, '', {
confirmButtonText: this.$t('page.business.study.studyMethod.qyd'),
callback: action => {
- this.$tab.openPage("loading", data.toUrl)
+ if(this.$route.path===data.toUrl){
+ this.$emit('changeTab',{key:'syff'})
+ }else{
+ this.$tab.openPage("loading", data.toUrl)
+ }
}
});
},
diff --git a/src/views/business/study/comp/sqbd/Xq.vue b/src/views/business/study/comp/sqbd/Xq.vue
index e1e8b98..975e963 100644
--- a/src/views/business/study/comp/sqbd/Xq.vue
+++ b/src/views/business/study/comp/sqbd/Xq.vue
@@ -14,52 +14,89 @@
$t('page.business.study.studyFormApply.tb') }}
-
-
-
-
- {{ $t('page.business.study.studyFormApply.dcqbjcgj') }}
-
- {{ $t('page.business.study.studyFormApply.dclcjcgj') }}
-
- {{ $t('page.business.study.studyFormApply.dcbjjcgj') }}
-
- {{ $t('page.business.study.studyFormApply.dcxgjcgj') }}
-
- {{ $t('page.business.study.studyFormApply.dcbhsjgj') }}
-
-
-
-
-
-
{{ $t('page.business.study.studyFormApply.qmxx') }}
-
-
-
-
-
-
-
-
-
-
-
+ {{ $t('page.business.study.studyFormApply.dcqbjcgj') }}
+
+ {{ $t('page.business.study.studyFormApply.dclcjcgj') }}
+
+ {{ $t('page.business.study.studyFormApply.dcbjjcgj') }}
+
+ {{ $t('page.business.study.studyFormApply.dcxgjcgj') }}
+
+ {{ $t('page.business.study.studyFormApply.dcbhsjgj') }}
+
+
+
+
+
+
+
+
+
+
+
{{ $t('page.business.study.studyFormApply.qmxx') }}
+
+
+
+
+ | {{ $t('page.business.study.studyFormApply.qmr') }} |
+ {{ $t('page.business.study.studyFormApply.qmyy') }} |
+ {{ $t('page.business.study.studyFormApply.qmsj') }} |
+ {{ $t('page.business.study.studyFormApply.bzyy') }} |
+
+
+
+
+ | {{ item.qmrMc }} |
+ {{ $i18n.locale === 'zh_CN' ? item.qmyy : item.qmyyEn }} |
+ {{ item.createTime }} |
+ {{ item.remark }} |
+
+
+
+
+
+
{{ $t('page.business.study.studyFormApply.jcgj') }}
+
+
+
+
+
+
+
+
+
+
+
{{ $t('page.business.study.studyFormApply.qmxx') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
{{ $t('page.business.study.studyFormApply.jcgj') }}
+
+
+
-
-
-
{{ $t('page.business.study.studyFormApply.jcgj') }}
-
-
-
-
-
@@ -97,8 +134,7 @@
-
-
@@ -113,18 +149,22 @@
+
\ No newline at end of file
diff --git a/src/views/business/study/comp/syxx.vue b/src/views/business/study/comp/syxx.vue
index ac1edb7..0816e04 100644
--- a/src/views/business/study/comp/syxx.vue
+++ b/src/views/business/study/comp/syxx.vue
@@ -50,7 +50,7 @@
-
+
@@ -147,6 +147,9 @@ export default {
showDetailCallback(val) {
this.showDetail = val
this.$emit('showDetail', val)
+ },
+ changeTab(val){
+ this.$emit('changeTab',val)
}
}
}
diff --git a/src/views/business/study/comp/tbbd.vue b/src/views/business/study/comp/tbbd.vue
index 811394e..bf0a3aa 100644
--- a/src/views/business/study/comp/tbbd.vue
+++ b/src/views/business/study/comp/tbbd.vue
@@ -4,7 +4,7 @@
-
+
@@ -50,6 +50,9 @@ export default {
showDetailCallback(val){
this.showDetail=val
this.$emit('showDetail',val)
+ },
+ changeTab(val){
+ this.$emit('changeTab',val)
}
}
}
diff --git a/src/views/business/study/comp/tbbd/Xq.vue b/src/views/business/study/comp/tbbd/Xq.vue
index 5918421..8bc6428 100644
--- a/src/views/business/study/comp/tbbd/Xq.vue
+++ b/src/views/business/study/comp/tbbd/Xq.vue
@@ -25,48 +25,77 @@
{{ $t('page.business.study.studyFormFill.dcbhsjgj') }}
-
-
-
+
+
+
-
-
-
{{ $t('page.business.study.studyFormFill.qmxx') }}
-
-
-
-
-
-
-
-
-
+
+
+
+
{{ $t('page.business.study.studyFormFill.qmxx') }}
-
-
+
+
+
+ | {{ $t('page.business.study.studyFormFill.qmr') }} |
+ {{ $t('page.business.study.studyFormFill.qmyy') }} |
+ {{ $t('page.business.study.studyFormFill.qmsj') }} |
+ {{ $t('page.business.study.studyFormFill.bzyy') }} |
+
+
+
+
+ | {{ item.qmrMc }} |
+ {{ $i18n.locale === 'zh_CN' ? item.qmyy : item.qmyyEn }} |
+ {{ item.createTime }} |
+ {{ item.remark }} |
+
+
+
+
+
+
{{ $t('page.business.study.studyFormFill.jcgj') }}
-
-
-
-
{{ $t('page.business.study.studyFormFill.jcgj') }}
+
-
-
-
-
+
+
+
+
+
{{ $t('page.business.study.studyFormFill.qmxx') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
{{ $t('page.business.study.studyFormFill.jcgj') }}
+
+
+
+
@@ -120,16 +149,21 @@
\ No newline at end of file
diff --git a/src/views/business/study/comp/tbbdList.vue b/src/views/business/study/comp/tbbdList.vue
index 80f13e5..80e6cef 100644
--- a/src/views/business/study/comp/tbbdList.vue
+++ b/src/views/business/study/comp/tbbdList.vue
@@ -386,7 +386,11 @@ export default {
this.$alert(data.ffmc, '', {
confirmButtonText: this.$t('page.business.study.studyMethod.qyd'),
callback: action => {
- this.$tab.openPage("loading", data.toUrl)
+ if(this.$route.path===data.toUrl){
+ this.$emit('changeTab',{key:'syff'})
+ }else{
+ this.$tab.openPage("loading", data.toUrl)
+ }
}
});
},
diff --git a/src/views/business/study/comp/ytbd.vue b/src/views/business/study/comp/ytbd.vue
index b24978f..509b3b6 100644
--- a/src/views/business/study/comp/ytbd.vue
+++ b/src/views/business/study/comp/ytbd.vue
@@ -4,7 +4,7 @@
-
+
@@ -50,6 +50,9 @@ export default {
showDetailCallback(val){
this.showDetail=val
this.$emit('showDetail',val)
+ },
+ changeTab(val){
+ this.$emit('changeTab',val)
}
}
}
diff --git a/src/views/business/study/comp/ytbd/Bj.vue b/src/views/business/study/comp/ytbd/Bj.vue
index fea8fb0..3b12144 100644
--- a/src/views/business/study/comp/ytbd/Bj.vue
+++ b/src/views/business/study/comp/ytbd/Bj.vue
@@ -166,11 +166,11 @@ export default {
message: this.$t('form.placeholderSelect'),
trigger: 'blur'
}],
- shryId: [{
- required: true,
- message: ' ',
- trigger: 'blur'
- }]
+ // shryId: [{
+ // required: true,
+ // message: ' ',
+ // trigger: 'blur'
+ // }]
},
rules: {
bdmc: [{
diff --git a/src/views/business/study/comp/ytbdList.vue b/src/views/business/study/comp/ytbdList.vue
index 0dceee1..0200a03 100644
--- a/src/views/business/study/comp/ytbdList.vue
+++ b/src/views/business/study/comp/ytbdList.vue
@@ -369,7 +369,12 @@ export default {
this.$alert(data.ffmc, '', {
confirmButtonText: this.$t('page.business.study.studyMethod.qyd'),
callback: action => {
- this.$tab.openPage("loading", data.toUrl)
+ debugger
+ if(this.$route.path===data.toUrl){
+ this.$emit('changeTab',{key:'syff'})
+ }else{
+ this.$tab.openPage("loading", data.toUrl)
+ }
}
});
},
diff --git a/src/views/business/systemLog/comp/czrz.vue b/src/views/business/systemLog/comp/czrz.vue
new file mode 100644
index 0000000..dc2589b
--- /dev/null
+++ b/src/views/business/systemLog/comp/czrz.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('page.business.study.study.search') }}
+ {{ $t('form.reset') }}
+
+
+
+
+
+
+
+
+
+ {{initNr(scope.row)}}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/systemLog/comp/dlrz.vue b/src/views/business/systemLog/comp/dlrz.vue
new file mode 100644
index 0000000..945fb0e
--- /dev/null
+++ b/src/views/business/systemLog/comp/dlrz.vue
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('page.business.study.study.search') }}
+ {{ $t('form.reset') }}
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/systemLog/list.vue b/src/views/business/systemLog/list.vue
new file mode 100644
index 0000000..a0701c0
--- /dev/null
+++ b/src/views/business/systemLog/list.vue
@@ -0,0 +1,102 @@
+
+
+
+
+
+ {{ $t(item.name) }}
+
+
+
+
+
+
+
+
+
+