...
|
...
|
@@ -19,20 +19,22 @@ |
|
|
|
|
|
<!--<button>Export</button>-->
|
|
|
|
|
|
<input id="isReplyCombobox" class="easyui-combobox" data-options="
|
|
|
<input id="isReplyCombobox" class="easyui-combobox" value="1" data-options="
|
|
|
editable: false,
|
|
|
valueField: 'id',
|
|
|
textField: 'text',
|
|
|
data: [ { id: '', text: '是否注册' },
|
|
|
,{id: '1',text: '已注册' },
|
|
|
{id: '2',text: '未注册' }
|
|
|
]"/>
|
|
|
<input id="isDeleteCombobox" class="easyui-combobox" data-options="
|
|
|
data: [{
|
|
|
id: '1',
|
|
|
text: '已注册'
|
|
|
}, {
|
|
|
id: '2',
|
|
|
text: '未注册'
|
|
|
}]"/>
|
|
|
<input id="isDeleteCombobox" class="easyui-combobox" value="1" data-options="
|
|
|
editable: false,
|
|
|
valueField: 'id',
|
|
|
textField: 'text',
|
|
|
data: [
|
|
|
{ id: '', text: '是否购买' },{
|
|
|
data: [{
|
|
|
id: '1',
|
|
|
text: '未购买'
|
|
|
}, {
|
...
|
...
|
|