1 Commits

Author SHA1 Message Date
gyq
782bd19e4e 修复添加分销员分店不能选择的问题 2026-01-31 15:22:17 +08:00

View File

@@ -128,7 +128,8 @@ function submitHandle() {
// 过滤条件 // 过滤条件
function isDistribtion(str) { function isDistribtion(str) {
let s = str.split('_') let s = str.split('_')
return s[1] let shopId = s[0]
return s[1] && shopId == localStorage.getItem('shopId') ? 1 : 0
} }
const selectUser = ref([]) const selectUser = ref([])