Browse Source

2025/6/26

master
Aoi_Tori 7 months ago
parent
commit
b7f1448021
  1. 5
      src/views/modules/sys/user-add-or-update.vue

5
src/views/modules/sys/user-add-or-update.vue

@ -210,7 +210,7 @@ export default {
}, },
getBUDepartmentPostList () { getBUDepartmentPostList () {
let tempData ={ let tempData ={
site:this.dataForm.siteID
site: this.$store.state.user.site
} }
this.dataForm.buNo = '' this.dataForm.buNo = ''
this.dataForm.buDesc = '' this.dataForm.buDesc = ''
@ -233,7 +233,7 @@ export default {
}, },
getBDPList () { getBDPList () {
let tempData ={ let tempData ={
site:this.dataForm.siteID
site: this.$store.state.user.site
} }
getBUList(tempData).then(({data}) => { getBUList(tempData).then(({data}) => {
this.buList = data.rows this.buList = data.rows
@ -436,6 +436,7 @@ export default {
created() { created() {
this.getFunctionButtonList() this.getFunctionButtonList()
this.getSiteList() this.getSiteList()
this.getBDPList()
} }
} }
</script> </script>

Loading…
Cancel
Save