|
@@ -124,6 +124,20 @@ defineExpose({
|
|
|
>
|
|
|
<el-form size="small">
|
|
|
<el-row :gutter="10">
|
|
|
+ <el-col :span="8">
|
|
|
+ <date-range prefix="申请" v-model="formData.timer" />
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col :span="8">
|
|
|
+ <date-range prefix="开票" v-model="formData.openTimer" />
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col :span="8">
|
|
|
+ <supplier-query
|
|
|
+ v-model="formData.supplierNo"
|
|
|
+ placeholder="卖出方公司名称"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item>
|
|
|
<el-input
|
|
@@ -140,22 +154,6 @@ defineExpose({
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
- <el-col :span="8">
|
|
|
- <date-range prefix="申请" v-model="formData.timer" />
|
|
|
- </el-col>
|
|
|
-
|
|
|
- <el-col :span="8">
|
|
|
- <date-range prefix="开票" v-model="formData.openTimer" />
|
|
|
- </el-col>
|
|
|
-
|
|
|
- <el-col :span="8">
|
|
|
- <supplier-query
|
|
|
- v-model="formData.supplierNo"
|
|
|
- placeholder="卖出方公司名称"
|
|
|
- />
|
|
|
- </el-col>
|
|
|
-
|
|
|
<el-col :span="6">
|
|
|
<el-select
|
|
|
style="width: 100%"
|
|
@@ -198,7 +196,7 @@ defineExpose({
|
|
|
max-height="520px"
|
|
|
v-loading="loading"
|
|
|
>
|
|
|
- <el-table-column type="selection" width="55" />
|
|
|
+ <el-table-column type="selection" width="40" align="center" />
|
|
|
<el-table-column
|
|
|
v-for="(col, index) in columns"
|
|
|
:key="index"
|
|
@@ -206,12 +204,12 @@ defineExpose({
|
|
|
show-overflow-tooltip
|
|
|
>
|
|
|
<template #="{ row }">
|
|
|
- <el-tag v-if="col.prop === 'pay_status'">{{
|
|
|
+ <el-tag v-if="col.prop === 'pay_status'" size="small">{{
|
|
|
payStatusOptions.find(p => p.value === String(row.pay_status))
|
|
|
?.label
|
|
|
}}</el-tag>
|
|
|
|
|
|
- <el-tag v-else-if="col.prop === 'checkApi'">{{
|
|
|
+ <el-tag v-else-if="col.prop === 'checkApi'" size="small">{{
|
|
|
checkTypeOptions.find(p => p.value === String(row.checkApi))?.label
|
|
|
}}</el-tag>
|
|
|
|