[update] 配置权限

This commit is contained in:
zhaomeijing
2022-06-15 10:04:02 +08:00
parent 676a51f23a
commit 79e4ab2755
5 changed files with 26 additions and 13 deletions
+1
View File
@@ -712,6 +712,7 @@ module.exports = {
uploadTime: 'Upload time',
enclosure: 'Enclosure',
// 认证
Theselectedconfiguration: 'The selected item has incomplete data collection, unable to add configuration',
theCurrent: 'The current status of this data is',
thisbuttonCompleted: 'This button can only be operated when the status is completed',
Frozenstatus: 'Frozen status, can only be viewed',
+1
View File
@@ -723,6 +723,7 @@ module.exports = {
uploadTime: '上传时间',
enclosure: '附件',
// 认证
Theselectedconfiguration: '所选项目有未完成收集数据不能添加配置',
theCurrent: '此数据当前状态为',
thisbuttonCompleted: '当状态为"已完成"才可操作此按钮',
Frozenstatus: '冻结状态,仅可以查看',
@@ -60,7 +60,7 @@
<a @click="entryNameClick(record)">{{text}}</a>
</span>
<span slot="titleName" slot-scope="text,record" :title="text">
{{ text && text.length > 100 ? text.slice(0, 99) + '...' : text }}
{{ text && text.length > 80 ? text.slice(0, 79) + '...' : text }}
</span>
<span slot="operation" slot-scope="text,record">
<a class="text-operation" v-has="'params:template:edit'" @click="edit(record)">{{$t('edit')}}</a>
@@ -80,7 +80,7 @@
:projectId='this.$route.query.id'></parameter-template-add>
</a-modal>
<!-- 配置-->
<configure ref="configureRef" :url='url' :itemId='itemId'/>
<configure ref="configureRef" :url='url' :itemId='itemId' :itemRow='itemRow'/>
<!-- 历史版本-->
<a-modal v-model="historicalVisible" :title="$t('historicalVersion')" width='750px' :footer="null">
<historical-version v-if='historicalVisible' :historicalRow='historicalRow'></historical-version>
@@ -188,7 +188,8 @@
templatetitleId: '',
rowId: '',
version: 0,
itemId: '',
itemId: '', // 配置id
itemRow: {}, // 配置一行数据
historicalVisible: false,
historicalRow: {}, // 历史版本得数据
drawerVisible: false,
@@ -239,8 +240,9 @@
},
// 配置
configure(item) {
this.itemId = item.id
this.$refs.configureRef.addModel(item.id)
this.itemId = item.id
this.itemRow = item
this.$refs.configureRef.addModel(item.id)
},
handleCancel(val) {
this.areaVisible = val
@@ -130,6 +130,11 @@ export default {
type: Object,
default: '',
require: true
},
itemRow: {
type: Object,
default: '',
require: true
}
},
data() {
@@ -200,14 +205,18 @@ export default {
})
},
addConfiguration(item) {
this.paramsConfigEOList.splice(item.displaySeq + 1,0,{
id: '',
configName: '', // 配置名称
version: '', // 版本
carType: '', // 车型
battery: '', // 电池
motor: '', // 电
})
if(this.itemRow.configFlag) {
this.paramsConfigEOList.splice(item.displaySeq + 1,0,{
id: '',
configName: '', // 配置名称
version: '', // 版本
carType: '', // 车型
battery: '', // 电
motor: '', // 电机
})
} else {
this.$message.warning(this.$t('Theselectedconfiguration'))
}
},
deleteConfiguration(displaySeq,index) {
if(this.paramsConfigEOList.length === 1) {