소스 검색

bug修复

master
梁超 2 주 전
부모
커밋
554db85610

+ 1
- 1
src/views/onlineBusinessHall/automobileSeroice/signBlacklistManagement/index.vue 파일 보기

if (!valid) { if (!valid) {
return false; return false;
} }
let api = '/managew/obublack/obuuploadblack';
let api = '/managew/api/bls/obu/obuIn';
let params = { let params = {
...addForm.value ...addForm.value
} }

+ 20
- 1
src/views/onlineBusinessHall/productManagement/equityProduct/index.vue 파일 보기

console.log('onActivated内层') console.log('onActivated内层')
getAgenCy() getAgenCy()
getEquity() getEquity()
getCoupon()
equityDescriptionShow.value = false equityDescriptionShow.value = false
nextTick(() => { nextTick(() => {
equityDescriptionShow.value = true equityDescriptionShow.value = true
}) })
} }


const couponList = ref([])
function getCoupon() {
BaseService.post('/managew/api/equity/coupon/enableList', {}).then(
(res: any) => {
if (res && res.statusCode === 0) {
//数据转换
let bizContent = res.data
couponList.value = bizContent.map((item) => {
return { label: item.couponName, value: item.id }
})
console.log(couponList.value, 'couponList.value')
} else {
ElMessage.error(res.message)
}
}
)
}
const agencyIdList = ref([]) const agencyIdList = ref([])
function getAgenCy() { function getAgenCy() {
BaseService.post('/userw/agency/agencyqueryall', {}).then((res: any) => { BaseService.post('/userw/agency/agencyqueryall', {}).then((res: any) => {
{ {
prop: 'couponId', prop: 'couponId',
label: '卡券', label: '卡券',
listData: couponList,
form: { form: {
width: '45%', width: '45%',
formLabelWidth: formLabelWidth, formLabelWidth: formLabelWidth,
type: 'select', type: 'select',
listData: equityData,
listData: couponList,
required: true, required: true,
hideEdit: true, hideEdit: true,
}, },

Loading…
취소
저장