|
@@ -81,7 +81,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 联系信息表单(服务单/受理单类型) -->
|
|
<!-- 联系信息表单(服务单/受理单类型) -->
|
|
|
- <view v-if="routeType === 'FWD'" class="form-section">
|
|
|
|
|
|
|
+ <!-- <view v-if="routeType === 'FWD'" class="form-section">
|
|
|
<view class="form-item">
|
|
<view class="form-item">
|
|
|
<text class="form-label">接收人手机号:</text>
|
|
<text class="form-label">接收人手机号:</text>
|
|
|
<input
|
|
<input
|
|
@@ -92,7 +92,7 @@
|
|
|
placeholder="请输入接收人手机号"
|
|
placeholder="请输入接收人手机号"
|
|
|
/>
|
|
/>
|
|
|
</view>
|
|
</view>
|
|
|
- </view>
|
|
|
|
|
|
|
+ </view> -->
|
|
|
</scroll-view>
|
|
</scroll-view>
|
|
|
|
|
|
|
|
<!-- 底部按钮 -->
|
|
<!-- 底部按钮 -->
|
|
@@ -143,7 +143,7 @@
|
|
|
placeholder="请输入接收人手机号"
|
|
placeholder="请输入接收人手机号"
|
|
|
/>
|
|
/>
|
|
|
</view>
|
|
</view>
|
|
|
- <view v-if="routeType !== 'ZXXX'" class="input-row">
|
|
|
|
|
|
|
+ <!-- <view v-if="routeType !== 'ZXXX'" class="input-row">
|
|
|
<text class="row-label">电子邮箱:</text>
|
|
<text class="row-label">电子邮箱:</text>
|
|
|
<input
|
|
<input
|
|
|
class="row-input"
|
|
class="row-input"
|
|
@@ -151,7 +151,7 @@
|
|
|
type="text"
|
|
type="text"
|
|
|
placeholder="请输入电子邮箱(选填)"
|
|
placeholder="请输入电子邮箱(选填)"
|
|
|
/>
|
|
/>
|
|
|
- </view>
|
|
|
|
|
|
|
+ </view> -->
|
|
|
<view class="popup-actions">
|
|
<view class="popup-actions">
|
|
|
<button class="action-btn cancel-btn" @click="closeInputPopup">取消</button>
|
|
<button class="action-btn cancel-btn" @click="closeInputPopup">取消</button>
|
|
|
<button class="action-btn confirm-btn" @click="handlePushOrderSubmit">确定</button>
|
|
<button class="action-btn confirm-btn" @click="handlePushOrderSubmit">确定</button>
|
|
@@ -550,7 +550,7 @@ const submitConfirm = async () => {
|
|
|
let result: any
|
|
let result: any
|
|
|
if (routeType.value === 'FWD') {
|
|
if (routeType.value === 'FWD') {
|
|
|
params.receiverPhone = fwdInputPhone.value
|
|
params.receiverPhone = fwdInputPhone.value
|
|
|
- params.orderReportId = orderReportId.value
|
|
|
|
|
|
|
+ params.orderItemId = orderReportId.value
|
|
|
result = await requestFunc(SignFuncName.SubmitSign, equipType, params)
|
|
result = await requestFunc(SignFuncName.SubmitSign, equipType, params)
|
|
|
} else if (routeType.value === 'AQJC') {
|
|
} else if (routeType.value === 'AQJC') {
|
|
|
params.securityCheckId = securityCheckId.value
|
|
params.securityCheckId = securityCheckId.value
|
|
@@ -561,6 +561,8 @@ const submitConfirm = async () => {
|
|
|
params: reportData.value,
|
|
params: reportData.value,
|
|
|
instId: reportDataInstId.value,
|
|
instId: reportDataInstId.value,
|
|
|
})
|
|
})
|
|
|
|
|
+ } else {
|
|
|
|
|
+ result = await requestFunc(SignFuncName.SubmitSign, equipType, params)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if (result?.code === 0) {
|
|
if (result?.code === 0) {
|
|
@@ -615,10 +617,10 @@ const handleActionSelect = (item: any) => {
|
|
|
let url = ''
|
|
let url = ''
|
|
|
if (routeType.value === 'FWD') {
|
|
if (routeType.value === 'FWD') {
|
|
|
url = `/pages/editor/serviceOrderEditor?templateId=${templateId.value}&refId=${refId.value}`
|
|
url = `/pages/editor/serviceOrderEditor?templateId=${templateId.value}&refId=${refId.value}`
|
|
|
- } else if (routeType.value === 'JYRS') {
|
|
|
|
|
- uni.showToast({ title: '更新检验结果告知表单暂未实现', icon: 'none' })
|
|
|
|
|
|
|
+ } else if (routeType.value === 'AQJC') {
|
|
|
|
|
+ url = `/pages/editor/securityCheckEditor?templateId=${templateId.value}&orderId=${orderId.value}&securityCheckId=${refId.value}&mode=edit`
|
|
|
} else {
|
|
} else {
|
|
|
- uni.showToast({ title: '系统错误,不能更新', icon: 'none' })
|
|
|
|
|
|
|
+ uni.showToast({ title: '不支持更新操作', icon: 'none' })
|
|
|
}
|
|
}
|
|
|
uni.navigateTo({ url })
|
|
uni.navigateTo({ url })
|
|
|
}
|
|
}
|