|
|
@ -41,7 +41,9 @@ |
|
|
|
<el-date-picker v-model="listQuery.params.uploadEndDate" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="返利类型"> |
|
|
|
<el-input v-model="listQuery.params.rebateTypeValue" placeholder="" clearable/> |
|
|
|
<el-select v-model="listQuery.params.rebateTypeValue" placeholder="请选择" filterable clearable> |
|
|
|
<el-option v-for="item in rebateType_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="返利名称"> |
|
|
|
<el-input v-model="listQuery.params.rebateName" placeholder="" clearable/> |
|
|
@ -417,7 +419,7 @@ import ButtonBar from '@/components/ButtonBar' |
|
|
|
import bicyclerebatecheck from './bicyclerebatecheck' |
|
|
|
import bicyclerebatecheckAdd from './bicyclerebatecheckAdd' |
|
|
|
import bicyclerebatetobecheckedByUpdate from './bicyclerebatetobecheckedByUpdate' |
|
|
|
import { getOrgSidByPath } from '@/api/cheliang/dictcommons' |
|
|
|
import { getOrgSidByPath, getTypeValueList } from '@/api/cheliang/dictcommons' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'BicycleRebateToBeChecked', |
|
|
@ -457,6 +459,7 @@ export default { |
|
|
|
listAll: [], |
|
|
|
sids: [], |
|
|
|
FormLoading: false, |
|
|
|
rebateType_list: [], |
|
|
|
state_list: [ |
|
|
|
{ |
|
|
|
dictKey: '0', |
|
|
@ -562,6 +565,11 @@ export default { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
init() { |
|
|
|
getTypeValueList({ type: 'rebateType', groupNum: 'DC' }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.rebateType_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
getOrgSidByPath({ orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((resp) => { |
|
|
|
if (resp.success) { |
|
|
|
this.listQuery.params.createOrgSid = resp.data |
|
|
|