@@ -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({ |
@@ -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 { |