@@ -431,6 +452,7 @@ import tree from '@/components/universalTreeSelect.vue'
import keyword from '@/components/baiduMap/keyword'
import { get, storeSetUp } from '@/api/store/base'
import { getTree } from '@/api/base/market/category'
+import { handleMatched } from '@/utils/routes'
export default {
name: 'SetUpShop',
@@ -483,6 +505,7 @@ export default {
},
placeholder: '',
readOnly: false,
+ isRest:false
},
defaultProps: {
label: 'category_name',
@@ -570,6 +593,7 @@ export default {
store_qq: form.store_qq,
store_ww: form.store_ww,
company_description: form.company_description,
+ store_biz_state:form.store_biz_state
}
if (this.queryArea.province.name) {
@@ -594,6 +618,9 @@ export default {
return params
},
+ handleStoreStatus(e){
+ this.storeForm.store_biz_state = e;
+ },
getSlideShowForm() {
const form = this.slideShowForm
let params = {
@@ -671,6 +698,7 @@ export default {
store_ww: data.info.store_ww,
company_description: data.company.company_description,
wx_qrcode: data.wx_qrcode,
+ store_biz_state:data.store_biz_state
}
this.srcList.push(data.wx_qrcode)
diff --git a/src/views/store/shopAudit/shopAuditDetails.vue b/src/views/store/shopAudit/shopAuditDetails.vue
index 31decf7..7e6601c 100644
--- a/src/views/store/shopAudit/shopAuditDetails.vue
+++ b/src/views/store/shopAudit/shopAuditDetails.vue
@@ -597,7 +597,7 @@
驳回审核
@@ -940,7 +940,7 @@ export default {
approvalRemark: this.form.approval_remark,
approvalInvalidCol: this.checkboxList.filter(item => !['businessLicenseOCR', 'legalPersonOCR','personOCR','bankOCR'].includes(item)),
}
-
+
let res = await getMerchApproval(parems)
if (res && res.status == 200) {
this.$message({
@@ -1010,7 +1010,7 @@ export default {
handlecheckbox(e) {
// 企业身份证驳回
- if(e.includes('legalPersonOCR')){
+ if(e.includes('legalPersonOCR') && !this.checkboxList.some(item => item === 'legal_person_id_number')){
let arr = [
'legal_person_id_number',
@@ -1024,7 +1024,7 @@ export default {
this.checkboxList = [...arr,...this.checkboxList ]
}
// 个人身份证驳回
- if(e.includes('personOCR')){
+ if(e.includes('personOCR')&& !this.checkboxList.some(item => item === 'individual_id_number')){
let arr = [
'individual_id_number',
@@ -1039,7 +1039,7 @@ export default {
this.checkboxList = [...arr,...this.checkboxList]
}
//银行卡驳回
- if(e.includes('bankOCR')){
+ if(e.includes('bankOCR')&& !this.checkboxList.some(item => item === 'bankcard_item')){
let arr = [
'bankcard_item',
@@ -1051,7 +1051,7 @@ export default {
this.checkboxList = [...arr,...this.checkboxList]
}
// 企业营业执照驳回
- if(e.includes('businessLicenseOCR')){
+ if(e.includes('businessLicenseOCR')&& !this.checkboxList.some(item => item === 'biz_license_image')){
let arr = [
'biz_license_image',
@@ -1065,10 +1065,12 @@ export default {
this.checkboxList = [...arr,...this.checkboxList]
}
- if(e.includes("mapAddress")){
+ if(e.includes("mapAddress") && !this.checkboxList.some(item => item === 'store_address')){
this.checkboxList = ['store_address',...this.checkboxList];
+
}
+ console.log(this.checkboxList)
},
handleCheckAllChange(val) {
if (this.form.entity_type == 1) {