|
|
@@ -141,7 +141,7 @@ export default {
|
|
|
resolutionRatioSelectSchema: { remote: this.getRatios },
|
|
|
schema: {
|
|
|
condition: {
|
|
|
- status: void 0,
|
|
|
+ status: State.READY,
|
|
|
resolutionRatio: void 0,
|
|
|
name: ''
|
|
|
},
|
|
|
@@ -150,12 +150,12 @@ export default {
|
|
|
{ type: 'add', on: this.onAdd }
|
|
|
],
|
|
|
filters: [
|
|
|
- { key: 'resolutionRatio', type: 'select', placeholder: '全部分辨率', simple: true, remote: getRatios },
|
|
|
- { key: 'status', type: 'select', placeholder: '全部状态', options: [
|
|
|
+ { key: 'status', type: 'select', options: [
|
|
|
{ value: State.READY, label: '待提交' },
|
|
|
{ value: State.SUBMITTED, label: '未审核' },
|
|
|
{ value: State.RESOLVED, label: '已审核' }
|
|
|
] },
|
|
|
+ { key: 'resolutionRatio', type: 'select', placeholder: '全部分辨率', simple: true, remote: getRatios },
|
|
|
{ key: 'name', type: 'search', placeholder: '节目名称' }
|
|
|
],
|
|
|
transform: this.transform
|