Commit 6a9d557b70ff914f81855fffe3225c2fa45c6500

Authored by 王通
1 parent afa41ec9

1.发车信息微调修正时间显示错误

src/main/resources/static/real_control_v2/fragments/north/nav/sch_edit_info/list.html
... ... @@ -131,7 +131,7 @@
131 131 {{each jsonArray as obj i}}
132 132 <p class="text">{{obj.title}} 由 {{obj.old==null?'无':obj.old}} 调整为 {{obj.now}}</p>
133 133 {{/each}}
134   -<p class="sub_text">调整人:{{user}} 调整时间:{{ts_str}}</p>Z
  134 +<p class="sub_text">调整人:{{user}} 调整时间:{{timeStr}}</p>Z
135 135 {{if remarks!=null && remarks != ''}}
136 136 <p class="sub_text">备注:{{remarks}}</p>
137 137 {{/if}}
... ... @@ -144,7 +144,7 @@
144 144 {{each jsonArray as obj i}}
145 145 <p class="text">{{obj.title}} 由 {{obj.old==null?'无':obj.old}} 调整为 {{obj.now}}</p>
146 146 {{/each}}
147   - <p class="sub_text">调整人:{{user}} 调整时间:{{timeStr}}</p>
  147 + <p class="sub_text">调整人:{{user}} 调整时间:{{ts_str}}</p>
148 148 {{if remarks!=null && remarks != ''}}
149 149 <p class="sub_text">备注:{{remarks}}</p>
150 150 {{/if}}
... ... @@ -277,6 +277,7 @@
277 277 $.each(rs.list, function () {
278 278 this.jsonArray = JSON.parse(this.jsonArray);
279 279 etInfos[this.id] = this;
  280 + debugger
280 281 this['ts_str'] = moment(this.ts).format('YYYY-MM-DD HH:mm');
281 282  
282 283 nbbmArray.push({value: this.clZbh});
... ...