apply-clients 3.5.6-2 → 3.5.6-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -257,6 +257,22 @@ export default {
|
|
|
257
257
|
if (res1.status != 200){
|
|
258
258
|
this.$showMessage('网络异常,图片上传失败,请检查图片后重新上传!')
|
|
259
259
|
return
|
|
260
|
+
}else{
|
|
261
|
+
let params={
|
|
262
|
+
imgids:res1.id,
|
|
263
|
+
blodid:this.selectdata.f_process_id,
|
|
264
|
+
username:this.selectdata.username,
|
|
265
|
+
fremarks:'手机拍照',
|
|
266
|
+
defname:this.selectdata.defname,
|
|
267
|
+
type:this.selectdata.type
|
|
268
|
+
}
|
|
269
|
+
let http2 = new HttpResetClass()
|
|
270
|
+
let restp2 = await http2.load(
|
|
271
|
+
'POST',
|
|
272
|
+
`${this.$androidUtil.getProxyUrl()}/rs/logic/applyupdateFilerows`,
|
|
273
|
+
{data: params},
|
|
274
|
+
{resolveMsg: null, rejectMsg: '报建数据查询失败!!!'}
|
|
275
|
+
)
|
|
260
276
|
}
|
|
261
277
|
let res = await this.$resetpost(
|
|
262
278
|
// `rs/logic/ApplyProductService`,
|