Authored by linlong

update

... ... @@ -220,13 +220,11 @@
</div>
</td-->
<td>
<input type="text" class="form-control center editor-yohoCoin" placeholder="返币金额" value="[[productPrice.returnCoinMoney]]" style="width: 100px">
<input type="text" class="form-control center editor-yohoCoin" placeholder="返币金额" value="[[productPrice.returnCoinMoney]]" style="width: 100px">
</td>
<td>
<select class="form-control center editor-auditor" style="width: 150px">
<option value="">-- 请选择审核人 --</option>
<option value="2965">Tracy</option>
<option value="10235">David Wong</option>
<select class="form-control center" id="test" style="width: 150px">
<option value="-1">-- 请选择审核人 --</option>
</select>
</td>
<td>
... ... @@ -234,7 +232,7 @@
</td>
</tr>
<tr>
<td class="left editorTip" colspan="3">* 提示:若返币金额&nbsp;&nbsp;<b>大于等于</b>&nbsp;&nbsp;销售价的20%,审核人必须填写,审核通过后才能进入该状态。</td>
<td class="left editorTip" colspan="3">* 提示:若返币金额&nbsp;&nbsp;<b>大于等于</b>&nbsp;&nbsp;销售价的20%,审核人必须填写,审核通过后才能进入该状态。1元=100有货币</td>
</tr>
</table>
</td>
... ...
... ... @@ -24,6 +24,8 @@ var ENUM = {
}
}
new common.dropDown({
el: '#shop',
ajax: 'shopsRest'
... ... @@ -79,8 +81,18 @@ var g = new common.grid({
html += common.util.__template2($("#coinList").html(),item);
return html;
}
}]
});
}],
complete:function(){
console.info($("#test"));
new common.dropDown({
el: "#test",
ajax: 'shopsRest',
hash: true
});
alert(3)
}
}
);
g.init("/good/yohoCoin/queryPageList");
//批量上传
... ...