|
@@ -20,10 +20,12 @@
|
|
<view class="grade-line"></view>
|
|
<view class="grade-line"></view>
|
|
<button class="grade-confirm-btn" @click="handleConfirm"></button>
|
|
<button class="grade-confirm-btn" @click="handleConfirm"></button>
|
|
</view>
|
|
</view>
|
|
|
|
+ <coming-soon-dialog ref="comingSoonDialogRef"></coming-soon-dialog>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
|
|
+ import comingSoonDialog from './comingSoonDialog.vue';
|
|
import {
|
|
import {
|
|
reactive,
|
|
reactive,
|
|
toRefs,
|
|
toRefs,
|
|
@@ -39,6 +41,7 @@
|
|
import {getUserIdentity} from "@/utils/common.js"
|
|
import {getUserIdentity} from "@/utils/common.js"
|
|
import cacheManager from "@/utils/cacheManager.js"
|
|
import cacheManager from "@/utils/cacheManager.js"
|
|
|
|
|
|
|
|
+ const comingSoonDialogRef = ref(null);
|
|
function useSelectGrade() {
|
|
function useSelectGrade() {
|
|
const userCode = getUserIdentity();
|
|
const userCode = getUserIdentity();
|
|
const data = reactive({
|
|
const data = reactive({
|
|
@@ -48,6 +51,7 @@
|
|
});
|
|
});
|
|
|
|
|
|
onLoad(({nianji,cardId,tipFlag}) => {
|
|
onLoad(({nianji,cardId,tipFlag}) => {
|
|
|
|
+ // comingSoonDialogRef.value.handleShow();
|
|
if (userCode !== 'Visitor') {
|
|
if (userCode !== 'Visitor') {
|
|
const {
|
|
const {
|
|
nianji: nianji_,
|
|
nianji: nianji_,
|