userIdChange
This commit is contained in:
@ -229,6 +229,16 @@ export default {
|
||||
}
|
||||
});
|
||||
},
|
||||
userIdChange(userId) {
|
||||
delete this.form.projectId;
|
||||
userSelect({ userId }).then(({ code, msg, select }) => {
|
||||
if (code == 200) {
|
||||
this.userSelectList = select;
|
||||
} else {
|
||||
this.$message.error(msg);
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -8,7 +8,7 @@ function resolve(dir) {
|
||||
|
||||
const name = defaultSettings.title || '锐能管理系统' // 标题
|
||||
|
||||
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
||||
const port = process.env.port || process.env.npm_config_port || 8080 // 端口
|
||||
|
||||
// vue.config.js 配置说明
|
||||
//官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
|
||||
|
Reference in New Issue
Block a user