+
-
@@ -97,137 +105,136 @@
// import tabTable from './tabTable'
import DicList from '../dialog/DicList'
import Vue from 'vue'
- import { UI_CACHE_DB_DICT_DATA } from "@/store/mutation-types"
+ import { UI_CACHE_DB_DICT_DATA } from '@/store/mutation-types'
+
export default {
name: 'tagContent',
- components:{
+ components: {
// tabTable,
DicList
},
- data(){
- return{
+ data() {
+ return {
title: this.$t('add'),
- total:0,
- queryParams:{
- pageNo:1,
- pageSize:10
+ total: 0,
+ queryParams: {
+ pageNo: 1,
+ pageSize: 10
},
- ids:[],
- loading:false,
+ ids: [],
+ loading: false,
selectedRowKeys: [],
- contentVisible:false,
- tableData:[],
+ contentVisible: false,
+ tableData: [],
columns: [
{
title: this.$t('LabelName'),
dataIndex: 'dictName',
key: 'dictName',
- align: "center",
+ align: 'center',
ellipsis: true,
- width: 100,
+ width: 100
},
{
title: this.$t('LabelType'),
- align: "center",
+ align: 'center',
width: 100,
- dataIndex: 'attributeTypeName',
+ dataIndex: 'attributeTypeName'
},
{
title: this.$t('describe'),
- align: "center",
+ align: 'center',
dataIndex: 'description',
ellipsis: true,
- width:300
+ width: 300
},
{
title: this.$t('operation'),
dataIndex: 'action',
- scopedSlots: {customRender: 'action'},
- align: "center",
+ scopedSlots: { customRender: 'action' },
+ align: 'center',
width: 170
}
],
- labelCol: { span:6 },
+ labelCol: { span: 6 },
wrapperCol: { span: 16 },
- form:{},
- rules:{
- dictName:[{ required: true, message: this.$t('PleaseEnterLabelName'), trigger: 'change' },
- { min:1, max: 100, message: this.$t('cantExeed')+'100'+this.$t('characters'), trigger: 'blur' },],
- attributeType:[
- { required: true, message: this.$t('PleaseSelectLabelType'), trigger: 'blur' },
+ form: {},
+ rules: {
+ dictName: [{ required: true, message: this.$t('PleaseEnterLabelName'), trigger: 'change' },
+ { min: 1, max: 100, message: this.$t('cantExeed') + '100' + this.$t('characters'), trigger: 'blur' }],
+ attributeType: [
+ { required: true, message: this.$t('PleaseSelectLabelType'), trigger: 'blur' }
],
- description:[
- { min:1, max: 200, message: this.$t('cantExeed')+'200'+this.$t('characters'), trigger: 'blur' },
+ description: [
+ { min: 1, max: 200, message: this.$t('cantExeed') + '200' + this.$t('characters'), trigger: 'blur' }
]
},
// typeVisible:{},
- dicVisible:false,
- dictVal:'list',
+ dicVisible: false,
+ dictVal: 'list',
record: {},
- isEdit:1,
- flag:false, //表单提交标识
+ isEdit: 1,
+ flag: false //表单提交标识
}
},
- computed:{
-
- },
+ computed: {},
mounted() {
- this.loadData();
+ this.loadData()
},
- methods:{
+ methods: {
//获取列表数据
- loadData(param){
- this.loading=true
- let params={
+ loadData(param) {
+ this.loading = true
+ let params = {
...this.queryParams,
- isTagDict:1,
+ isTagDict: 1
}
// sys/dict/tagDictPage
// sys/dict/page
- postAction(`sys/dict/tagDictPage`,params).then(res=>{
- if(res.success){
- this.total=res.result.total
- this.tableData=[...res.result.records]
+ postAction(`sys/dict/tagDictPage`, params).then(res => {
+ if (res.success) {
+ this.total = res.result.total
+ this.tableData = [...res.result.records]
}
- }).finally(()=>{
- this.loading=false
+ }).finally(() => {
+ this.loading = false
})
},
//查询
- searchQuery(){
- this.queryParams.pageNo=1
+ searchQuery() {
+ this.queryParams.pageNo = 1
this.loadData()
},
- searchReset(){
- this.queryParams={
- pageNo:1,
+ searchReset() {
+ this.queryParams = {
+ pageNo: 1,
pageSize: 10
}
this.loadData()
},
- handleAdd(){
- this.title=this.$t('add')
- this.isEdit=1
- this.contentVisible=true
- this.form={}
+ handleAdd() {
+ this.title = this.$t('add')
+ this.isEdit = 1
+ this.contentVisible = true
+ this.form = {}
},
- hideModal(){
- let params={
- ...this.form,
+ hideModal() {
+ let params = {
+ ...this.form
}
- this.$refs.ruleForm.validate((valid)=>{
+ this.$refs.ruleForm.validate((valid) => {
// console.log('valide',valide)
- if(valid){
+ if (valid) {
- if(!this.flag){
- this.flag=true
- if(this.isEdit==1){
+ if (!this.flag) {
+ this.flag = true
+ if (this.isEdit == 1) {
- params.id=''
- params.isTagDict=1
- params.isReadOnly=0
- postAction(`sys/dict/add`,params).then(res=> {
+ params.id = ''
+ params.isTagDict = 1
+ params.isReadOnly = 0
+ postAction(`sys/dict/add`, params).then(res => {
if (res.success) {
this.$message.success(this.$t('OperationSuccessful'))
this.contentVisible = false
@@ -244,26 +251,26 @@
}
}
- }).finally(()=>{
- this.flag=false
- })
- }else if(this.isEdit==0){
- this.$delete(params,'isReadOnly')
- this.$delete(params,'isTagDict')
- // console.log('editparams',params)
- putAction(`sys/dict/edit`,params).then(res=>{
- if(res.success){
- this.$message.success( this.$t('OperationSuccessful'))
- this.reFresh()
- this.loadData()
- this.contentVisible=false
- this.form={}
- }else{
- this.$message.warning(this.$t('operationFailed'))
- }
- }).finally(()=>{
- this.flag=false
- })
+ }).finally(() => {
+ this.flag = false
+ })
+ } else if (this.isEdit == 0) {
+ this.$delete(params, 'isReadOnly')
+ this.$delete(params, 'isTagDict')
+ // console.log('editparams',params)
+ putAction(`sys/dict/edit`, params).then(res => {
+ if (res.success) {
+ this.$message.success(this.$t('OperationSuccessful'))
+ this.reFresh()
+ this.loadData()
+ this.contentVisible = false
+ this.form = {}
+ } else {
+ this.$message.warning(this.$t('operationFailed'))
+ }
+ }).finally(() => {
+ this.flag = false
+ })
}
}
}
@@ -271,7 +278,7 @@
},
//刷新缓存
- reFresh(){
+ reFresh() {
getAction('sys/dict/refleshCache').then((res) => {
if (res.success) {
//重新加载缓存
@@ -286,17 +293,17 @@
console.log('刷新失败', e)
})
},
- cancelModel(){
- this.contentVisible=false
- this.form={}
+ cancelModel() {
+ this.contentVisible = false
+ this.form = {}
},
- onCellChange(){
+ onCellChange() {
},
//删除
- onDelete(val){
- let param={
- id:val.id
+ onDelete(val) {
+ let param = {
+ id: val.id
}
this.$confirm({
title: this.$t('ConfirmDelete'),
@@ -307,12 +314,12 @@
if (res.success) {
this.$message.success(this.$t('OperationSuccessful'))
this.reFresh()
- if(this.tableData&&this.tableData.length==1&&this.queryParams.pageNo!=1){
- this.queryParams.pageNo=this.queryParams.pageNo-1
+ if (this.tableData && this.tableData.length == 1 && this.queryParams.pageNo != 1) {
+ this.queryParams.pageNo = this.queryParams.pageNo - 1
}
this.loadData()
- }else{
- this.$message.warning(this.$t('operationFailed'));
+ } else {
+ this.$message.warning(this.$t('operationFailed'))
}
})
}
@@ -320,16 +327,16 @@
},
onSelectChange(selectedRowKeys) {
// console.log('selectedRowKeys changed: ', selectedRowKeys);
- this.selectedRowKeys = selectedRowKeys;
- this.ids = this.selectedRowKeys;
- console.log('selRows',selectedRowKeys)
+ this.selectedRowKeys = selectedRowKeys
+ this.ids = this.selectedRowKeys
+ console.log('selRows', selectedRowKeys)
},
//批量删除
- batDelete(){
- let params={
- ids:this.ids.join(',')
+ batDelete() {
+ let params = {
+ ids: this.ids.join(',')
}
- if(this.ids&&this.ids.length>0){
+ if (this.ids && this.ids.length > 0) {
this.$confirm({
title: this.$t('ConfirmDelete'),
content: '',
@@ -339,46 +346,45 @@
if (res.success) {
this.$message.success(this.$t('OperationSuccessful'))
this.reFresh()
- this.selectedRowKeys=[]
- if(this.ids.length==this.tableData.length&&this.queryParams.pageNo!=1){
- this.queryParams.pageNo=this.queryParams.pageNo-1
+ this.selectedRowKeys = []
+ if (this.ids.length == this.tableData.length && this.queryParams.pageNo != 1) {
+ this.queryParams.pageNo = this.queryParams.pageNo - 1
}
this.loadData()
- // postAction(`online/cgform/api/doDbSynch/48308196e7b04761b533dc31bc899707/normal
- // `,{}).then(res=>{
- // })
- }else{
+ // postAction(`online/cgform/api/doDbSynch/48308196e7b04761b533dc31bc899707/normal
+ // `,{}).then(res=>{
+ // })
+ } else {
this.$message.warning(this.$t('operationFailed'))
}
})
}
})
- }
- else{
+ } else {
this.$message.warning(this.$t('selectLeastOne'))
}
},
//编辑
- actionEdit(val){
- this.title=this.$t('edit')
- this.isEdit=0
- this.form={...val}
- this.contentVisible=true
+ actionEdit(val) {
+ this.title = this.$t('edit')
+ this.isEdit = 0
+ this.form = { ...val }
+ this.contentVisible = true
},
//字典配置
- handleDicPop(record){
- this.record=record
- if(record.attributeType=='1'){
+ handleDicPop(record) {
+ this.record = record
+ if (record.attributeType == '1') {
// console.log('attribu',record.attributeType,record.attributeType=='1')
// this.typeVisible[record.id]=false
- this.dictVal='list'
- this.dicVisible=true
+ this.dictVal = 'list'
+ this.dicVisible = true
- }else if(record.attributeType=='2'){
+ } else if (record.attributeType == '2') {
// this.typeVisible[record.id]=false
- this.dictVal='tree'
- this.dicVisible=true
+ this.dictVal = 'tree'
+ this.dicVisible = true
}
},
afterDicVisibleChange(val) {
@@ -387,69 +393,107 @@
},
//字典列表关闭
onDicClose() {
- this.dicVisible = false;
+ this.dicVisible = false
},
//点击页数
- onChangePage(page,pageSize){
- console.log('page',page)
+ onChangePage(page, pageSize) {
+ console.log('page', page)
this.queryParams.pageNo = page
this.loadData()
},
//一页显示条数
- SizeChange(page,pageSize){
+ SizeChange(page, pageSize) {
this.queryParams.pageSize = pageSize
- this.queryParams.pageNo=1
+ this.queryParams.pageNo = 1
this.loadData()
- },
+ }
}
}
-
+
\ No newline at end of file
diff --git a/jero-web/src/views/documentManage/tags/tabs/TagItem.vue b/jero-web/src/views/documentManage/tags/tabs/TagItem.vue
index fcd00fd36..de4062fdb 100644
--- a/jero-web/src/views/documentManage/tags/tabs/TagItem.vue
+++ b/jero-web/src/views/documentManage/tags/tabs/TagItem.vue
@@ -1,256 +1,279 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{item.showArea}}
-
-
-
-
-
- {{$t('query')}}
- {{$t('reset')}}
-
-
-
-
-
+
+
+
+
+
+
+ {{$t('ChineseName')}}
+
+
+
+
+
+
+
+ {{$t('ChineseName')}}
+
+
+
+
+
+
+
+ {{$t('DisplayArea')}}
+
+
+ {{item.showArea}}
+
+
+
+
+
+ {{$t('query')}}
+ {{$t('reset')}}
+
+
+
+
+
-
- {{$t('newlyAdded')}}
+
+ {{$t('newlyAdded')}}
-
+
{{$t('ExhibitionAreaManagement')}}
-
+
{{$t('BatchDelete')}}
-
+
-
-
-
+
+
+
+
+
+
-
-
-
-
-
\ No newline at end of file
diff --git a/jero-web/src/views/projectManagement/components/TaskList.vue b/jero-web/src/views/projectManagement/components/TaskList.vue
index 2abd5697d..bcac01a40 100644
--- a/jero-web/src/views/projectManagement/components/TaskList.vue
+++ b/jero-web/src/views/projectManagement/components/TaskList.vue
@@ -1,34 +1,36 @@
-
-
-
-
-
{{$t('standard')}}
+
+
+
+
+
+ {{$t('standard')}}
+
+
-
-
-
-
-
-
-
{{$t('areaOfResponsibility')}}
+
+
+
+
+ {{$t('areaOfResponsibility')}}
+
+
-
-
-
-
+
+
{{$t('query')}}
{{$t('reset')}}
-
+
+
@@ -212,7 +214,7 @@
'To be tracked': 'TrackedColor',
'NA': 'notInvolvedColor',
'No rating': 'submittedColor',
- 'Termination of task': 'nonConformityColor',
+ 'Termination of task': 'nonConformityColor'
},
statusText: {
'Compliance': this.$t('accord'),
@@ -220,7 +222,7 @@
'To be tracked': this.$t('Tracked'),
'NA': this.$t('notInvolved'),
'No rating': this.$t('toBeConfirmed'),
- 'Termination of task': this.$t('taskTermination'),
+ 'Termination of task': this.$t('taskTermination')
},
CertificationColor: {
'Test passed': 'accordColor',
@@ -299,7 +301,7 @@
projectName: this.$route.query.projectName,
projectNameId: this.$route.query.projectNameId,
primaryKeyId: val.designTaskDetailId,
- PersonChargeFeedback:val.designPersonChargeFeedback,
+ PersonChargeFeedback: val.designPersonChargeFeedback
}
break
case 2:
@@ -323,7 +325,7 @@
projectName: this.$route.query.projectName,
projectNameId: this.$route.query.projectNameId,
primaryKeyId: val.prehomoTaskDetailId,
- PersonChargeFeedback:val.prehomoPersonChargeFeedback,
+ PersonChargeFeedback: val.prehomoPersonChargeFeedback
}
break
case 3:
@@ -347,7 +349,7 @@
projectName: this.$route.query.projectName,
projectNameId: this.$route.query.projectNameId,
primaryKeyId: val.verifyTaskDetailId,
- PersonChargeFeedback:val.verifyPersonChargeFeedback,
+ PersonChargeFeedback: val.verifyPersonChargeFeedback
}
break
}
diff --git a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
index 2eaa7539c..13958c86b 100644
--- a/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
+++ b/jero-web/src/views/projectManagement/components/TaskParameterCollection.vue
@@ -1,23 +1,25 @@
-
-
-
-
-
{{$t('title')}}
+
+
+
+
-
-
-
-
+
+
{{$t('query')}}
{{$t('reset')}}
-
+
+
@@ -53,7 +55,7 @@
{{text}}
-
+
{{$t('configure')}}
{{$t('edit')}}
{{$t('deleteLib')}}
@@ -72,21 +74,23 @@
@showSizeChange="SizeChange"
/>
-
+
+ :selectedRowKeyS='selectedRowKeys' :rowId='rowId' :version='version'
+ :projectId='this.$route.query.id'>
-
+
-
+
+ :selectedRowKeyS='selectedRowKeys' :rowId='rowId' :version='version'
+ :projectId='this.$route.query.id'>
@@ -96,107 +100,108 @@
import ParameterTemplateAdd from '../dialog/ParameterTemplateAdd'
import ParameterTemplateCody from '../dialog/ParameterTemplateCody'
import HistoricalVersion from '../dialog/historicalVersion'
- import { getAction,postAction } from '../../../api/manage'
+ import { getAction, postAction } from '../../../api/manage'
import Configure from '../dialog/configure'
import axios from 'axios'
import Vue from 'vue'
import { ACCESS_TOKEN } from '@/store/mutation-types'
+
export default {
name: 'TaskParameterCollection',
- components:{
+ components: {
ImportFile,
ParameterTemplateAdd,
Configure,
HistoricalVersion,
ParameterTemplateCody
},
- data(){
- return{
- columns:[
- {
- title: this.$t('title'),
- align: 'center',
- dataIndex: 'title',
- scopedSlots: { customRender: 'paramsManifestClick' }
- },
- {
- title: this.$t('status'),
- align: 'center',
- dataIndex: 'state',
- },
- {
- title: this.$t('parameterTemplateName'),
- align: 'center',
- dataIndex: 'paramsTemplateName',
- },
- {
- title: this.$t('collectionCompletionTime'),
- align: 'center',
- dataIndex: 'finishTime',
- },
- {
- title: this.$t('Version'),
- align: 'center',
- dataIndex: 'version',
- },
- {
- title: this.$t('creator'),
- align: 'center',
- dataIndex: 'createBy',
- },
- {
- title: this.$t('createTime'),
- align: 'center',
- dataIndex: 'createTime',
- },
- {
- title: this.$t('operation'),
- align: 'center',
- fixed: 'right',
- width: 200,
- scopedSlots: { customRender: 'operation' }
- }
- ],
- token:Vue.ls.get(ACCESS_TOKEN),
- selectedRowKeys: [],
- queryParam: {},
- url: {
- list: 'params/manifest/page',
- add: 'params/manifest/add',
- edit: 'params/manifest/edit',
- queryById: 'params/manifest/queryById',
- deleteBatch: 'params/manifest/delete',
- deleteAll: 'params/manifest/deleteBatch',
- conAdd: 'params/config/addBatch',
- conList: 'params/config/list',
- },
- loading: false,
- dataSource: [],
- areaVisible: false, // 弹框的控制
- configureareaVisible: false, // 配置的彈框
- pageNo: 1,
- pageSize: 10,
- total: 0,
- selectedRowKeysArray: '',
- templatetitle: '',
- templatetitleId: '',
- rowId: '',
- version: 0,
- itemId: '',
- historicalVisible: false,
- historicalRow: {}, // 历史版本得数据
- areaVisibleCody: false, // 复制参数清单得弹框
- }
+ data() {
+ return {
+ columns: [
+ {
+ title: this.$t('title'),
+ align: 'center',
+ dataIndex: 'title',
+ scopedSlots: { customRender: 'paramsManifestClick' }
+ },
+ {
+ title: this.$t('status'),
+ align: 'center',
+ dataIndex: 'state'
+ },
+ {
+ title: this.$t('parameterTemplateName'),
+ align: 'center',
+ dataIndex: 'paramsTemplateName'
+ },
+ {
+ title: this.$t('collectionCompletionTime'),
+ align: 'center',
+ dataIndex: 'finishTime'
+ },
+ {
+ title: this.$t('Version'),
+ align: 'center',
+ dataIndex: 'version'
+ },
+ {
+ title: this.$t('creator'),
+ align: 'center',
+ dataIndex: 'createBy'
+ },
+ {
+ title: this.$t('createTime'),
+ align: 'center',
+ dataIndex: 'createTime'
+ },
+ {
+ title: this.$t('operation'),
+ align: 'center',
+ fixed: 'right',
+ width: 200,
+ scopedSlots: { customRender: 'operation' }
+ }
+ ],
+ token: Vue.ls.get(ACCESS_TOKEN),
+ selectedRowKeys: [],
+ queryParam: {},
+ url: {
+ list: 'params/manifest/page',
+ add: 'params/manifest/add',
+ edit: 'params/manifest/edit',
+ queryById: 'params/manifest/queryById',
+ deleteBatch: 'params/manifest/delete',
+ deleteAll: 'params/manifest/deleteBatch',
+ conAdd: 'params/config/addBatch',
+ conList: 'params/config/list'
+ },
+ loading: false,
+ dataSource: [],
+ areaVisible: false, // 弹框的控制
+ configureareaVisible: false, // 配置的彈框
+ pageNo: 1,
+ pageSize: 10,
+ total: 0,
+ selectedRowKeysArray: '',
+ templatetitle: '',
+ templatetitleId: '',
+ rowId: '',
+ version: 0,
+ itemId: '',
+ historicalVisible: false,
+ historicalRow: {}, // 历史版本得数据
+ areaVisibleCody: false // 复制参数清单得弹框
+ }
},
mounted() {
this.getlist()
},
- methods:{
+ methods: {
paramsManifestClick(item) {
- localStorage.setItem('paramsManifest',JSON.stringify(item))
+ localStorage.setItem('paramsManifest', JSON.stringify(item))
let newUrl = this.$router.resolve({
path: '/ParameterItemCollection',
- query: this.$route.query,
+ query: this.$route.query
})
window.open(newUrl.href, '_blank')
},
@@ -247,7 +252,7 @@
this.selectedRowKeys = val
this.selectedRowKeysArray = val.join(',')
},
- edit(edit){
+ edit(edit) {
this.areaVisible = true
let _this = this
let query = {
@@ -263,15 +268,15 @@
}
})
},
- handleAdd(){
+ handleAdd() {
this.areaVisible = true
},
- handleModule(){
+ handleModule() {
let _this = this
axios({
url: `/jero-boot/params/manifest/changeExtension?id=${this.selectedRowKeys[0]}`,
method: 'get',
- transformRequest: [function (data) {
+ transformRequest: [function(data) {
let ret = ''
for (let it in data) {
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
@@ -280,22 +285,22 @@
}],
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
- 'X-Access-Token':_this.token
+ 'X-Access-Token': _this.token
}
})
- .then( (res) =>{
+ .then((res) => {
if (res.data.success) {
_this.$message.success(res.data.message)
- }else{
+ } else {
_this.$message.warning(res.data.message)
}
})
- .catch( (error) =>{
- console.log(error);
- });
+ .catch((error) => {
+ console.log(error)
+ })
},
- handleDel(){
- let param={
+ handleDel() {
+ let param = {
ids: this.selectedRowKeysArray
}
if (this.selectedRowKeys.length > 0) {
@@ -320,7 +325,7 @@
handleCody() {
this.areaVisibleCody = true
},
- getPersonnelList(){
+ getPersonnelList() {
},
pageOnChange() {
@@ -337,8 +342,8 @@
...this.queryParam
}
getAction(this.url.list, query).then((res) => {
- if(res.success) {
- this.total = res.result.total
+ if (res.success) {
+ this.total = res.result.total
this.dataSource = res.result.records || []
this.loading = false
} else {
@@ -346,7 +351,7 @@
}
})
}
- },
+ }
}
diff --git a/jero-web/src/views/projectManagement/components/listAddModel.vue b/jero-web/src/views/projectManagement/components/listAddModel.vue
index 7c286b004..b281465ef 100644
--- a/jero-web/src/views/projectManagement/components/listAddModel.vue
+++ b/jero-web/src/views/projectManagement/components/listAddModel.vue
@@ -10,6 +10,7 @@
style="height: 100%;overflow: auto;padding-bottom: 53px;">
+
@@ -50,6 +51,7 @@
+
+
@@ -43,6 +44,7 @@
+
diff --git a/jero-web/src/views/projectManagement/components/nonConformance.vue b/jero-web/src/views/projectManagement/components/nonConformance.vue
index d049141bb..ed65ead17 100644
--- a/jero-web/src/views/projectManagement/components/nonConformance.vue
+++ b/jero-web/src/views/projectManagement/components/nonConformance.vue
@@ -1,6 +1,7 @@
+
@@ -38,6 +39,7 @@
+
diff --git a/jero-web/src/views/projectManagement/components/transferList.vue b/jero-web/src/views/projectManagement/components/transferList.vue
index 4c9ddb600..22a8d653a 100644
--- a/jero-web/src/views/projectManagement/components/transferList.vue
+++ b/jero-web/src/views/projectManagement/components/transferList.vue
@@ -10,23 +10,25 @@
style="height: 100%;overflow: auto;padding-bottom: 53px;">
-
-
-
-
-
{{$t('VirtualListName')}}
+
+
+
+
+
+ {{$t('VirtualListName')}}
+
+
-
-
-
-
+
+
{{$t('query')}}
{{$t('reset')}}
-
+
+
-
-
-
-
-
{{ $t('standard') }}
+
+
+
+
+
+ {{ $t('standard') }}
+
+
-
-
-
-
-
-
-
{{ $t('title') }}
+
+
+
+
+ {{ $t('title') }}
+
+
-
-
-
-
-
-
-
{{ $t('subtitle') }}
+
+
+
+
+ {{ $t('subtitle') }}
+
+
-
-
-
-
+
+
{{ $t('reset') }}
-
+
+
+
@@ -94,6 +95,7 @@
+
diff --git a/jero-web/src/views/projectManagement/projectNonConformance/index.vue b/jero-web/src/views/projectManagement/projectNonConformance/index.vue
index fb2302804..ce79a14d7 100644
--- a/jero-web/src/views/projectManagement/projectNonConformance/index.vue
+++ b/jero-web/src/views/projectManagement/projectNonConformance/index.vue
@@ -1,6 +1,7 @@
+
@@ -22,7 +23,7 @@
-
+
{{$t('areaOfResponsibility')}}
+
diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
index de8cf9861..a71cd8432 100644
--- a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
+++ b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue
@@ -1,34 +1,36 @@
-
-
-
-
-
{{$t('entryName')}}
+
+
+
+
+
+ {{$t('entryName')}}
+
+
-
-
-
-
-
-
-
{{$t('targetMarket')}}
+
+
+
+
+ {{$t('targetMarket')}}
+
+
-
-
-
-
+
+
{{$t('query')}}
{{$t('reset')}}
-
+
+
{{$t('regulatoryCertificationTaskPlan')}}
@@ -315,7 +317,7 @@
fontFamily: 'Blue Sky Noto',
color: '#000F16',
fontSize: '16'
- },
+ }
},
axisLine: {
show: false