Browse Source

价格公告

zmm 6 years ago
parent
commit
7df6d14c99

+ 32 - 0
CZKJ.GBRS2.Web/Areas/Manage/Controllers/PriceAnnouncementController.cs

@@ -0,0 +1,32 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Linq;
4
+using System.Threading.Tasks;
5
+using CZFW.Framework.Model.ViewModel;
6
+using CZFW.Framework.WebApi;
7
+using CZKJ.GBRS2.Entity;
8
+using CZKJ.GBRS2.Interface;
9
+using Microsoft.AspNetCore.Mvc;
10
+
11
+namespace CZKJ.GBRS2.Web.Areas.Manage.Controllers
12
+{
13
+    public class PriceAnnouncementController : ApiControllerBase<PriceAnnouncementEntity>
14
+    {
15
+        private IPriceAnnouncement _priceAnnouncementLogic;
16
+
17
+        public PriceAnnouncementController(IPriceAnnouncement priceAnnouncementLogic)
18
+        {
19
+            _baseLogic = _priceAnnouncementLogic = priceAnnouncementLogic;
20
+        }
21
+    public TableModel<PriceAnnouncementEntity> GetTableModel(int? typeId, int pageIndex = 1, int pageSize = 20)
22
+        {
23
+            int rowsCount = 0;
24
+            var model = new TableModel<PriceAnnouncementEntity>();
25
+            var data = _priceAnnouncementLogic.GetTableList(typeId,pageIndex,pageSize,out rowsCount);
26
+            model.SetData(data);
27
+            model.Pager = new PagerModel(rowsCount, pageIndex, pageSize);
28
+            model.TableHeads = PropertyHelper.Get(typeof(PriceAnnouncementEntity));
29
+            return model;
30
+        }
31
+    }
32
+}

+ 9 - 8
CZKJ.GBRS2.WebMVC/Views/Home/Index.cshtml

@@ -12,8 +12,9 @@
12 12
             transform: translate(0,-50%);
13 13
             margin-top: 75px;
14 14
         }
15
-        .l-fix2{
16
-            margin-top:-75px;
15
+
16
+        .l-fix2 {
17
+            margin-top: -75px;
17 18
         }
18 19
 
19 20
         .l-fix a {
@@ -32,14 +33,14 @@
32 33
             border: 1px solid transparent;
33 34
             transition: all 0.3s;
34 35
         }
35
-            /*.l-fix a:hover {
36
+        /*.l-fix a:hover {
36 37
                 background-color: #fff;
37 38
                 color: #f15558;
38 39
                 border: 1px solid #f15558;
39 40
             }*/
40
-            .l-fix p {
41
-                width: 100%;
42
-            }
41
+        .l-fix p {
42
+            width: 100%;
43
+        }
43 44
 
44 45
         @@media (max-width: 768px) {
45 46
             .l-fix a {
@@ -285,7 +286,7 @@
285 286
                         <p>官方微博</p>
286 287
                     </a>
287 288
                 </li>
288
-               
289
+
289 290
             </ul>
290 291
         </div>
291 292
     </div>
@@ -412,7 +413,7 @@
412 413
             })
413 414
         });
414 415
     </script>
415
-    <script src="http://james.padolsey.com/demos/grayscale/grayscale.js"></script>
416
+    <script src="~/assets/js/grayscale.js"></script>
416 417
     <script>
417 418
         grayscale($(".no-link img"));
418 419
     </script>

+ 310 - 0
CZKJ.GBRS2.WebMVC/wwwroot/assets/js/grayscale.js

@@ -0,0 +1,310 @@
1
+/*
2
+ * -- grayscale.js --
3
+ * Copyright (C) James Padolsey (http://james.padolsey.com)
4
+ *
5
+ */
6
+
7
+var grayscale = (function(){
8
+    
9
+    var config = {
10
+            colorProps: ['color','backgroundColor','borderBottomColor','borderTopColor','borderLeftColor','borderRightColor','backgroundImage'],
11
+            externalImageHandler : {
12
+                /* Grayscaling externally hosted images does not work
13
+                   - Use these functions to handle those images as you so desire */
14
+                /* Out of convenience these functions are also used for browsers
15
+                   like Chrome that do not support CanvasContext.getImageData */
16
+                init : function(el, src) {
17
+                    if (el.nodeName.toLowerCase() === 'img') {
18
+                        // Is IMG element...
19
+                    } else {
20
+                        // Is background-image element:
21
+                        // Default - remove background images
22
+                        data(el).backgroundImageSRC = src;
23
+                        el.style.backgroundImage = '';
24
+                    }
25
+                },
26
+                reset : function(el) {
27
+                    if (el.nodeName.toLowerCase() === 'img') {
28
+                        // Is IMG element...
29
+                    } else {
30
+                        // Is background-image element:
31
+                        el.style.backgroundImage = 'url(' + (data(el).backgroundImageSRC || '') + ')';
32
+                    }
33
+                }
34
+            }
35
+        },
36
+        log = function(){
37
+            try { window.console.log.apply(console, arguments); }
38
+            catch(e) {};
39
+        },
40
+        isExternal = function(url) {
41
+            // Checks whether URL is external: 'CanvasContext.getImageData'
42
+            // only works if the image is on the current domain.
43
+            return (new RegExp('https?://(?!' + window.location.hostname + ')')).test(url);
44
+        },
45
+        data = (function(){
46
+            
47
+            var cache = [0],
48
+            expando = 'data' + (+new Date());
49
+            
50
+            return function(elem) {
51
+                var cacheIndex = elem[expando],
52
+                    nextCacheIndex = cache.length;
53
+                if(!cacheIndex) {
54
+                    cacheIndex = elem[expando] = nextCacheIndex;
55
+                    cache[cacheIndex] = {};
56
+                }
57
+                return cache[cacheIndex];
58
+            };
59
+            
60
+        })(),
61
+        desatIMG = function(img, prepare, realEl) {
62
+            
63
+            // realEl is only set when img is temp (for BG images)
64
+            
65
+            var canvas = document.createElement('canvas'),
66
+                context = canvas.getContext('2d'),
67
+                height = img.naturalHeight || img.offsetHeight || img.height,
68
+                width = img.naturalWidth || img.offsetWidth || img.width,
69
+                imgData;
70
+                
71
+            canvas.height = height;
72
+            canvas.width = width;
73
+            context.drawImage(img, 0, 0);
74
+            try {
75
+                imgData = context.getImageData(0, 0, width, height);
76
+            } catch(e) {}
77
+            
78
+            if (prepare) {
79
+                desatIMG.preparing = true;
80
+                // Slowly recurse through pixels for prep,
81
+                // :: only occurs on grayscale.prepare()
82
+                var y = 0;
83
+                (function(){
84
+                    
85
+                    if (!desatIMG.preparing) { return; }
86
+                    
87
+                    if (y === height) {
88
+                        // Finished!
89
+                        context.putImageData(imgData, 0, 0, 0, 0, width, height);
90
+                        realEl ? (data(realEl).BGdataURL = canvas.toDataURL())
91
+                               : (data(img).dataURL = canvas.toDataURL())
92
+                    }
93
+                    
94
+                    for (var x = 0; x < width; x++) {
95
+                        var i = (y * width + x) * 4;
96
+                        // Apply Monoschrome level across all channels:
97
+                        imgData.data[i] = imgData.data[i+1] = imgData.data[i+2] =
98
+                        RGBtoGRAYSCALE(imgData.data[i], imgData.data[i+1], imgData.data[i+2]);
99
+                    }
100
+                    
101
+                    y++;
102
+                    setTimeout(arguments.callee, 0);
103
+                    
104
+                })();
105
+                return;
106
+            } else {
107
+                // If desatIMG was called without 'prepare' flag
108
+                // then cancel recursion and proceed with force! (below)
109
+                desatIMG.preparing = false;
110
+            }
111
+            
112
+            for (var y = 0; y < height; y++) {
113
+                for (var x = 0; x < width; x++) {
114
+                    var i = (y * width + x) * 4;
115
+                    // Apply Monoschrome level across all channels:
116
+                    imgData.data[i] = imgData.data[i+1] = imgData.data[i+2] =
117
+                    RGBtoGRAYSCALE(imgData.data[i], imgData.data[i+1], imgData.data[i+2]);
118
+                }
119
+            }
120
+            
121
+            context.putImageData(imgData, 0, 0, 0, 0, width, height);
122
+            return canvas;
123
+        
124
+        },
125
+        getStyle = function(el, prop) {
126
+            var style = document.defaultView && document.defaultView.getComputedStyle ? 
127
+                        document.defaultView.getComputedStyle(el, null)[prop]
128
+                        : el.currentStyle[prop];
129
+            // If format is #FFFFFF: (convert to RGB)
130
+            if (style && /^#[A-F0-9]/i.test(style)) {
131
+                    var hex = style.match(/[A-F0-9]{2}/ig);
132
+                    style = 'rgb(' + parseInt(hex[0], 16) + ','
133
+                                   + parseInt(hex[1], 16) + ','
134
+                                   + parseInt(hex[2], 16) + ')';
135
+            }
136
+            return style;
137
+        },
138
+        RGBtoGRAYSCALE = function(r,g,b) {
139
+            // Returns single monochrome figure:
140
+            return parseInt( (0.2125 * r) + (0.7154 * g) + (0.0721 * b), 10 );
141
+        },
142
+        getAllNodes = function(context) {
143
+            var all = Array.prototype.slice.call(context.getElementsByTagName('*'));
144
+            all.unshift(context);
145
+            return all;
146
+        };
147
+        
148
+    var init = function(context) {
149
+        
150
+        // Handle if a DOM collection is passed instead of a single el:
151
+        if (context && context[0] && context.length && context[0].nodeName) {
152
+            // Is a DOM collection:
153
+            var allContexts = Array.prototype.slice.call(context),
154
+                cIndex = -1, cLen = allContexts.length;
155
+            while (++cIndex<cLen) { init.call(this, allContexts[cIndex]); }
156
+            return;
157
+        }
158
+        
159
+        context = context || document.documentElement;
160
+        
161
+        if (!document.createElement('canvas').getContext) {
162
+            context.style.filter = 'progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)';
163
+            context.style.zoom = 1;
164
+            return;
165
+        }
166
+        
167
+        var all = getAllNodes(context),
168
+            i = -1, len = all.length;
169
+            
170
+        while (++i<len) {
171
+            var cur = all[i];
172
+            
173
+            if (cur.nodeName.toLowerCase() === 'img') {
174
+                var src = cur.getAttribute('src');
175
+                if(!src) { continue; }
176
+                if (isExternal(src)) {
177
+                    config.externalImageHandler.init(cur, src);
178
+                } else {
179
+                    data(cur).realSRC = src;
180
+                    try {
181
+                        // Within try statement just encase there's no support....
182
+                        cur.src = data(cur).dataURL || desatIMG(cur).toDataURL();
183
+                    } catch(e) { config.externalImageHandler.init(cur, src); }
184
+                }
185
+                
186
+            } else {
187
+                for (var pIndex = 0, pLen = config.colorProps.length; pIndex < pLen; pIndex++) {
188
+                    var prop = config.colorProps[pIndex],
189
+                    style = getStyle(cur, prop);
190
+                    if (!style) {continue;}
191
+                    if (cur.style[prop]) {
192
+                        data(cur)[prop] = style;
193
+                    }
194
+                    // RGB color:
195
+                    if (style.substring(0,4) === 'rgb(') {
196
+                        var monoRGB = RGBtoGRAYSCALE.apply(null, style.match(/\d+/g));
197
+                        cur.style[prop] = style = 'rgb(' + monoRGB + ',' + monoRGB + ',' + monoRGB + ')';
198
+                        continue;
199
+                    }
200
+                    // Background Image:
201
+                    if (style.indexOf('url(') > -1) {
202
+                        var urlPatt = /\(['"]?(.+?)['"]?\)/,
203
+                            url = style.match(urlPatt)[1];
204
+                        if (isExternal(url)) {
205
+                            config.externalImageHandler.init(cur, url);
206
+                            data(cur).externalBG = true;
207
+                            continue;
208
+                        }
209
+                        // data(cur).BGdataURL refers to caches URL (from preparation)
210
+                        try {
211
+                            var imgSRC = data(cur).BGdataURL || (function(){
212
+                                    var temp = document.createElement('img');
213
+                                    temp.src = url;
214
+                                    return desatIMG(temp).toDataURL();
215
+                                })();
216
+                            
217
+                            cur.style[prop] = style.replace(urlPatt, function(_, url){
218
+                                return '(' + imgSRC + ')';
219
+                            });
220
+                        } catch(e) { config.externalImageHandler.init(cur, url); }
221
+                    }
222
+                }
223
+            }
224
+        }
225
+        
226
+    };
227
+    
228
+    init.reset = function(context) {
229
+        // Handle if a DOM collection is passed instead of a single el:
230
+        if (context && context[0] && context.length && context[0].nodeName) {
231
+            // Is a DOM collection:
232
+            var allContexts = Array.prototype.slice.call(context),
233
+                cIndex = -1, cLen = allContexts.length;
234
+            while (++cIndex<cLen) { init.reset.call(this, allContexts[cIndex]); }
235
+            return;
236
+        }
237
+        context = context || document.documentElement;
238
+        if (!document.createElement('canvas').getContext) {
239
+            context.style.filter = 'progid:DXImageTransform.Microsoft.BasicImage(grayscale=0)';
240
+            return;
241
+        }
242
+        var all = getAllNodes(context),
243
+            i = -1, len = all.length;
244
+        while (++i<len) {
245
+            var cur = all[i];
246
+            if (cur.nodeName.toLowerCase() === 'img') {
247
+                var src = cur.getAttribute('src');
248
+                if (isExternal(src)) {
249
+                    config.externalImageHandler.reset(cur, src);
250
+                }
251
+                cur.src = data(cur).realSRC || src;
252
+            } else {
253
+                for (var pIndex = 0, pLen = config.colorProps.length; pIndex < pLen; pIndex++) {
254
+                    if (data(cur).externalBG) {
255
+                        config.externalImageHandler.reset(cur);
256
+                    }
257
+                    var prop = config.colorProps[pIndex];
258
+                    cur.style[prop] = data(cur)[prop] || '';
259
+                }
260
+            }
261
+        }
262
+    };
263
+    
264
+    init.prepare = function(context) {
265
+        
266
+        // Handle if a DOM collection is passed instead of a single el:
267
+        if (context && context[0] && context.length && context[0].nodeName) {
268
+            // Is a DOM collection:
269
+            var allContexts = Array.prototype.slice.call(context),
270
+                cIndex = -1, cLen = allContexts.length;
271
+            while (++cIndex<cLen) { init.prepare.call(null, allContexts[cIndex]); }
272
+            return;
273
+        }
274
+        
275
+        // Slowly recurses through all elements
276
+        // so as not to lock up on the user.
277
+        
278
+        context = context || document.documentElement;
279
+        
280
+        if (!document.createElement('canvas').getContext) { return; }
281
+        
282
+        var all = getAllNodes(context),
283
+            i = -1, len = all.length;
284
+        
285
+        while (++i<len) {
286
+            var cur = all[i];
287
+            if (data(cur).skip) { return; }
288
+            if (cur.nodeName.toLowerCase() === 'img') {
289
+                if (cur.getAttribute('src') && !isExternal(cur.src)) {
290
+                    desatIMG(cur, true);
291
+                }
292
+                
293
+            } else {
294
+                var style = getStyle(cur, 'backgroundImage');
295
+                if (style.indexOf('url(') > -1) {
296
+                    var urlPatt = /\(['"]?(.+?)['"]?\)/,
297
+                        url = style.match(urlPatt)[1];
298
+                    if (!isExternal(url)) {
299
+                        var temp = document.createElement('img');
300
+                        temp.src = url;
301
+                        desatIMG(temp, true, cur);
302
+                    }
303
+                }
304
+            }
305
+        }
306
+    };
307
+    
308
+    return init;
309
+
310
+})();

+ 49 - 0
CZKJ.GBRS2/Entity/PriceAnnouncementEntity.cs

@@ -0,0 +1,49 @@
1
+using CZFW.Framework.Attributes;
2
+using CZFW.Framework.Model.Entity;
3
+using System;
4
+using System.ComponentModel.DataAnnotations;
5
+using System.ComponentModel.DataAnnotations.Schema;
6
+
7
+namespace CZKJ.GBRS2.Entity
8
+{
9
+    /// <summary>
10
+    /// 价格公布—万能险利率表
11
+    /// </summary>
12
+    [Table("cz_gbrs2_priceannouncement")]
13
+    public class PriceAnnouncementEntity : EntityBase
14
+    {
15
+        /// <summary>
16
+        /// 险种
17
+        /// </summary>
18
+        [Invisible]
19
+        [DropdownSrc(SrcUrl = "/Manage/Type/GetTypeListByParentId?parentId=")]
20
+        [Display(Name = "险种")]
21
+        public int Typeofinsuance { get; set; }
22
+        /// <summary>
23
+        /// 年化利率
24
+        /// </summary>
25
+        [Invisible]
26
+        [Display(Name = "年化利率")]
27
+        [StringLength(64)]
28
+        public string YearInterestRate { get; set; }
29
+        /// <summary>
30
+        /// 日化利率
31
+        /// </summary>
32
+        [Invisible]
33
+        [Display(Name = "日化利率")]
34
+        [StringLength(64)]
35
+        public string DayInterestRate { get; set; }
36
+         /// <summary>
37
+         ///适用日期
38
+         /// </summary>
39
+         [Invisible]
40
+         [Display(Name = "适用日期")]
41
+        public DateTime  DateTime { get; set; }
42
+        /// <summary>
43
+        /// 险种名称
44
+        /// </summary>
45
+        [NotMapped]
46
+        public string TypeName { get; set; }
47
+
48
+    }
49
+}

+ 16 - 0
CZKJ.GBRS2/Interface/IPriceAnnouncement.cs

@@ -0,0 +1,16 @@
1
+using CZFW.Framework.Interface;
2
+using CZKJ.GBRS2.Entity;
3
+using System;
4
+using System.Collections.Generic;
5
+using System.Text;
6
+
7
+namespace CZKJ.GBRS2.Interface
8
+{
9
+    /// <summary>
10
+    /// 万能险利率公布
11
+    /// </summary>
12
+    public interface IPriceAnnouncement : ILogicBase<PriceAnnouncementEntity>
13
+    {
14
+        IList<PriceAnnouncementEntity> GetTableList(int? typeId,int pageIndex,int pageSize, out int rowsCount);
15
+    }
16
+}

+ 34 - 0
CZKJ.GBRS2/Logic/PriceAnnouncementLogic.cs

@@ -0,0 +1,34 @@
1
+using CZFW.Framework.Logic;
2
+using CZFW.Framework.Model.Entity;
3
+using CZKJ.GBRS2.Entity;
4
+using CZKJ.GBRS2.Interface;
5
+using System;
6
+using System.Collections.Generic;
7
+using System.Linq;
8
+using System.Text;
9
+
10
+namespace CZKJ.GBRS2.Logic
11
+{
12
+    public class PriceAnnouncementLogic : LogicBase<PriceAnnouncementEntity>, IPriceAnnouncement
13
+    {
14
+        public IList<PriceAnnouncementEntity> GetTableList(int? typeId, int pageIndex, int pageSize, out int rowsCount)
15
+        {
16
+            var query = Queryable;
17
+            if (typeId.HasValue)
18
+            {
19
+                query = query.Where(x => x.Typeofinsuance == typeId);
20
+            }
21
+            rowsCount = query.Count();
22
+            var result = query.Join(DbContext.Set<TypeEntity>(), x => x.Typeofinsuance, y => y.Id, (x, y) => new { x, y.Name }).OrderByDescending(x => x.x.DateTime).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
23
+            return result.Select(x => new PriceAnnouncementEntity
24
+            {
25
+                TypeName = x.Name,
26
+                Id = x.x.Id,
27
+                Typeofinsuance = x.x.Typeofinsuance,
28
+                DateTime = x.x.DateTime,
29
+                DayInterestRate = x.x.DayInterestRate,
30
+                YearInterestRate = x.x.YearInterestRate,
31
+            }).ToList();
32
+        }
33
+    }
34
+}