This commit is contained in:
haomingming
2023-03-14 14:09:21 +08:00
parent 14bcbf1673
commit 959bfc61b1
79 changed files with 1601 additions and 438 deletions
+3 -3
View File
@@ -28,9 +28,9 @@ Component({
type: String,
value: '32rpx',
},
has_error: {
type: Boolean,
value: false,
has_error_content: {
type: String,
value: "",
},
fileList:{
type: Array,
+2 -2
View File
@@ -14,8 +14,8 @@
<van-image width="100" height="100" src="https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com/applet/doctor/static/images/yishi/upload_button.png" />
</van-uploader>
</view>
<view class="error_box" wx:if="{{ has_error }}" >
<view class="error_box" wx:if="{{ has_error_content != '' }}" >
<t-icon color="red" name="close-circle-filled" size="48rpx" data-name="close-circle-filled" />
<text class="error_msg">拒绝原因照片不清晰</text>
<text class="error_msg">{{ has_error_content }}</text>
</view>
</view>