Commit 31d44ad3728436440c6993493cd9b4d405cdcf7e

Authored by Peng Peidong
Committed by GitHub
1 parent f810a089

fix(api/demo): fix typo (#2808)

src/api/demo/model/optionsModel.ts
1 1 import { BasicFetchResult } from '/@/api/model/baseModel';
2 2  
3 3 export interface DemoOptionsItem {
4   - label: string;
5   - value: string;
  4 + name: string;
  5 + id: string;
6 6 }
7 7  
8 8 export interface selectParams {
... ...