Commit b61609c1 by yuzhenWang

Merge branch 'wyz' into 'test'

Wyz

See merge request !158
parents a8d564c0 cddd32c9
...@@ -384,11 +384,11 @@ const searchConfig = ref([ ...@@ -384,11 +384,11 @@ const searchConfig = ref([
} }
}, },
{ {
type: 'daterange', type: 'monthrange',
prop: 'payoutDate', prop: 'payoutDate',
label: '出账(实)', label: '出账(实)',
startPlaceholder: '开始时间', startPlaceholder: '开始',
endPlaceholder: '结束时间' endPlaceholder: '结束'
}, },
{ {
type: 'select', type: 'select',
...@@ -818,6 +818,7 @@ const getList = async (searchParams = {}) => { ...@@ -818,6 +818,7 @@ const getList = async (searchParams = {}) => {
pageSize: pageSize.value, pageSize: pageSize.value,
statusList: searchParams.statusList || ['6'] statusList: searchParams.statusList || ['6']
} }
const response = await getReferrerFortuneList(params) const response = await getReferrerFortuneList(params)
if (response.data.page) { if (response.data.page) {
......
...@@ -850,10 +850,15 @@ const handleUploadSuccess = (prop, Model) => { ...@@ -850,10 +850,15 @@ const handleUploadSuccess = (prop, Model) => {
;((item.fileName = newObj.originalName), //文件名 ;((item.fileName = newObj.originalName), //文件名
(item.fileType = newObj.fileType), //文件类型 (item.fileType = newObj.fileType), //文件类型
(item.fileUrl = newObj.url), //文件URL, (item.fileUrl = newObj.url), //文件URL,
(item.url = newObj.url)) (item.url = newObj.url),
(item.creatorName = newObj.creatorName),
(item.createTime = newObj.createTime))
} }
}) })
tempOtherFileList.value = list tempOtherFileList.value = list
console.log('====================================')
console.log('tempOtherFileList.value', tempOtherFileList.value)
console.log('====================================')
} }
} }
// 下拉框改变 // 下拉框改变
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment