|
@@ -8,7 +8,7 @@
|
|
|
v-show="showSearch"
|
|
|
label-width="68px"
|
|
|
>
|
|
|
- <el-form-item label="会议日期" prop="status"> </el-form-item>
|
|
|
+ <!-- <el-form-item label="会议日期" prop="status"> </el-form-item> -->
|
|
|
|
|
|
<el-form-item label="会议状态" prop="status">
|
|
|
<el-select
|
|
@@ -340,10 +340,18 @@ export default {
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|
|
|
const id = row.id || this.ids;
|
|
|
- getJOINTCONFERENCE(id).then((response) => {
|
|
|
- this.form = response.data;
|
|
|
- this.open = true;
|
|
|
- this.title = "修改联席会议";
|
|
|
+ // getJOINTCONFERENCE(id).then((response) => {
|
|
|
+ // this.form = response.data;
|
|
|
+ // this.open = true;
|
|
|
+ // this.title = "修改联席会议";
|
|
|
+ // });
|
|
|
+
|
|
|
+ this.iframe({
|
|
|
+ obj: add,
|
|
|
+ param: {id:id},
|
|
|
+ title: "修改会议",
|
|
|
+ width: "750px",
|
|
|
+ height: "60%",
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|