Commit 94f7e37c authored by wangjiangze's avatar wangjiangze

更新

parent 2c022a97
......@@ -147,6 +147,19 @@ body{padding:20px}
<input name="" type="reset" class="btn btn-warning" value="取消" onclick="parentDialog.close();"/>  
</div>
</form>
<!-- loading -->
<div class="modal fade" id="loading" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" data-backdrop='static'>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">系统提示</h4>
</div>
<div class="modal-body">
正在处理数据,请稍等......<span id="result"></span>
</div>
</div>
</div>
</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#multiselect').multiselect({
......@@ -261,6 +274,7 @@ $().ready(function(){
});
$("#laiyuan").bind("change",function(){
$('#loading').modal('show');
var tmp_val = $(this).val();
var sp_val = $("select[name='sp'] option:selected").val();
if(sp_val==0){
......@@ -307,6 +321,7 @@ $().ready(function(){
$("select#programType").val(0);
$("#multiselectMedia").empty();
}
$('#loading').modal('hide');
});
$("#playlist").bind("change",function(){
......
......@@ -301,6 +301,7 @@ $().ready(function(){
});
$("#laiyuan").bind("change",function(){
$('#loading').modal('show');
var tmp_val = $(this).val();
var sp_id = $("select[name='sp'] option:selected").val();
if(sp_id==0){
......@@ -328,6 +329,7 @@ $().ready(function(){
$("#playlist").addClass("hidden");
$("#multiselectMedia").empty();
}
$('#loading').modal('hide');
});
$("#playlist").bind("change",function(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment