|
@@ -396,7 +396,10 @@
|
|
|
<el-button type="primary" @click="centerDialogVisible = false">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
- <el-dialog title="新建事件" :visible.sync="dialogFormVisible">
|
|
|
+ <el-dialog :visible.sync="dialogFormVisible">
|
|
|
+ <div style="margin: 0% 7% 3% 2%; font-size: 18px; white-space: nowrap;color:rgba(51,59,74,1);">
|
|
|
+ <b style="color: #409EFF;margin: 0 0.5%;font-weight: 600; ">I</b>{{ even }}
|
|
|
+ </div>
|
|
|
<el-form ref="form" :model="form" :rules="form_rules" :label-width="formLabelWidth">
|
|
|
<el-form-item label="事件类型" prop="type">
|
|
|
<el-select
|
|
@@ -814,6 +817,7 @@ export default {
|
|
|
},
|
|
|
event_query(e) {
|
|
|
// 编辑事件(添加事件)
|
|
|
+ this.even = '编辑事件'
|
|
|
var eventID = {}
|
|
|
this.arr_event.map(item => {
|
|
|
item.id === e ? (eventID = item) : ''
|
|
@@ -1017,6 +1021,7 @@ export default {
|
|
|
},
|
|
|
add_Event() {
|
|
|
// 添加事件(排期)
|
|
|
+ this.even = '新建事件'
|
|
|
this.dialogFormVisible = true
|
|
|
this.form = {}
|
|
|
this.$nextTick(() => {
|