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.
- package/.gradle/6.7/executionHistory/executionHistory.bin +0 -0
- package/.gradle/6.7/executionHistory/executionHistory.lock +0 -0
- package/.gradle/6.7/fileChanges/last-build.bin +0 -0
- package/.gradle/6.7/fileHashes/fileHashes.bin +0 -0
- package/.gradle/6.7/fileHashes/fileHashes.lock +0 -0
- package/.gradle/6.7/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/checksums/checksums.lock +0 -0
- package/.gradle/configuration-cache/gc.properties +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/gradlew +185 -0
- package/gradlew.bat +89 -0
- package/package.json +1 -1
- package/src/App.vue +24 -24
- package/src/filiale/furuike/Login.vue +583 -577
- package/src/filiale/furuike/Main.vue +18 -1
@@ -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
|
}
|