Explorar el Código

修改bug

yxb
DESKTOP-2IO5MST\huting hace 1 año
padre
commit
41b56ad7ca

+ 16
- 1
subpackage/after-sale/ETC-log-off/log-off-result.vue Ver fichero

@@ -2,9 +2,12 @@
<view class="oderPage">
<view class="content">
<image :src="`${$imgUrl}ETCcancellation/bg1.png`" mode=""></image>
<view class="title">
<view class="title" v-if="state.type=='2'">
待审核
</view>
<view class="title" v-else>
已完成
</view>
<view class="">
请到【查询服务】的【业务审核查询】查看进度
</view>
@@ -14,6 +17,18 @@
</template>

<script setup lang="ts">
import {
onLoad
} from '@dcloudio/uni-app'
import {
reactive
} from "vue";
const state = reactive({
type: "1",//1已完成 有设备 2 待审核无设备
})
onLoad((option) => {
state.type = option.type
})
const submit = () => {
let routes = getCurrentPages();
uni.navigateBack({

+ 2
- 2
subpackage/after-sale/ETC-log-off/upload-card.vue Ver fichero

@@ -212,7 +212,7 @@

} else {
queryCardSignCancellation(2, 2, 0).then((item : any) => {
navTo("/subpackage/after-sale/ETC-log-off/log-off-result");
navTo(`/subpackage/after-sale/ETC-log-off/log-off-result?type=2`);
})
}
};
@@ -253,7 +253,7 @@
if (data.orderStatus === 1) {
instructAction(data)
} else {
navTo("/subpackage/after-sale/ETC-log-off/log-off-result");
navTo(`/subpackage/after-sale/ETC-log-off/log-off-result?type=1`);
}
resolve(data);
} else {

Cargando…
Cancelar
Guardar