salary
parent
f2064d99ad
commit
e3e24f4939
@ -0,0 +1,236 @@ |
||||
<template> |
||||
<div> |
||||
<el-form :model="searchForm" label-width="0" inline> |
||||
<el-form-item> |
||||
<el-input v-model="searchForm.signId" placeholder="成交单号" clearable /> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-input v-model="searchForm.name" placeholder="线索名称" clearable /> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-input v-model="searchForm.phone" placeholder="联系方式" clearable /> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-select v-model="searchForm.signUser" placeholder="登记人" clearable filterable> |
||||
<el-option |
||||
v-for="item in userOptions" |
||||
:key="item.id" |
||||
:label="item.nickname" |
||||
:value="item.id" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-date-picker |
||||
v-model="searchForm.dealDate" |
||||
type="daterange" |
||||
format="YYYY-MM-DD" |
||||
value-format="YYYY-MM-DD" |
||||
range-separator="-" |
||||
start-placeholder="登记日期" |
||||
end-placeholder="登记日期" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-select |
||||
v-model="searchForm.signSchool" |
||||
placeholder="选择驾校" |
||||
filterable |
||||
clearable |
||||
@change="changeSchool" |
||||
> |
||||
<el-option |
||||
v-for="item in schoolOptions" |
||||
:key="item.schoolId" |
||||
:label="item.schoolName" |
||||
:value="item.schoolId" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-select |
||||
v-model="searchForm.signPlace" |
||||
placeholder="选择场地" |
||||
filterable |
||||
clearable |
||||
:disabled="!searchForm.signSchool" |
||||
@change="changePlace" |
||||
> |
||||
<el-option |
||||
v-for="item in placeOptions" |
||||
:key="item.placeId" |
||||
:label="item.name" |
||||
:value="item.placeId" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-select |
||||
v-model="searchForm.signClass" |
||||
:disabled="!searchForm.signPlace" |
||||
placeholder="选择班型" |
||||
filterable |
||||
clearable |
||||
> |
||||
<el-option |
||||
v-for="item in classOptions" |
||||
:key="item.typeId" |
||||
:label="item.typeName" |
||||
:value="item.typeId" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-radio-group v-model="searchForm.settleStatus"> |
||||
<el-radio :label="1"> 已结算 </el-radio> |
||||
<el-radio :label="2"> 未结算 </el-radio> |
||||
</el-radio-group> |
||||
</el-form-item> |
||||
|
||||
<el-form-item> |
||||
<el-button @click="handleSearch">查询</el-button> |
||||
<el-button @click="handleReset">重置</el-button> |
||||
<el-button @click="batchSettle">批量结算</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
|
||||
<el-table |
||||
v-loading="loading" |
||||
:data="tableList" |
||||
border |
||||
@selection-change="handleSelectionChange" |
||||
> |
||||
<el-table-column prop="signId" label="成交单号" min-width="120px" /> |
||||
<el-table-column prop="name" label="线索名称" min-width="120px" /> |
||||
<el-table-column prop="phone" label="联系方式" width="120px" /> |
||||
<el-table-column prop="signUserName" label="登记人" min-width="90" /> |
||||
<el-table-column prop="dealDate" label="登记时间" width="120px" :formatter="dateFormatter" /> |
||||
<el-table-column prop="signSchool" label="成交驾校" min-width="150px" /> |
||||
<el-table-column prop="signPlace" label="成交场地" min-width="150px" /> |
||||
<el-table-column prop="signClass" label="成交班型" min-width="150px" /> |
||||
<el-table-column prop="settleTime" label="结算时间" width="120px" /> |
||||
<el-table-column prop="settleUser" label="结算人" min-width="90px" /> |
||||
<el-table-column prop="settleStatus" label="结算状态" width="90px" /> |
||||
<el-table-column label="结算备注"> |
||||
<template #default="scope"> |
||||
<el-popover placement="top" width="500px" trigger="click" v-if="scope.row.remark"> |
||||
<template #reference> |
||||
<el-button type="primary" style="padding: 0" text>点击查看</el-button> |
||||
</template> |
||||
<div v-dompurify-html="scope.row.settleRemark"></div> |
||||
</el-popover> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
<Pagination |
||||
v-model:limit="searchForm.pageSize" |
||||
v-model:page="searchForm.pageNo" |
||||
:total="total" |
||||
@pagination="getList" |
||||
/> |
||||
</div> |
||||
</template> |
||||
|
||||
<script setup name="SchoolSettle"> |
||||
import { getSimpleUserList as getUserOption } from '@/api/system/user' |
||||
import { getPlaceList } from '@/api/school/place' |
||||
import { getClassTypePage } from '@/api/school/class' |
||||
|
||||
onMounted(() => { |
||||
getOptions() |
||||
handleSearch() |
||||
}) |
||||
|
||||
const searchForm = ref({ |
||||
name: undefined, |
||||
phone: undefined, |
||||
signUser: undefined, |
||||
dealDate: [], |
||||
signSchool: undefined, |
||||
signPlace: undefined, |
||||
signClass: undefined, |
||||
signId: undefined, |
||||
settleStatus: 2, |
||||
pageSize: 20, |
||||
pageNo: 1 |
||||
}) |
||||
|
||||
function handleReset() { |
||||
searchForm.value = { |
||||
name: undefined, |
||||
phone: undefined, |
||||
signUser: undefined, |
||||
dealDate: [], |
||||
signSchool: undefined, |
||||
signPlace: undefined, |
||||
signClass: undefined, |
||||
signId: undefined, |
||||
settleStatus: 2, |
||||
pageSize: 20, |
||||
pageNo: 1 |
||||
} |
||||
} |
||||
|
||||
function handleSearch() { |
||||
searchForm.value.pageNo = 1 |
||||
getList() |
||||
} |
||||
|
||||
const loading = ref(false) |
||||
const tableList = ref([]) |
||||
const total = ref(0) |
||||
async function getList() { |
||||
loading.value = true |
||||
try { |
||||
const data = await DeliveryApi.getDeliveryPage(searchForm.value) |
||||
tableList.value = data.list |
||||
total.value = data.total |
||||
} finally { |
||||
loading.value = false |
||||
} |
||||
} |
||||
|
||||
const batchIds = ref([]) |
||||
function handleSelectionChange(val) { |
||||
batchIds.value = val.map((it) => it.id) |
||||
} |
||||
|
||||
function batchSettle() {} |
||||
|
||||
const schoolOptions = ref([]) |
||||
const allPlaceOptions = ref([]) |
||||
const userOptions = ref([]) |
||||
|
||||
function getOptions() { |
||||
// 驾校 |
||||
getPlaceList({ placeStatus: 0, schoolStatus: 0, isSearchSchool: true }).then((data) => { |
||||
schoolOptions.value = data.schoolList |
||||
allPlaceOptions.value = data.placeList |
||||
}) |
||||
getUserOption().then((data) => { |
||||
userOptions.value = data |
||||
}) |
||||
} |
||||
|
||||
const placeOptions = computed(() => { |
||||
return allPlaceOptions.value.filter((it) => it.schoolId == searchForm.value.signSchool) |
||||
}) |
||||
|
||||
function changeSchool() { |
||||
searchForm.value.signPlace = undefined |
||||
searchForm.value.signClass = undefined |
||||
} |
||||
|
||||
function changePlace() { |
||||
searchForm.value.signClass = undefined |
||||
getClassTypeOptions() |
||||
} |
||||
|
||||
const classOptions = ref([]) |
||||
async function getClassTypeOptions() { |
||||
const data = await getClassTypePage({ placeId: searchForm.value.signPlace }) |
||||
classOptions.value = data.list |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" scoped></style> |
@ -0,0 +1,14 @@ |
||||
<template> |
||||
<div> |
||||
<SchoolSettle v-if="appStore.getAppInfo?.instanceType == 1" /> |
||||
</div> |
||||
</template> |
||||
|
||||
<script setup name="Settle"> |
||||
import { useAppStore } from '@/store/modules/app' |
||||
import SchoolSettle from './SchoolSettle.vue' |
||||
|
||||
const appStore = useAppStore() |
||||
</script> |
||||
|
||||
<style lang="scss" scoped></style> |
Loading…
Reference in new issue