|
@@ -59,9 +59,9 @@
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in statusList"
|
|
|
- :key="'status' + item.id"
|
|
|
- :label="item.label"
|
|
|
- :value="item.id"
|
|
|
+ :key="'status' + item.code"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.code"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
@@ -76,7 +76,7 @@
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
|
|
|
- <el-button type="warning" :size="searchList" @click="restSearch">
|
|
|
+ <el-button type="warning" :size="'mini'" @click="restSearch">
|
|
|
重置
|
|
|
</el-button>
|
|
|
</el-col>
|
|
@@ -223,9 +223,14 @@ export default {
|
|
|
type:'selection',
|
|
|
fixed:'left'
|
|
|
},
|
|
|
+ // {
|
|
|
+ // prop: "title_type",
|
|
|
+ // label: "抬头类型",
|
|
|
+ // },
|
|
|
{
|
|
|
- prop: "title_type",
|
|
|
- label: "抬头类型",
|
|
|
+ prop:'companyName',
|
|
|
+ label:'供应商名称',
|
|
|
+ width: "155px",
|
|
|
},
|
|
|
{
|
|
|
prop: "tax_no",
|
|
@@ -357,7 +362,10 @@ export default {
|
|
|
...this.parmValue,
|
|
|
limit: this.parmValue.size,
|
|
|
};
|
|
|
- const { code, data } = await asyncRequest.titleList(model);
|
|
|
+ const { code, data } = await asyncRequest.titleList({
|
|
|
+ ...model,
|
|
|
+ title_type: '供应商抬头'
|
|
|
+ });
|
|
|
if (code === 1) {
|
|
|
const { list, total } = data;
|
|
|
this.tableData = list;
|