|
|
|
|
@ -19,6 +19,15 @@
|
|
|
|
|
></DatePicker>
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span style="padding: 0 6px; word-break: keep-all">付款日期</span>
|
|
|
|
|
<span>
|
|
|
|
|
<DatePicker v-model="selectActDate"
|
|
|
|
|
type="daterange"
|
|
|
|
|
placement="bottom-start"
|
|
|
|
|
placeholder="请选择日期"
|
|
|
|
|
style="width: 200px"></DatePicker>
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span style="padding: 0 6px; word-break: keep-all">关键字</span>
|
|
|
|
|
<span>
|
|
|
|
|
<Input
|
|
|
|
|
@ -275,6 +284,7 @@ export default {
|
|
|
|
|
],
|
|
|
|
|
isShowPlanForSearch: false,
|
|
|
|
|
selectDate: "",
|
|
|
|
|
selectActDate: [],
|
|
|
|
|
keywords: "",
|
|
|
|
|
list: [],
|
|
|
|
|
contractId: "",
|
|
|
|
|
@ -543,6 +553,8 @@ export default {
|
|
|
|
|
date: this.selectDate,
|
|
|
|
|
status: this.status,
|
|
|
|
|
act_plan_link_id: this.select.plan_id,
|
|
|
|
|
start_act_date: this.selectActDate[0] ? this.$moment(this.selectActDate[0]).format("YYYY-MM-DD") : "",
|
|
|
|
|
end_act_date: this.selectActDate[1] ? this.$moment(this.selectActDate[1]).format("YYYY-MM-DD") : "",
|
|
|
|
|
}).then((res) => {
|
|
|
|
|
let tokens = getToken();
|
|
|
|
|
if (is_export) {
|
|
|
|
|
|