|
@@ -241,7 +241,7 @@ export default {
|
|
|
async openAreaModal () {
|
|
|
const _this = this
|
|
|
const checkedArr = []
|
|
|
- const dataList = await queryAreaScope({ userSn: this.$route.query.sn })
|
|
|
+ const dataList = await queryAreaScope({ userSn: this.$route.query.sn, hasDetail: 0 })
|
|
|
if (dataList.data && dataList.data.length > 0) {
|
|
|
dataList.data.forEach(item => {
|
|
|
if (item.bizType == 'subarea_area') {
|
|
@@ -264,7 +264,7 @@ export default {
|
|
|
async openDealerModal (params = {}) {
|
|
|
const _this = this
|
|
|
const arr = []
|
|
|
- const dataList = await queryDealerScope({ userSn: this.$route.query.sn })
|
|
|
+ const dataList = await queryDealerScope({ userSn: this.$route.query.sn, hasDetail: 0 })
|
|
|
if (dataList.data && dataList.data.length > 0) {
|
|
|
dataList.data.forEach(con => {
|
|
|
arr.push(con.bizSn)
|