update 本地工具问题修改

This commit is contained in:
赵霄
2023-11-01 16:53:23 +08:00
parent d8a44a4ae6
commit dbaa6cd5d0
4 changed files with 14 additions and 12 deletions
+4 -1
View File
@@ -25,6 +25,9 @@ module.exports = {
// 征求意见
askForAdvice: {
standardNameNumber: '标准名称/编号',
consultationCycle: '征求意见周期'
consultationCycle: '征求意见周期',
processManuscript: '流程稿件',
uploadDate: '上传日期',
detailsOfComments: '意见详情'
}
}
+1 -1
View File
@@ -545,7 +545,7 @@ module.exports = {
standardNumber: '标准编号',
standardName: '标准名称',
releaseDate: '发布日期',
textState: '文本状态'
textState: '标准状态'
},
// 企标计划选择器
enterprisePlanSelect: {
@@ -53,10 +53,6 @@
<!--在线对比-->
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" :label="$t('docTool.customComparison.onlineComparison')">
<a-switch default-checked v-model="isStartComparison" @change="handleSwitchChange" />
<a-button type="primary" class="submit-btn" ghost v-if="!isDetail" @click="handleSaveForm">{{
$t('submit')
}}
</a-button>
</a-form-item>
<div v-show="isStartComparison" class="comparison-box">
<div class="operation-box" v-if="!isDetail">
@@ -128,6 +124,13 @@
</a-spin>
</div>
<div class="custom-drawer-style-bottom-btn">
<a-button @click="handleSaveForm" type="primary" style="margin-bottom: 0;" :loading="confirmLoading">
{{ $t('preservation') }}
</a-button>
<a-button @click="handleCancel" style="margin-bottom: 0;" :loading="confirmLoading">{{ $t('close') }}</a-button>
</div>
<!--标准列表-->
<standard-list-drawer ref="standardListDrawer" @ok="reloadData" />
<!--对比维护-->
@@ -628,10 +631,6 @@ export default {
}
}
.custom-drawer-style-scroll {
height: 100%;
}
/deep/ .ant-table-thead > tr > th {
word-break: break-word;
}
@@ -72,7 +72,7 @@
<div class="detail-content-left-scroll">
<div class="detail-content-left-item" @click="detailLeft(index,item)"
v-for="(item,index) in resultData.textLeft" :key="index"
:class="{'detail-content-item-selected': leftHighlightMenuId === item.menuId,'detail-content-item-saved':item.reviewed === '1'}">
:class="{'detail-content-item-selected': leftHighlightMenuId === item.menuId,'detail-content-item-saved':item.reviewed + '' === '1'}">
<div class="detail-content-item-text" style="margin-bottom: 10px;color: #040B29">
{{ item.itemsNum + ' ' + item.itemsName }}
</div>
@@ -118,7 +118,7 @@
<div class="detail-content-right-scroll">
<div class="detail-content-right-item" @click="detailRight(index,item)"
v-for="(item,index) in resultData.textRight" :key="index"
:class="{'detail-content-item-selected': item.menuId === rightHighlightMenuId, 'detail-content-item-saved':item.reviewed === '1'}">
:class="{'detail-content-item-selected': item.menuId === rightHighlightMenuId, 'detail-content-item-saved':item.reviewed + '' === '1'}">
<div class="detail-content-item-text" style="margin-bottom: 10px;color: #040B29">
{{ item.itemsNum + ' ' + item.itemsName }}
</div>