正在显示
1 个修改的文件
包含
52 行增加
和
34 行删除
@@ -83,6 +83,27 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -83,6 +83,27 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
83 | 83 | ||
84 | // 为表格绑定事件 | 84 | // 为表格绑定事件 |
85 | Table.api.bindevent(table); | 85 | Table.api.bindevent(table); |
86 | + $("#c-category_two_id").data("params", function (obj) { | ||
87 | + var id = $("#c-category_one_id").val()?$("#c-category_one_id").val():-1; | ||
88 | + return {wherein: {pid: id}}; | ||
89 | + }); | ||
90 | + $("#c-category_one_id").on('change',function(){ | ||
91 | + $("#c-category_two_id").val(''); | ||
92 | + $("#c-category_two_id_text").val(''); | ||
93 | + $("#c-category_three_id").val(''); | ||
94 | + $("#c-category_three_id_text").val(''); | ||
95 | + $(".category_two .selected_tag").remove(); | ||
96 | + $(".category_three .selected_tag").remove(); | ||
97 | + }); | ||
98 | + $("#c-category_three_id").data("params", function (obj) { | ||
99 | + var id = $("#c-category_two_id").val()?$("#c-category_two_id").val():-1; | ||
100 | + return {wherein: {pid: id}}; | ||
101 | + }); | ||
102 | + $("#c-category_two_id").on('change',function(){ | ||
103 | + $("#c-category_three_id").val(''); | ||
104 | + $("#c-category_three_id_text").val(''); | ||
105 | + $(".category_three .selected_tag").remove(); | ||
106 | + }); | ||
86 | }, | 107 | }, |
87 | add: function () { | 108 | add: function () { |
88 | Controller.api.bindevent(); | 109 | Controller.api.bindevent(); |
@@ -102,6 +123,27 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -102,6 +123,27 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
102 | $('.vip_price').hide(); | 123 | $('.vip_price').hide(); |
103 | } | 124 | } |
104 | }); | 125 | }); |
126 | + // $("#c-category_two_id").data("params", function (obj) { | ||
127 | + // var id = $("#c-category_one_id").val()?$("#c-category_one_id").val():-1; | ||
128 | + // return {wherein: {pid: id}}; | ||
129 | + // }); | ||
130 | + // $("#c-category_one_id").on('change',function(){ | ||
131 | + // $("#c-category_two_id").val(''); | ||
132 | + // $("#c-category_two_id_text").val(''); | ||
133 | + // $("#c-category_three_id").val(''); | ||
134 | + // $("#c-category_three_id_text").val(''); | ||
135 | + // $(".category_two .selected_tag").remove(); | ||
136 | + // $(".category_three .selected_tag").remove(); | ||
137 | + // }); | ||
138 | + // $("#c-category_three_id").data("params", function (obj) { | ||
139 | + // var id = $("#c-category_two_id").val()?$("#c-category_two_id").val():-1; | ||
140 | + // return {wherein: {pid: id}}; | ||
141 | + // }); | ||
142 | + // $("#c-category_two_id").on('change',function(){ | ||
143 | + // $("#c-category_three_id").val(''); | ||
144 | + // $("#c-category_three_id_text").val(''); | ||
145 | + // $(".category_three .selected_tag").remove(); | ||
146 | + // }); | ||
105 | }, | 147 | }, |
106 | edit: function () { | 148 | edit: function () { |
107 | Controller.api.bindevent(); | 149 | Controller.api.bindevent(); |
@@ -121,44 +163,20 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -121,44 +163,20 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
121 | $('.group').hide(); | 163 | $('.group').hide(); |
122 | } | 164 | } |
123 | }); | 165 | }); |
166 | + | ||
167 | + $('#c-is_vip_price').change(function () { | ||
168 | + var val = $('#c-is_vip_price').val(); | ||
169 | + if(val == 1){ | ||
170 | + $('.vip_price').show(); | ||
171 | + }else { | ||
172 | + $('.vip_price').hide(); | ||
173 | + } | ||
174 | + }); | ||
175 | + | ||
124 | }, | 176 | }, |
125 | api: { | 177 | api: { |
126 | bindevent: function () { | 178 | bindevent: function () { |
127 | Form.api.bindevent($("form[role=form]")); | 179 | Form.api.bindevent($("form[role=form]")); |
128 | - $('#c-is_vip_price').change(function () { | ||
129 | - var val = $('#c-is_vip_price').val(); | ||
130 | - if(val == 1){ | ||
131 | - $('.vip_price').show(); | ||
132 | - }else { | ||
133 | - $('.vip_price').hide(); | ||
134 | - } | ||
135 | - }); | ||
136 | - | ||
137 | - $("#c-category_two_id").data("params", function (obj) { | ||
138 | - var id = $("#c-category_one_id").val()?$("#c-category_one_id").val():-1; | ||
139 | - return {wherein: {pid: id}}; | ||
140 | - }); | ||
141 | - $("#c-category_one_id").change(function () { | ||
142 | - $("#c-category_two_id").val(''); | ||
143 | - $("#c-category_two_id_text").val(''); | ||
144 | - $("#c-category_three_id").val(''); | ||
145 | - $("#c-category_three_id_text").val(''); | ||
146 | - $(".category_two .selected_tag").remove(); | ||
147 | - $(".category_three .selected_tag").remove(); | ||
148 | - }) | ||
149 | - // $("#c-category_one_id").on('change',function(){ | ||
150 | - // | ||
151 | - // }); | ||
152 | - $("#c-category_three_id").data("params", function (obj) { | ||
153 | - var id = $("#c-category_two_id").val()?$("#c-category_two_id").val():-1; | ||
154 | - return {wherein: {pid: id}}; | ||
155 | - }); | ||
156 | - $("#c-category_two_id").on('change',function(){ | ||
157 | - $("#c-category_three_id").val(''); | ||
158 | - $("#c-category_three_id_text").val(''); | ||
159 | - $(".category_three .selected_tag").remove(); | ||
160 | - console.log(123); | ||
161 | - }); | ||
162 | } | 180 | } |
163 | } | 181 | } |
164 | }; | 182 | }; |
-
请 注册 或 登录 后发表评论