|
|
@@ -2,37 +2,25 @@
|
|
|
<appResult title="已提交">
|
|
|
<!-- <view class="dec">审核时间为一个工作日</view> -->
|
|
|
<view class="dec"></view>
|
|
|
- <button
|
|
|
- class="admin-button-com blue big"
|
|
|
- @click="close"
|
|
|
- >
|
|
|
- 返回
|
|
|
- </button>
|
|
|
+ <button class="admin-button-com blue big" @click="goBack()" >返回</button>
|
|
|
</appResult>
|
|
|
</template>
|
|
|
-
|
|
|
<script>
|
|
|
import appResult from '@/components/app-result'
|
|
|
export default {
|
|
|
- name: "ApplyResult", // 开单结果
|
|
|
+ name: "ApplyResult",
|
|
|
components:{
|
|
|
appResult
|
|
|
},
|
|
|
onUnload() {
|
|
|
- uni.setStorageSync('HOME_REFRESH', '1')
|
|
|
- uni.removeStorageSync('HOME_STATUS_STROAGE_SHOW')
|
|
|
},
|
|
|
methods:{
|
|
|
- close() {
|
|
|
- uni.removeStorageSync('OPEN_SHOP_ID')
|
|
|
- uni.removeStorageSync('HOME_STATUS_STROAGE_SHOW')
|
|
|
- this.$store.commit("setLoginInfo", {})
|
|
|
- this.pageTo({url: "/admin/home/workbench",type: 3})
|
|
|
+ goBack() {
|
|
|
+ uni.navigateBack()
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
-
|
|
|
<style lang="scss" scoped>
|
|
|
.dec {
|
|
|
color: #666666;
|
|
|
@@ -44,4 +32,4 @@ export default {
|
|
|
margin-bottom: 20upx;
|
|
|
width: 100%;
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|