Commit f162604b by xiehao

1、新增两大架构

1 parent 22b58731
Showing with 11 additions and 6 deletions
...@@ -12,6 +12,8 @@ ...@@ -12,6 +12,8 @@
<el-select v-model="params.archiStage" placeholder="请选择" clearable class="search_item"> <el-select v-model="params.archiStage" placeholder="请选择" clearable class="search_item">
<el-option label="总体架构" :value="1"></el-option> <el-option label="总体架构" :value="1"></el-option>
<el-option label="系统架构" :value="2" ></el-option> <el-option label="系统架构" :value="2" ></el-option>
<el-option label="概设架构" :value="3" ></el-option>
<el-option label="其他架构" :value="4" ></el-option>
</el-select> </el-select>
</div> </div>
<div class="search_menu_item"> <div class="search_menu_item">
...@@ -64,6 +66,8 @@ ...@@ -64,6 +66,8 @@
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.archiStage == 1">总体架构</span> <span v-if="scope.row.archiStage == 1">总体架构</span>
<span v-else-if="scope.row.archiStage == 2">系统架构</span> <span v-else-if="scope.row.archiStage == 2">系统架构</span>
<span v-else-if="scope.row.archiStage == 3">概设架构</span>
<span v-else-if="scope.row.archiStage == 4">其他架构</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="archiLevelId" label="架构层次" width="150" align="center"> <el-table-column prop="archiLevelId" label="架构层次" width="150" align="center">
...@@ -125,6 +129,8 @@ ...@@ -125,6 +129,8 @@
<el-select v-model="formData.archiStage" placeholder="请选择" clearable> <el-select v-model="formData.archiStage" placeholder="请选择" clearable>
<el-option label="总体架构" :value="1"></el-option> <el-option label="总体架构" :value="1"></el-option>
<el-option label="系统架构" :value="2" ></el-option> <el-option label="系统架构" :value="2" ></el-option>
<el-option label="概设架构" :value="3" ></el-option>
<el-option label="其他架构" :value="4" ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item class="cross" label="架构层次:" prop="archiLevelId"> <el-form-item class="cross" label="架构层次:" prop="archiLevelId">
...@@ -471,7 +477,7 @@ export default { ...@@ -471,7 +477,7 @@ export default {
Message({ Message({
type: 'info', type: 'info',
message: '已取消' message: '已取消'
}); });
}); });
}, },
openDicyDialog() {//打开字典窗口 openDicyDialog() {//打开字典窗口
...@@ -624,7 +630,7 @@ export default { ...@@ -624,7 +630,7 @@ export default {
handleSizeChange(val) { handleSizeChange(val) {
this.page.current = 1; this.page.current = 1;
this.params.current = 1; this.params.current = 1;
this.page.size = val; this.page.size = val;
this.params.pageSize = val; this.params.pageSize = val;
this.getList(); this.getList();
...@@ -829,7 +835,7 @@ export default { ...@@ -829,7 +835,7 @@ export default {
this.selectList.map(item => { this.selectList.map(item => {
params.viewId.push(item.viewId) params.viewId.push(item.viewId)
}) })
this.$confirm("确认批量发布吗", "提示", { this.$confirm("确认批量发布吗", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
...@@ -864,7 +870,7 @@ export default { ...@@ -864,7 +870,7 @@ export default {
this.$refs.multipleTable1.clearSelection(); this.$refs.multipleTable1.clearSelection();
this.$refs.multipleTable2.clearSelection(); this.$refs.multipleTable2.clearSelection();
}); });
this.selectData1 = []; this.selectData1 = [];
this.selectData2 = []; this.selectData2 = [];
this.selectData3 = []; this.selectData3 = [];
...@@ -1113,4 +1119,4 @@ export default { ...@@ -1113,4 +1119,4 @@ export default {
background-color: #0D867F; background-color: #0D867F;
color: #fff; color: #fff;
} }
</style> </style>
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!