diff --git a/.env.development b/.env.development index c4d0bed..947d501 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,6 @@ # 页面标题 -VUE_APP_TITLE = 华西海圻ELN V1.0 +VUE_APP_TITLE = 华西海圻实验室电子记录系统V1.0 +VUE_APP_TITLE_EN = WCFP Electronic Laboratory Notebook # 开发环境配置 ENV = 'development' diff --git a/.env.production b/.env.production index bb1ed9a..5d50a5d 100644 --- a/.env.production +++ b/.env.production @@ -1,5 +1,6 @@ # 页面标题 -VUE_APP_TITLE = 华西海圻ELN V1.0 +VUE_APP_TITLE = 华西海圻实验室电子记录系统V1.0 +VUE_APP_TITLE_EN = WCFP Electronic Laboratory Notebook # 生产环境配置 ENV = 'production' diff --git a/src/App.vue b/src/App.vue index c0c9f75..028a004 100644 --- a/src/App.vue +++ b/src/App.vue @@ -123,6 +123,10 @@ export default { #app .theme-picker { display: none; } +html{ + color:#606266; + font-size: 14px; +} .el-dialog__header { box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1) !important; diff --git a/src/api/business/gyzj/gyzjFfjl.js b/src/api/business/gyzj/gyzjFfjl.js index 4f88e14..844979e 100644 --- a/src/api/business/gyzj/gyzjFfjl.js +++ b/src/api/business/gyzj/gyzjFfjl.js @@ -8,6 +8,14 @@ export function list(query) { params: query }) } + +export function yltj(query) { + return request({ + url: '/system/business/gyzjFfjl/yltj', + method: 'get', + params: query + }) +} // 稽查轨迹列表 export function jcgjList(query) { return request({ diff --git a/src/api/business/mjy/mjyFfjl.js b/src/api/business/mjy/mjyFfjl.js index 92fb274..1aba384 100644 --- a/src/api/business/mjy/mjyFfjl.js +++ b/src/api/business/mjy/mjyFfjl.js @@ -8,6 +8,14 @@ export function list(query) { params: query }) } +// 列表 +export function yltj(query) { + return request({ + url: '/system/business/mjyFfjl/yltj', + method: 'get', + params: query + }) +} // 稽查轨迹列表 export function jcgjList(query) { return request({ diff --git a/src/api/business/study/studyFormFill.js b/src/api/business/study/studyFormFill.js index 009ca76..119f8b8 100644 --- a/src/api/business/study/studyFormFill.js +++ b/src/api/business/study/studyFormFill.js @@ -24,6 +24,16 @@ export function studyFormFill_exportDetail(query) { params: query }) } + +export function studyFormFill_exportTbByFileUrl(query) { + return request({ + url: '/system/business/studyFormFill/exportTbByFileUrl', + method: 'get', + params: query + }) +} + + export function studyFormFill_exportByFileUrl(query) { return request({ url: '/system/business/studyFormFill/exportByFileUrl', diff --git a/src/components/Template/BaseInfoFormPackage.vue b/src/components/Template/BaseInfoFormPackage.vue index 7350c5b..debf7d4 100644 --- a/src/components/Template/BaseInfoFormPackage.vue +++ b/src/components/Template/BaseInfoFormPackage.vue @@ -127,6 +127,7 @@ :field-item-label="fieldItemLabel" :field-key="prefixKey + '_' + key" :type="sItem.type" sourceFrom="baseInfoFormPackage" :error="errors[key]" @update:error="errors[key] = false" + :orange-bg="regentIsExpired(key)" @onRegentSubmit="(data, inputValue) => onRegentSubmit(data, inputValue, key, sItem)" :item="sItem" :value="formFields[key]" /> @@ -183,7 +184,7 @@ :style="{ 'width': sItem.labelWidth ? sItem.labelWidth + 'px' : '150px' }" v-if="sItem.label"> {{ $t(sItem.label) }} -