|
@@ -1,13 +1,13 @@
|
|
|
<template>
|
|
|
<div id="deviceList">
|
|
|
<el-row class="right">
|
|
|
- <span style="float:left;">当前选择的系统类型:{{ category.CategoryName }}</span>
|
|
|
+ <span style="float:left;">当前选择的系统类型:{{ category.categoryName }}</span>
|
|
|
<el-select v-model="showType" @change="initTable" style="width:125px;margin-right:10px;vertical-align:bottom;">
|
|
|
<el-option v-for="item in showTypes" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
|
|
</el-select>
|
|
|
<span>增加</span>
|
|
|
<el-input-number v-model="addNum" :controls="false" style="width:50px;" :min="1" :max="50"></el-input-number>
|
|
|
- <span>个{{ category.CategoryName }}</span>
|
|
|
+ <span>个{{ category.categoryName }}</span>
|
|
|
<el-button @click="handleAddTableRow">增加</el-button>
|
|
|
</el-row>
|
|
|
<div class="tableBox">
|
|
@@ -137,7 +137,7 @@ export default {
|
|
|
orders: "sort asc, name desc",
|
|
|
pageNumber: 1,
|
|
|
pageSize: 1000,
|
|
|
- type: this.category.Category
|
|
|
+ type: this.category.category
|
|
|
};
|
|
|
await getDataDictionary(params, res => {
|
|
|
this.tableHeader = res.content;
|
|
@@ -174,7 +174,7 @@ export default {
|
|
|
if (!item.localName) {
|
|
|
flag = true;
|
|
|
}
|
|
|
- item.classCode = this.category.Category
|
|
|
+ item.classCode = this.category.category
|
|
|
})
|
|
|
if (flag) {
|
|
|
this.$message.info("存在系统的本地名称为空,请检查")
|
|
@@ -186,7 +186,7 @@ export default {
|
|
|
session.remove("systemAddData")
|
|
|
this.$router.push({
|
|
|
name: "systemlist",
|
|
|
- params: { SysType: this.category.Category }
|
|
|
+ params: { SysType: this.category.category }
|
|
|
});
|
|
|
})
|
|
|
},
|