From 1b6a3e58e8d3f9a4a56810b5433e28230fe8f3bb Mon Sep 17 00:00:00 2001 From: fei.wang <wf18701153496@163.com> Date: 星期五, 07 三月 2025 11:30:59 +0800 Subject: [PATCH] 1 --- pages/index/processing.vue | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pages/index/processing.vue b/pages/index/processing.vue index a93e287..b2d65f7 100644 --- a/pages/index/processing.vue +++ b/pages/index/processing.vue @@ -9,7 +9,7 @@ <view class="container" :style="{top:vuex_custom_bar_height+'px',position: 'absolute'}"> <view class="card"> <view style="display: flex;"> - <u-checkbox-group v-model="checkboxValue1" placement="column" @change="checkboxChange"> + <u-checkbox-group v-model="checkboxValue1" placement="column"> <u-checkbox :customStyle="{marginTop: '5px'}"> </u-checkbox> </u-checkbox-group> @@ -88,8 +88,7 @@ } } }, - mounted() { - }, + mounted() {}, methods: { actionSheetCallback(index) { this.form.baoliu5 = this.actionSheetList[index].text; @@ -102,12 +101,13 @@ this.form.id = this.warlist.id this.form.objectid = this.warlist.objectid this.form.baoliu3 = this.vuex_user - -this.form.type = this.warlist.type - processingWarn(this.form).then((res) => { - console.log(res); - this.$emit('prosuccess', res.data.status); - }) + + this.form.type = this.warlist.type + if (this.vuex_is_login) { + processingWarn(this.form).then((res) => { + this.$emit('prosuccess', res.data.status); + }) + } } } } -- Gitblit v1.9.3