参数收集清单删除增加未收集状态情况
This commit is contained in:
@@ -752,7 +752,7 @@ module.exports = {
|
||||
Theselectedconfiguration: 'The configuration can only be added when the parameter items in the parameter list are to be collected or changed',
|
||||
NoConfigurationNotStart: 'No configuration added, unable to start collection, please check',
|
||||
theCurrent: 'The current status of this data is',
|
||||
thisbuttonCompleted: 'This button can only be operated when the status is completed',
|
||||
thisbuttonCompleted: 'You can operate this button only when the state is Completed or not Collected',
|
||||
Frozenstatus: 'Frozen status, can only be viewed',
|
||||
chinese: 'Chinese',
|
||||
integerOrDecimal: 'Integer Or Decimal',
|
||||
|
||||
@@ -768,7 +768,7 @@ module.exports = {
|
||||
Theselectedconfiguration: '参数清单中参数项均为待发起收集或变更时,才能添加配置',
|
||||
NoConfigurationNotStart: '未添加任何配置,无法开始收集,请检查',
|
||||
theCurrent: '此数据当前状态为',
|
||||
thisbuttonCompleted: '当状态为"已完成"时,才可操作此按钮',
|
||||
thisbuttonCompleted: '当状态为"已完成或未收集"时,才可操作此按钮',
|
||||
Frozenstatus: '冻结状态,仅可以查看',
|
||||
chinese: '中文',
|
||||
integerOrDecimal: '整数或小数',
|
||||
|
||||
@@ -294,7 +294,7 @@
|
||||
})
|
||||
},
|
||||
deleteLib(val) {
|
||||
if (val.state === '已完成' || val.state === 'Finished') {
|
||||
if (val.state === '已完成' || val.state === 'Finished' || val.state === '未收集' || val.state === 'Uncollected') {
|
||||
let _this = this
|
||||
this.$confirm({
|
||||
content: _this.$t('ConfirmDelete'),
|
||||
@@ -389,7 +389,7 @@
|
||||
// 默认为0 可全部删除
|
||||
let flag = 1
|
||||
this.selectedRowKeysvalArray.forEach((item) => {
|
||||
if (item.state !== '已完成' && item.state !== 'Finished') {
|
||||
if (item.state !== '已完成' && item.state !== 'Finished' && item.state !== '未收集' && item.state !== 'Uncollected') {
|
||||
flag = 0
|
||||
}
|
||||
})
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<span class="Required">*</span>
|
||||
<span class="title-text-text" :title="$t('title')">{{$t('title')}}</span>
|
||||
</div>
|
||||
<a-form-model-item class="itemModel" :prop='title'>
|
||||
<a-form-model-item class="itemModel" prop="title">
|
||||
<a-input class="box-input"
|
||||
:placeholder="$t('PleaseEnter')+$t('title')"
|
||||
v-model='formData.title'/>
|
||||
|
||||
Reference in New Issue
Block a user