n20-common-lib 2.20.13 → 2.20.15
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
|
@@ -509,6 +509,7 @@ export default {
|
|
|
509
509
|
memberName: item.memberName, // 审批人单位
|
|
510
510
|
subProcInitId: item.subProcInitId, // 子流程id
|
|
511
511
|
appOrPc: item.appOrPc, // 终端标识 1 PC 2 APP
|
|
512
|
+
outTitle: item.outTitle, // 外部审批标题
|
|
512
513
|
showConnect: item.showConnect, // 是否显示查看详情
|
|
513
514
|
_details: item,
|
|
514
515
|
deptName: item.deptName, // 部门
|
package/src/utils/axios.js
CHANGED
|
@@ -123,8 +123,6 @@ function errorFn(status, msg, noMsg, isErr, res) {
|
|
|
123
123
|
|
|
124
124
|
axios.interceptors.response.use(
|
|
125
125
|
(res) => {
|
|
126
|
-
res.status = 906
|
|
127
|
-
console.log(res, 'res')
|
|
128
126
|
let status = (res.data && res.data.code) || res.status
|
|
129
127
|
if (Number(status) === 200) {
|
|
130
128
|
return res
|