|  |  |  | 
|---|
|  |  |  | <option value="5">转账</option> | 
|---|
|  |  |  | <option value="6">提现</option> | 
|---|
|  |  |  | <option value="7">排名奖励</option> | 
|---|
|  |  |  | <option value="8">利润分红</option> | 
|---|
|  |  |  | <option value="9">系统拨付</option> | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | 
|---|
|  |  |  | url: ctx + 'admin/mallMember/getMoneyFlowList', | 
|---|
|  |  |  | cols: [[ | 
|---|
|  |  |  | {field: 'name', title: '名称', minWidth: 100,align:'left'}, | 
|---|
|  |  |  | {field: 'phone', title: '手机号', minWidth: 150,align:'left'}, | 
|---|
|  |  |  | {field: 'phone', title: '账号', minWidth: 150,align:'left'}, | 
|---|
|  |  |  | {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'}, | 
|---|
|  |  |  | {field: 'amount', title: '金额', minWidth: 150,align:'left'}, | 
|---|
|  |  |  | {field: 'type', title: '流水类型', | 
|---|
|  |  |  | templet: function (d) { | 
|---|
|  |  |  | 
|---|
|  |  |  | return '<span>提现</span>' | 
|---|
|  |  |  | }else if (d.type === 7) { | 
|---|
|  |  |  | return '<span>排名奖励</span>' | 
|---|
|  |  |  | }else if (d.type === 8) { | 
|---|
|  |  |  | return '<span>利润分红</span>' | 
|---|
|  |  |  | }else if (d.type === 9) { | 
|---|
|  |  |  | return '<span>系统拨付</span>' | 
|---|
|  |  |  | }else{ | 
|---|
|  |  |  | return '' | 
|---|
|  |  |  | } | 
|---|