Files
OMS/app/financebase/view/admin/cainiao/redimportview.html
2025-12-28 23:13:25 +08:00

31 lines
974 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<div class="tableform">
<div class="division">
<select id="redimport">
<option></option>
<option value="order">按单号导入</option>
<option value="sku">按SKU明细导入</option>
<option value="sale">按销售周期导入</option>
</select>
</div>
</div>
<div class="division" id="importview"></div>
<script type="text/javascript">
(function () {
$('redimport').addEvent('change', function(){
var type = this.value;
if(!type) {
$('importview').empty();
return;
}
W.page('index.php?app=financebase&ctl=admin_shop_settlement_cainiao&act=importview&type='+type,{
update:$('importview'),
clearUpdateMap:false
});
});
})();
</script>