Commit c749b2c12d99cec3d09669cac7598a3709bbdaa1
Merge branch 'test' of http://192.168.1.195:9998/web_developers/workreport into test
Showing
2 changed files
with
18 additions
and
2 deletions
topages/workfill/workfill.css
... | ... | @@ -147,5 +147,12 @@ |
147 | 147 | } |
148 | 148 | /*input 样式*/ |
149 | 149 | .bootstrap-select.btn-group .dropdown-toggle .filter-option { |
150 | - text-align: center !important; | |
150 | + text-align: left !important; | |
151 | +} | |
152 | +.bootstrap-select.btn-group .dropdown-toggle .caret{ | |
153 | + position: absolute; | |
154 | + top: 50%; | |
155 | + left:180px !important;; | |
156 | + margin-top: -2px; | |
157 | + vertical-align: middle; | |
151 | 158 | } |
152 | 159 | \ No newline at end of file | ... | ... |
topages/workfill/workfill.js
... | ... | @@ -46,4 +46,13 @@ $('#time-opr-prevbtn').on('click',function () { |
46 | 46 | // 下一周点击time-opr-nextbtn |
47 | 47 | $('#time-opr-nextbtn').on('click',function () { |
48 | 48 | fun.timeoprnextbtn(); |
49 | -}); | |
50 | 49 | \ No newline at end of file |
50 | +}); | |
51 | +//提交事件 | |
52 | +$('.workfill-list-btn').on('click',function () { | |
53 | + var _this=$(this); | |
54 | + console.log(_this); | |
55 | + _this.text('编辑'); | |
56 | + _this.parent().parent().find('.workfill-list-projectnamewrap .workfill-projectCon').addClass('display-none'); | |
57 | + _this.parent().parent().find('.workfill-list-projectnamewrap .workfill-list-projectname').removeClass('display-none'); | |
58 | + | |
59 | +}); | ... | ... |