Files
OMS/app/o2o/view/admin/autostore/deleteRule.html
2026-01-04 19:08:31 +08:00

50 lines
1.9 KiB
HTML

<!--
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<form id='delete_rule_form' method="post" action='index.php?app=o2o&ctl=admin_autostore&act=doDeleteRule'>
<div class="division">
<div class="tableform">
<h4>是否确认删除当前选中的规则</h4>
</div>
<div class="table-action">
<{button label="是" type="button" id='cancel-rule'}><{button label="否" type="button" id='copy-rule' isCloseDialogBtn='true'}>
</div>
</div>
<input type="hidden" name="rule_id" value="<{$data}>">
</form>
<script>
$('cancel-rule').addEvent('click',function(e){
var _this=this;
$('delete_rule_form').store('target',{
onRequest:function(){
_this.disabled=true;
},
onComplete:function(jsontext){
try{
var json = Json.evaluate(jsontext);
if (typeof(json.error) != 'undefined'){
_this.disabled=false;
}else{
$('delete_rule_form').getParent('.dialog').retrieve('instance').close();
opener.finderGroup['<{$env.get.finder_id}>'].refresh.delay(400,opener.finderGroup['<{$env.get.finder_id}>']);
}
}catch(e){}
}
});
$('delete_rule_form').fireEvent('submit',e);
});
</script>