|
@@ -271,10 +271,10 @@
|
|
|
|
|
|
<t-dialog
|
|
|
class="dialog-charge"
|
|
|
- v-if="chargeDialog.show"
|
|
|
+ v-if="chargeDialogShow"
|
|
|
:header="chargeDialog.name"
|
|
|
:visible="true"
|
|
|
- @close="chargeDialog.show = false"
|
|
|
+ @close="chargeDialogShow = false"
|
|
|
width="80%"
|
|
|
:top="8"
|
|
|
:footer="false"
|
|
@@ -380,7 +380,7 @@ import {
|
|
|
} from '@/services/api';
|
|
|
import { convertPen } from '@/services/upgrade';
|
|
|
import { isGif } from '@/services/utils';
|
|
|
-import { autoSave, delAttrs, blank, useFolder } from '@/services/common';
|
|
|
+import { autoSave, delAttrs, blank, useFolder, chargeDialogShow } from '@/services/common';
|
|
|
import { debounce, throttle } from '@/services/debouce';
|
|
|
import { searchObjectPinyin } from '@/services/pinyin';
|
|
|
import { getCookie } from '@/services/cookie';
|
|
@@ -1230,7 +1230,7 @@ const open = async (item: any) => {
|
|
|
// }
|
|
|
if(!ret.data&&ret.price>0){
|
|
|
chargeDialog.data = item;
|
|
|
- chargeDialog.show = true;
|
|
|
+ chargeDialogShow.value = true;
|
|
|
return;
|
|
|
}
|
|
|
sessionStorage.setItem('opening', '1');
|