|
@@ -5,19 +5,19 @@
|
|
|
<span>买受人</span>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
- <el-input style="width: 100%" v-model="search.buyerName" @keyup.enter.native="handleSearch()" />
|
|
|
+ <el-input v-model="search.buyerName" style="width: 100%" @keyup.enter.native="handleSearch()" />
|
|
|
</el-col>
|
|
|
<el-col :span="2" class="col-txt">
|
|
|
<span>房屋</span>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
- <el-input style="width: 100%" v-model="search.houseName" @keyup.enter.native="handleSearch()" />
|
|
|
+ <el-input v-model="search.houseName" style="width: 100%" @keyup.enter.native="handleSearch()" />
|
|
|
</el-col>
|
|
|
<el-col :span="2" class="col-txt">
|
|
|
<span>推送状态</span>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
- <el-select style="width: 100%" v-model="search.sendStatus" placeholder="请选择" popper-class="statistic_base">
|
|
|
+ <el-select v-model="search.sendStatus" style="width: 100%" placeholder="请选择" popper-class="statistic_base">
|
|
|
<el-option
|
|
|
v-for="item in dc_data.SEND_STATUS"
|
|
|
:key="item.value"
|
|
@@ -31,8 +31,8 @@
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
<el-select
|
|
|
- style="width: 100%"
|
|
|
v-model="search.invoiceStatus"
|
|
|
+ style="width: 100%"
|
|
|
filterable
|
|
|
popper-class="statistic_base"
|
|
|
>
|
|
@@ -51,8 +51,8 @@
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
<el-date-picker
|
|
|
- style="width: 100%"
|
|
|
v-model="search.sendDateFrom"
|
|
|
+ style="width: 100%"
|
|
|
popper-class="statistic_base"
|
|
|
type="date"
|
|
|
placeholder="年月日"
|
|
@@ -64,8 +64,8 @@
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
<el-date-picker
|
|
|
- style="width: 100%"
|
|
|
v-model="search.sendDateTo"
|
|
|
+ style="width: 100%"
|
|
|
popper-class="statistic_base"
|
|
|
type="date"
|
|
|
placeholder="年月日"
|
|
@@ -77,8 +77,8 @@
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
<el-date-picker
|
|
|
- style="width: 100%"
|
|
|
v-model="search.invoiceDateFrom"
|
|
|
+ style="width: 100%"
|
|
|
popper-class="statistic_base"
|
|
|
type="date"
|
|
|
placeholder="年月日"
|
|
@@ -90,8 +90,8 @@
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="col-input">
|
|
|
<el-date-picker
|
|
|
- style="width: 100%"
|
|
|
v-model="search.invoiceDateTo"
|
|
|
+ style="width: 100%"
|
|
|
popper-class="statistic_base"
|
|
|
type="date"
|
|
|
placeholder="年月日"
|
|
@@ -221,7 +221,7 @@ import BatchInvoice from '@/views/invoice/components/batchInvoice.vue'
|
|
|
|
|
|
export default {
|
|
|
name: 'FormalInvoiceManage',
|
|
|
- components: { FormalInvoiceManageEdit,BatchInvoice },
|
|
|
+ components: { FormalInvoiceManageEdit, BatchInvoice },
|
|
|
mixins: [Base, BaseData],
|
|
|
data() {
|
|
|
return {
|