5 Commits

2 changed files with 3 additions and 2 deletions

View File

@@ -67,7 +67,7 @@
"vue-clipboard3": "^2.0.0", "vue-clipboard3": "^2.0.0",
"vue-i18n": "^11.1.0", "vue-i18n": "^11.1.0",
"vue-router": "^4.5.0", "vue-router": "^4.5.0",
"ysk-utils": "^1.0.77" "ysk-utils": "^1.0.85"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^19.7.1", "@commitlint/cli": "^19.7.1",

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([])