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