system-clients 3.2.46 → 3.2.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -152,6 +152,19 @@
152
152
  <button type="button" class="btn btn-success" @click='qrCode=false'>关闭</button>
153
153
  </footer>
154
154
  </modal>
155
+ <!--逾期提醒-->
156
+ <modal v-if="yuqitishi" :show.sync="yuqitishi" :backdrop="false">
157
+ <header slot="modal-header" style="padding: 15px;border-bottom: 1px solid #e5e5e5;font-size:24px;height: 60px">提醒</header>
158
+ <article slot="modal-body" class="modal-body">
159
+ <div class="row" style="font-size: 25px">
160
+ 你有{{ num }}个工单已逾期,请尽快处理
161
+ </div>
162
+
163
+ </article>
164
+ <footer slot="modal-footer" class="modal-footer" style="height: 60px">
165
+ <button type="button" class="button_search" @click="yuqitishi = false">确认</button>
166
+ </footer>
167
+ </modal>
155
168
  </div>
156
169
  </template>
157
170
 
@@ -244,6 +257,8 @@ export default {
244
257
  // value: 25645.26,
245
258
  // AddChangeMsgShow: false,
246
259
  // showsum: false
260
+ yuqitishi:false,
261
+ num:null
247
262
  }
248
263
  },
249
264
  ready() {
@@ -390,7 +405,9 @@ export default {
390
405
  }
391
406
  new HttpResetClass().load('POST','rs/sql/serviceDetails/n', {data}, {resolveMsg: null, rejectMsg: null}).then(res=>{
392
407
  if(res.data && res.data.n !== 0){
393
- this.$showMessage('你有'+res.data.n+'个工单已逾期,请尽快处理')
408
+ /*this.$showMessage('你有'+res.data.n+'个工单已逾期,请尽快处理')*/
409
+ this.yuqitishi = true
410
+ this.num = res.data.n
394
411
  }
395
412
  })
396
413
  }