第一步
computed
第二步
取值
computed: {/*GY5 控制新增标题的显隐*/fullTitle() {return this.title + "用户";},DepartmentId(){return this.$store.state.department.id},Property(){return this.$store.state.department.property}},created() {/*第二步*/getAction("/department/attribute/"+this.DepartmentId).then(res => {//回显数据this.property=res.data.propertyconsole.log(this.property)this.business_module=res.data.business_module;this.column=res.data.column;});},