Commit 1981afa7 authored by Damon's avatar Damon

fix: 改约-必须填写备注

parent 64721661
...@@ -62,12 +62,20 @@ export default { ...@@ -62,12 +62,20 @@ export default {
let self = this let self = this
if (!self.orderId) { if (!self.orderId) {
uni.showToast({ uni.showToast({
icon: error, icon: 'none',
title: '工单ID不能为空', title: '工单ID不能为空',
}) })
return false return false
} }
if (!submitData.remark) {
uni.showToast({
icon: 'none',
title: '请补充详细说明',
})
return
}
self.submiting = true self.submiting = true
getApp().track('order_feedback_submitForm', { getApp().track('order_feedback_submitForm', {
reasonType: submitData.reasonType, reasonType: submitData.reasonType,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment