|
@@ -166,7 +166,7 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <!-- <div class="pagination-container">
|
|
|
+ <!-- <div class="pagination-container">
|
|
|
<el-pagination
|
|
|
@size-change="handleGsprSizeChange"
|
|
|
@current-change="handleGsprCurrentChange"
|
|
@@ -182,6 +182,7 @@
|
|
|
<el-dialog
|
|
|
:title="gsprDialogTitle"
|
|
|
:visible.sync="gsprDialogVisible"
|
|
|
+ :close-on-click-modal="false"
|
|
|
width="700px"
|
|
|
>
|
|
|
<el-form
|
|
@@ -227,6 +228,7 @@
|
|
|
<el-dialog
|
|
|
title="编辑内容"
|
|
|
:visible.sync="contentDialogVisible"
|
|
|
+ :close-on-click-modal="false"
|
|
|
width="80%"
|
|
|
>
|
|
|
<!-- <el-form :model="contentForm" ref="contentForm">
|
|
@@ -302,6 +304,7 @@
|
|
|
:visible.sync="dialogVisible"
|
|
|
title="修改序号"
|
|
|
width="30%"
|
|
|
+ :close-on-click-modal="false"
|
|
|
append-to-body
|
|
|
v-el-drag-dialog
|
|
|
>
|
|
@@ -325,6 +328,7 @@
|
|
|
<el-dialog
|
|
|
title="编辑备注"
|
|
|
:visible.sync="remarkDialogVisible"
|
|
|
+ :close-on-click-modal="false"
|
|
|
width="500px"
|
|
|
>
|
|
|
<el-form :model="remarkForm">
|
|
@@ -517,6 +521,7 @@ export default {
|
|
|
console.error("解析项目数据失败:", error);
|
|
|
}
|
|
|
}
|
|
|
+ this.init();
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
@@ -1265,6 +1270,14 @@ export default {
|
|
|
}
|
|
|
this.fetchGsprData();
|
|
|
},
|
|
|
+ /* 获取字段 */
|
|
|
+ init() {
|
|
|
+ departments().then((res) => {
|
|
|
+ if(res.status!==200) return
|
|
|
+ this.departList=res.data.departments
|
|
|
+
|
|
|
+ });
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|