|
@@ -44,13 +44,15 @@ export default {
|
|
|
},
|
|
|
],
|
|
|
fields: [
|
|
|
- { label: '服务政策', prop: 'name', filter: 'input', custom: true },
|
|
|
+ { label: '创新券类型', prop: 'type', filter: 'select' },
|
|
|
+ { label: '创新券名称', prop: 'name', filter: 'input', custom: true },
|
|
|
{ label: '折扣类型', prop: 'discount_type' },
|
|
|
{ label: '使用服务类型', prop: 'use_type' },
|
|
|
{ label: '期限', prop: 'limit_time' },
|
|
|
{ label: '补贴比例', prop: 'scale' },
|
|
|
{ label: '券总额度', prop: 'total_allowance' },
|
|
|
],
|
|
|
+ // 创新券类型
|
|
|
typeList: policyType,
|
|
|
detail: {},
|
|
|
dialog: false,
|
|
@@ -62,7 +64,7 @@ export default {
|
|
|
methods: {
|
|
|
...policy(['query', 'delete']),
|
|
|
async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
|
- // info.status = '1';
|
|
|
+ info.status = '1';
|
|
|
const res = await this.query({ skip, limit, ...info });
|
|
|
if (this.$checkRes(res)) {
|
|
|
this.$set(this, `list`, res.data);
|