|
@@ -47,6 +47,20 @@
|
|
|
:operation="operation()"
|
|
|
:exportList="exportList"
|
|
|
>
|
|
|
+ <el-dialog title="设置部门" :visible.sync="dialogVisible" width="500px" :before-close="handleClose">
|
|
|
+ <el-form ref="form" :model="form" label-width="80px" size="mini">
|
|
|
+ <el-form-item label="活动名称">
|
|
|
+ <el-input v-model="form.name"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="活动名称">
|
|
|
+ <el-input v-model="form.name"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary">立即创建</el-button>
|
|
|
+ <el-button>取消</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-dialog>
|
|
|
</template-page>
|
|
|
</zj-page-container>
|
|
|
</template>
|
|
@@ -86,7 +100,9 @@ export default {
|
|
|
children: 'children',
|
|
|
label: 'deptName'
|
|
|
},
|
|
|
- inputText: ''
|
|
|
+ inputText: '',
|
|
|
+ dialogVisible: false,
|
|
|
+ form: {}
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
@@ -125,9 +141,14 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- addbumen(data) {},
|
|
|
+ addbumen(data) {
|
|
|
+ this.dialogVisible = true
|
|
|
+ },
|
|
|
eidbumen(data) {},
|
|
|
- delbumen(data) {}
|
|
|
+ delbumen(data) {},
|
|
|
+ handleClose() {
|
|
|
+ this.dialogVisible = false
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|