|
|
@@ -30,7 +30,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item prop="status" label="结算状态">
|
|
|
- <el-select v-model="recordForm.status">
|
|
|
+ <el-select v-model="recordForm.status" clearable>
|
|
|
<el-option v-for="item in optionObj['settlement_status']" :key="item.value" :value="item.value"
|
|
|
:label="item.label"></el-option>
|
|
|
</el-select>
|
|
|
@@ -44,6 +44,12 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item prop="signingTime" label="签单时间" >
|
|
|
+ <el-date-picker v-model="recordForm.signingTime" type="monthrange" format="YYYY-MM"
|
|
|
+ value-format="YYYY-MM" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="24" style="height: 50px; display: flex; align-items: start; justify-content: flex-end">
|
|
|
<el-button type="primary" @click="handleSearch(1)">查询</el-button>
|
|
|
<el-button plain type="primary" @click="handleReset(1)">重置</el-button>
|
|
|
@@ -500,6 +506,8 @@ const view = (scope) => {
|
|
|
const initData1 = () => {
|
|
|
api.settlementApi.followCompanySuperviseSettlementReport({
|
|
|
companyId: recordForm.value.companyId,
|
|
|
+ signingStartTime: recordForm.value.signingTime?.[0],
|
|
|
+ signingEndTime: recordForm.value.signingTime?.[1],
|
|
|
startTime: recordForm.value.time?.[0],
|
|
|
endTime: recordForm.value.time?.[1],
|
|
|
invoiceStartTime: recordForm.value.invoiceTime?.[0],
|