jufubao-base 1.0.61-beta1001 → 1.0.61-beta5
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/package.json
CHANGED
|
@@ -264,7 +264,7 @@ export default {
|
|
|
264
264
|
title: "是否确认合并票券",
|
|
265
265
|
isHtml: true,
|
|
266
266
|
$vm: this,
|
|
267
|
-
content: `<div class="label-value"><div><span
|
|
267
|
+
content: `<div class="label-value"><div><span>转出卡号:</span><span>${outHtml}</span></div><div><span>转入卡号:</span><span>${inHtml}</span></div></div>`,
|
|
268
268
|
success: (action) => {
|
|
269
269
|
let params = {
|
|
270
270
|
from_card_number: this.fromSelect.value,
|
|
@@ -277,12 +277,12 @@ export default {
|
|
|
277
277
|
if(this.$configProject.isPreview) return;
|
|
278
278
|
jfbRootExec("mergeCardEntry", { vm: this,data: params})
|
|
279
279
|
.then((res) => {
|
|
280
|
-
this.$xdAlert({content: '合卡成功!'
|
|
280
|
+
this.$xdAlert({content: '合卡成功!'});
|
|
281
281
|
setTimeout(()=>{
|
|
282
282
|
this.$xdUniHelper.navigateTo({
|
|
283
283
|
url: this.cardPath
|
|
284
284
|
})
|
|
285
|
-
},
|
|
285
|
+
}, 1500);
|
|
286
286
|
})
|
|
287
287
|
.catch((err) => {
|
|
288
288
|
this.$xdLog.catch(err)
|