7/10 缴费分析,人员分析 数据对接
This commit is contained in:
@@ -482,7 +482,7 @@ const cancel = () => {
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = async () => {
|
||||
const handleAdd = () => {
|
||||
router.push({
|
||||
path: '/system/addUser'
|
||||
});
|
||||
@@ -490,7 +490,7 @@ const handleAdd = async () => {
|
||||
};
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: UserForm) => {
|
||||
const handleUpdate = (row?: UserForm) => {
|
||||
const userId = row?.userId || ids.value[0];
|
||||
router.push({
|
||||
path: '/system/editUser',
|
||||
@@ -548,10 +548,6 @@ onMounted(() => {
|
||||
initPassword.value = response.data;
|
||||
});
|
||||
});
|
||||
|
||||
async function handleDeptChange(value: number | string) {
|
||||
console.log(value);
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
Reference in New Issue
Block a user