|
@ -181,6 +181,7 @@ |
|
|
<view class="mt24"> |
|
|
<view class="mt24"> |
|
|
<textarea cols="30" rows="10" |
|
|
<textarea cols="30" rows="10" |
|
|
placeholder="请输入内容" |
|
|
placeholder="请输入内容" |
|
|
|
|
|
v-model="content" |
|
|
:style="{color:'#999999',fontSize:'30rpx',backgroundColor:'#F5F5F5',borderRadius:'16rpx',width:'681rpx',height:'180rpx'}" |
|
|
:style="{color:'#999999',fontSize:'30rpx',backgroundColor:'#F5F5F5',borderRadius:'16rpx',width:'681rpx',height:'180rpx'}" |
|
|
class="pd20 box-size" :disabled="isRead"></textarea> |
|
|
class="pd20 box-size" :disabled="isRead"></textarea> |
|
|
</view> |
|
|
</view> |
|
@ -235,6 +236,7 @@ |
|
|
const itemOrderID = ref(0) |
|
|
const itemOrderID = ref(0) |
|
|
const serviceId = ref(0) |
|
|
const serviceId = ref(0) |
|
|
const isRead = ref(false) |
|
|
const isRead = ref(false) |
|
|
|
|
|
const content = ref('') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const fileList = reactive({ |
|
|
const fileList = reactive({ |
|
@ -309,6 +311,10 @@ |
|
|
!fileList.urinalB || fileList.urinalB.length < 1) { |
|
|
!fileList.urinalB || fileList.urinalB.length < 1) { |
|
|
return msg('请上传猫砂盆、尿盆照片') |
|
|
return msg('请上传猫砂盆、尿盆照片') |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(!content.value){ |
|
|
|
|
|
return msg('请填写补充信息') |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
saveDraft(true) |
|
|
saveDraft(true) |
|
|
} |
|
|
} |
|
|