BUG 28045

This commit is contained in:
aixianling
2022-03-04 17:36:42 +08:00
parent 2f45563668
commit 6c7f59bd8d

View File

@@ -8,7 +8,7 @@
<span>{{ description.length || 0 }}/200</span> <span>{{ description.length || 0 }}/200</span>
</u-row> </u-row>
</div> </div>
<ai-back/> <AiBack/>
<u-button type="primary" @click="submit">提交</u-button> <u-button type="primary" @click="submit">提交</u-button>
</div> </div>
</template> </template>
@@ -17,7 +17,6 @@
export default { export default {
name: "approval", name: "approval",
components: {AiBack},
data() { data() {
return { return {
id: null, id: null,
@@ -35,9 +34,9 @@ export default {
description: this.description description: this.description
} }
}).then(res => { }).then(res => {
if (res.code == 0) { if (res?.code == 0) {
this.$u.toast("批示成功") this.$u.toast("批示成功")
uni.navigateBack() uni.navigateBack({})
} }
}) })
} }