|
@@ -334,6 +334,7 @@ const queryTechnologyArchivesMainDict = () => {
|
|
|
|
|
|
let fqxList = ref([])
|
|
|
let zqxList = ref([])
|
|
|
+const zqx1List = ref([])
|
|
|
// 父权限
|
|
|
const queryDict1ByCode = () => {
|
|
|
selectDictByCode('t_pp')
|
|
@@ -351,13 +352,13 @@ const queryDict2ByCode = () => {
|
|
|
.then((res) => {
|
|
|
if(res){
|
|
|
zqxList.value = res
|
|
|
+ zqx1List.value = res
|
|
|
} else {
|
|
|
zqxList.value = []
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
// 父权限变更
|
|
|
-const zqx1List = ref([])
|
|
|
const fqxChange = (row) => {
|
|
|
if(row.name){
|
|
|
zqx1List.value = zqxList.value.filter((item) => {
|