Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -49,6 +49,38 @@
|
|||||||
- -
|
- -
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="调研模板" prop="model" class="add-form-item form-item-disabled">
|
||||||
|
<div v-if="form.modelList.length > 0">
|
||||||
|
<div v-for="(item, index) in form.modelList" class="fileClass" :key="index" style="margin-right: 5px;padding-left: 10px">
|
||||||
|
<span @click="clickButtonToUpload(item)">{{ item.name }}</span>
|
||||||
|
<el-button
|
||||||
|
size="small"
|
||||||
|
@click="updateFile(item)"
|
||||||
|
icon="el-icon-download"
|
||||||
|
style="height: 32px; margin-left: 5px;"
|
||||||
|
></el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
- -
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="相关附件" prop="model" class="add-form-item form-item-disabled">
|
||||||
|
<div v-if="form.fjList.length > 0">
|
||||||
|
<div v-for="(item, index) in form.fjList" class="fileClass" :key="index" style="margin-right: 5px;padding-left: 10px">
|
||||||
|
<span @click="clickButtonToUpload(item)">{{ item.name }}</span>
|
||||||
|
<el-button
|
||||||
|
size="small"
|
||||||
|
@click="updateFile(item)"
|
||||||
|
icon="el-icon-download"
|
||||||
|
style="height: 32px; margin-left: 5px;"
|
||||||
|
></el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
- -
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
<!-- <el-form-item label="批准意见" prop="textpz" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="批准意见" prop="textpz" class="add-form-item form-item-disabled">-->
|
||||||
<!-- <el-input-->
|
<!-- <el-input-->
|
||||||
<!-- v-model="form.textpz"-->
|
<!-- v-model="form.textpz"-->
|
||||||
@@ -206,7 +238,9 @@ export default {
|
|||||||
date: '', // 完成时间
|
date: '', // 完成时间
|
||||||
hzfileId: '',
|
hzfileId: '',
|
||||||
hzfileName: '',
|
hzfileName: '',
|
||||||
textpz: ''
|
textpz: '',
|
||||||
|
modelList:[],
|
||||||
|
fjList: []
|
||||||
},
|
},
|
||||||
formRules: {
|
formRules: {
|
||||||
textpz: [
|
textpz: [
|
||||||
@@ -224,6 +258,10 @@ export default {
|
|||||||
ProcessTitle
|
ProcessTitle
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
clickButtonToUpload(file) {
|
||||||
|
const attId = file.attId
|
||||||
|
this.$preview(attId)
|
||||||
|
},
|
||||||
foldForm() {
|
foldForm() {
|
||||||
this.foldFormFlag = !this.foldFormFlag
|
this.foldFormFlag = !this.foldFormFlag
|
||||||
},
|
},
|
||||||
@@ -237,6 +275,10 @@ export default {
|
|||||||
updateFile (fileId) {
|
updateFile (fileId) {
|
||||||
window.location.href = '/api/att/attFile/downloadFile?fileId=' + fileId
|
window.location.href = '/api/att/attFile/downloadFile?fileId=' + fileId
|
||||||
},
|
},
|
||||||
|
updateFile2 (item) {
|
||||||
|
let id = item.id
|
||||||
|
window.location.href = '/api/att/attFile/downloadFile?fileId=' + id
|
||||||
|
},
|
||||||
// 导入按钮 上传之前的钩子
|
// 导入按钮 上传之前的钩子
|
||||||
beginImportFile (file) {
|
beginImportFile (file) {
|
||||||
var filename = file.name
|
var filename = file.name
|
||||||
|
|||||||
@@ -22,6 +22,15 @@
|
|||||||
<el-form-item class="add-form-item form-item-disabled" label="项目名称" prop="projectName">
|
<el-form-item class="add-form-item form-item-disabled" label="项目名称" prop="projectName">
|
||||||
<el-input v-model="listForm.projectName" clearable disabled placeholder="请输入项目名称"></el-input>
|
<el-input v-model="listForm.projectName" clearable disabled placeholder="请输入项目名称"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="截止日期" prop="endTime" class="add-form-item form-item-disabled">
|
||||||
|
<el-date-picker
|
||||||
|
:picker-options="pickerOptions"
|
||||||
|
v-model="listForm.endTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择截止日期"
|
||||||
|
value-format="yyyy-MM-dd">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|||||||
@@ -36,6 +36,15 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="截止日期" prop="endTime" class="add-form-item form-item-disabled">
|
||||||
|
<el-date-picker
|
||||||
|
:picker-options="pickerOptions"
|
||||||
|
v-model="listForm.endTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择截止日期"
|
||||||
|
value-format="yyyy-MM-dd">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|||||||
@@ -36,6 +36,15 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="截止日期" prop="endTime" class="add-form-item form-item-disabled">
|
||||||
|
<el-date-picker
|
||||||
|
:picker-options="pickerOptions"
|
||||||
|
v-model="listForm.endTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择截止日期"
|
||||||
|
value-format="yyyy-MM-dd">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|||||||
@@ -123,6 +123,7 @@
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail,processCreateStand,saveTaskForPub,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,saveTaskForPub,changeAssigneeNew} from 'api/process'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -188,6 +189,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -235,6 +237,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -253,6 +256,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -147,6 +147,7 @@
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,changeAssigneeNew} from 'api/process'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -204,6 +205,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -292,6 +294,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -310,6 +313,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -114,6 +114,7 @@
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -167,6 +168,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -256,6 +258,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -274,6 +277,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -114,6 +114,7 @@
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -167,6 +168,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -256,6 +258,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -274,6 +277,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -114,6 +114,7 @@
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -167,6 +168,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -255,6 +257,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -273,6 +276,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -124,6 +124,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {startProcess, saveTaskFirst, completeTask, inboundLiaisonDetail} from '@/api/process.js'
|
import {startProcess, saveTaskFirst, completeTask, inboundLiaisonDetail} from '@/api/process.js'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzchStep2",
|
name: "phoneBzchStep2",
|
||||||
components: {
|
components: {
|
||||||
@@ -214,6 +215,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('退回成功')
|
this.$message.success('退回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isBack = false
|
this.isBack = false
|
||||||
@@ -242,6 +244,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -121,6 +121,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {startProcess, saveTaskFirst, completeTask, inboundLiaisonDetail} from '@/api/process.js'
|
import {startProcess, saveTaskFirst, completeTask, inboundLiaisonDetail} from '@/api/process.js'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzchStep4",
|
name: "phoneBzchStep4",
|
||||||
components: {
|
components: {
|
||||||
@@ -210,6 +211,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('退回成功')
|
this.$message.success('退回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isBack = false
|
this.isBack = false
|
||||||
@@ -238,6 +240,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -128,6 +128,7 @@
|
|||||||
import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzchStep6",
|
name: "phoneBzchStep6",
|
||||||
components: {
|
components: {
|
||||||
@@ -260,6 +261,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isBack = false
|
this.isBack = false
|
||||||
@@ -300,6 +302,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -163,6 +163,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {saveTaskFirst, completeTask, inboundLiaisonDetail} from '@/api/process.js'
|
import {saveTaskFirst, completeTask, inboundLiaisonDetail} from '@/api/process.js'
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzhhStep2",
|
name: "phoneBzhhStep2",
|
||||||
components: {
|
components: {
|
||||||
@@ -283,6 +284,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('退回成功')
|
this.$message.success('退回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isBack = false
|
this.isBack = false
|
||||||
@@ -307,6 +309,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -128,6 +128,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import { completeTask, inboundLiaisonDetail } from "@/api/process.js"
|
import { completeTask, inboundLiaisonDetail } from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzrhStep2",
|
name: "phoneBzrhStep2",
|
||||||
components: {
|
components: {
|
||||||
@@ -238,6 +239,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('退回成功')
|
this.$message.success('退回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isBack = false
|
this.isBack = false
|
||||||
@@ -265,6 +267,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -134,6 +134,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import { completeTask, inboundLiaisonDetail } from "@/api/process.js"
|
import { completeTask, inboundLiaisonDetail } from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzrhStep4",
|
name: "phoneBzrhStep4",
|
||||||
components: {
|
components: {
|
||||||
@@ -251,6 +252,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('退回成功')
|
this.$message.success('退回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isBack = false
|
this.isBack = false
|
||||||
@@ -280,6 +282,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -147,6 +147,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import { completeTask, inboundLiaisonDetail } from "@/api/process.js"
|
import { completeTask, inboundLiaisonDetail } from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzrhStep6",
|
name: "phoneBzrhStep6",
|
||||||
components: {
|
components: {
|
||||||
@@ -269,6 +270,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isBack = false
|
this.isBack = false
|
||||||
@@ -304,6 +306,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -266,6 +266,7 @@ import ProcessFooter from "../../components/ProcessFooter";
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzjdStep4",
|
name: "phoneBzjdStep4",
|
||||||
@@ -338,6 +339,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -414,6 +416,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -432,6 +435,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -263,6 +263,7 @@ import ProcessHeaderPhone from "../../components/ProcessHeaderPhone";
|
|||||||
import ProcessFooter from "../../components/ProcessFooter";
|
import ProcessFooter from "../../components/ProcessFooter";
|
||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -336,6 +337,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -412,6 +414,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -430,6 +433,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -261,6 +261,7 @@ import ProcessHeaderPhone from "../../components/ProcessHeaderPhone";
|
|||||||
import ProcessFooter from "../../components/ProcessFooter";
|
import ProcessFooter from "../../components/ProcessFooter";
|
||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -334,6 +335,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -410,6 +412,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -428,6 +431,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -116,6 +116,7 @@ import ProcessFooter from '../../components/ProcessFooter'
|
|||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -224,6 +225,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -248,6 +250,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -269,6 +272,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -219,6 +219,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzpgStep6",
|
name: "phoneBzpgStep6",
|
||||||
@@ -335,6 +336,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -377,6 +379,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -488,6 +491,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -511,6 +515,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -226,6 +226,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzpgStep7",
|
name: "phoneBzpgStep7",
|
||||||
@@ -348,6 +349,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -390,6 +392,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -502,6 +505,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -226,6 +226,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzpgStep8",
|
name: "phoneBzpgStep8",
|
||||||
@@ -347,6 +348,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -389,6 +391,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -501,6 +504,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessFooter from "../../components/ProcessFooter";
|
import ProcessFooter from "../../components/ProcessFooter";
|
||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzqdfbStep4",
|
name: "phoneBzqdfbStep4",
|
||||||
@@ -279,6 +280,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -414,6 +416,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.saveLoading = false
|
this.saveLoading = false
|
||||||
@@ -436,6 +439,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -444,6 +444,7 @@ import CusTomDataPickerGroup
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -660,6 +661,7 @@ export default {
|
|||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
this.queryProcess()
|
this.queryProcess()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path: '/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path: '/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -910,6 +912,7 @@ export default {
|
|||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
this.formTongGuo.commentText = "";
|
this.formTongGuo.commentText = "";
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({ path: "/processCenter?tabsName=ProcessCenter" });
|
this.$router.push({ path: "/processCenter?tabsName=ProcessCenter" });
|
||||||
} else {
|
} else {
|
||||||
this.processCreateStand(json);
|
this.processCreateStand(json);
|
||||||
@@ -930,6 +933,7 @@ export default {
|
|||||||
if (res.result === '操作成功' || res.data === '入库成功') {
|
if (res.result === '操作成功' || res.data === '入库成功') {
|
||||||
this.$message.success(res.data)
|
this.$message.success(res.data)
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'ProcessCenter'
|
name: 'ProcessCenter'
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -108,6 +108,7 @@
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, saveTaskForPub, changeAssigneeNew} from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, saveTaskForPub, changeAssigneeNew} from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzzqyjStep2",
|
name: "phoneBzzqyjStep2",
|
||||||
@@ -179,6 +180,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -273,6 +275,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -181,6 +181,7 @@
|
|||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail, processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail, processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzzqyjStep4-1",
|
name: "phoneBzzqyjStep4-1",
|
||||||
@@ -281,6 +282,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -331,6 +333,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -352,6 +355,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -169,6 +169,7 @@
|
|||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail, processCreateStand,changeAssigneeNew,getBusStandFileByAttId} from 'api/process'
|
import {inboundLiaisonDetail, processCreateStand,changeAssigneeNew,getBusStandFileByAttId} from 'api/process'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzzqyjStep4-2",
|
name: "phoneBzzqyjStep4-2",
|
||||||
@@ -272,6 +273,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -318,6 +320,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -335,6 +338,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -205,6 +205,7 @@
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzzqyjStep6",
|
name: "phoneBzzqyjStep6",
|
||||||
@@ -328,6 +329,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -389,6 +391,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -411,6 +414,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("驳回成功");
|
this.$message.success("驳回成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -187,6 +187,7 @@
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew,getBusStandFileByAttId } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew,getBusStandFileByAttId } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzzqyjStep7",
|
name: "phoneBzzqyjStep7",
|
||||||
@@ -283,6 +284,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -338,6 +340,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -356,6 +359,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -188,6 +188,7 @@
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzzqyjStep8",
|
name: "phoneBzzqyjStep8",
|
||||||
@@ -284,6 +285,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -341,6 +343,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -359,6 +362,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -188,6 +188,7 @@
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew,getBusStandFileByAttId } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew,getBusStandFileByAttId } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneBzzqyjStep9",
|
name: "phoneBzzqyjStep9",
|
||||||
@@ -299,6 +300,7 @@
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -354,6 +356,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -372,6 +375,7 @@
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("驳回成功");
|
this.$message.success("驳回成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -111,6 +111,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { inboundLiaisonDetail } from "api/process";
|
import { inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneCywbbzzxdStep2",
|
name: "phoneCywbbzzxdStep2",
|
||||||
@@ -237,6 +238,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -211,6 +211,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneCywbbzzxdStep4",
|
name: "phoneCywbbzzxdStep4",
|
||||||
@@ -332,6 +333,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -369,6 +371,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -399,6 +402,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -211,6 +211,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneCywbbzzxdStep5",
|
name: "phoneCywbbzzxdStep5",
|
||||||
@@ -332,6 +333,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -369,6 +371,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -399,6 +402,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -211,6 +211,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneCywbbzzxdStep6",
|
name: "phoneCywbbzzxdStep6",
|
||||||
@@ -332,6 +333,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -369,6 +371,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -399,6 +402,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -257,6 +257,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneJrbzhxhStep3",
|
name: "phoneJrbzhxhStep3",
|
||||||
@@ -347,6 +348,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -502,6 +504,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false;
|
this.turnLoading = false;
|
||||||
this.$message.success("调整成功");
|
this.$message.success("调整成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message);
|
this.$message.warning(res.message);
|
||||||
@@ -527,6 +530,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -555,6 +559,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -258,6 +258,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneJrbzhxhStep4",
|
name: "phoneJrbzhxhStep4",
|
||||||
@@ -348,6 +349,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -488,6 +490,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -513,6 +516,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -538,6 +542,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -172,6 +172,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -615,6 +616,7 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.submitLoading = false
|
this.submitLoading = false
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -714,6 +716,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -85,6 +85,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbfzStep2",
|
name: "phoneQbfzStep2",
|
||||||
@@ -197,6 +198,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -219,6 +221,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -245,6 +248,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -117,6 +117,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbfzStep5",
|
name: "phoneQbfzStep5",
|
||||||
@@ -242,6 +243,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -267,6 +269,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -304,6 +307,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -117,6 +117,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbfzStep5",
|
name: "phoneQbfzStep5",
|
||||||
@@ -242,6 +243,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -265,6 +267,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -298,6 +301,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -117,6 +117,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbfzStep7",
|
name: "phoneQbfzStep7",
|
||||||
@@ -242,6 +243,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -267,6 +269,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -304,6 +307,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -250,6 +250,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -908,6 +909,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -1932,6 +1934,7 @@ export default {
|
|||||||
// this.processCreateLaws(json)
|
// this.processCreateLaws(json)
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -250,6 +250,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -908,6 +909,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -1932,6 +1934,7 @@ export default {
|
|||||||
// this.processCreateLaws(json)
|
// this.processCreateLaws(json)
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -247,6 +247,7 @@ import CusTomDataPickerGroup
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -906,6 +907,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -1930,6 +1932,7 @@ export default {
|
|||||||
// this.processCreateLaws(json)
|
// this.processCreateLaws(json)
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -250,6 +250,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -1971,6 +1972,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -2023,6 +2025,7 @@ export default {
|
|||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
this.saveLoading = false
|
this.saveLoading = false
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
// if(this.formTongGuo.approvalOpinion === '1'){
|
// if(this.formTongGuo.approvalOpinion === '1'){
|
||||||
// this.$message.warning("驳回成功")
|
// this.$message.warning("驳回成功")
|
||||||
|
|||||||
@@ -250,6 +250,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -908,6 +909,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -1932,6 +1934,7 @@ export default {
|
|||||||
// this.processCreateLaws(json)
|
// this.processCreateLaws(json)
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -258,6 +258,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -907,6 +908,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -1930,6 +1932,7 @@ export default {
|
|||||||
// this.processCreateLaws(json)
|
// this.processCreateLaws(json)
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -258,6 +258,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -906,6 +907,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -1929,6 +1931,7 @@ export default {
|
|||||||
// this.processCreateLaws(json)
|
// this.processCreateLaws(json)
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -172,6 +172,7 @@ import CusTomDataPickerGroup
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -1252,6 +1253,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -2276,6 +2278,7 @@ export default {
|
|||||||
// this.processCreateLaws(json)
|
// this.processCreateLaws(json)
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -179,6 +179,7 @@ import Vue from 'vue';
|
|||||||
import { Form } from 'vant';
|
import { Form } from 'vant';
|
||||||
import { Field } from 'vant';
|
import { Field } from 'vant';
|
||||||
import { getEvaluationIndex } from "api/businessApi";
|
import { getEvaluationIndex } from "api/businessApi";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
Vue.use(Form);
|
Vue.use(Form);
|
||||||
Vue.use(Field);
|
Vue.use(Field);
|
||||||
@@ -936,6 +937,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -1969,6 +1971,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
this.saveLoading = false
|
this.saveLoading = false
|
||||||
|
hwh5.close()
|
||||||
// 流程提交之后,应该流转至待办任务页面
|
// 流程提交之后,应该流转至待办任务页面
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbzxdjhgkStep2",
|
name: "phoneQbzxdjhgkStep2",
|
||||||
@@ -254,6 +255,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -290,6 +292,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -313,6 +316,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbzxdjhgkStep3",
|
name: "phoneQbzxdjhgkStep3",
|
||||||
@@ -254,6 +255,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -290,6 +292,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -313,6 +316,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbzxdjhgkStep4",
|
name: "phoneQbzxdjhgkStep4",
|
||||||
@@ -253,6 +254,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -289,6 +291,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -312,6 +315,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessTitle from "process/components/ProcessTitle";
|
import ProcessTitle from "process/components/ProcessTitle";
|
||||||
import ProcessFooter from "process/components/ProcessFooter";
|
import ProcessFooter from "process/components/ProcessFooter";
|
||||||
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew,inboundLiaisonDetail } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneQbzxdjhgkStep5",
|
name: "phoneQbzxdjhgkStep5",
|
||||||
@@ -253,6 +254,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -293,6 +295,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -316,6 +319,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message)
|
this.$message.success(res.message)
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
|
|||||||
@@ -106,6 +106,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneWbsmStep3",
|
name: "phoneWbsmStep3",
|
||||||
@@ -201,6 +202,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -313,6 +315,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -340,6 +343,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
@@ -366,6 +370,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -106,6 +106,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneWbsmStep4",
|
name: "phoneWbsmStep4",
|
||||||
@@ -201,6 +202,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -313,6 +315,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -340,6 +343,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
@@ -366,6 +370,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -106,6 +106,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneWbsmStep5",
|
name: "phoneWbsmStep5",
|
||||||
@@ -201,6 +202,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -313,6 +315,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -340,6 +343,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
@@ -366,6 +370,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -114,6 +114,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
import {completeTask, inboundLiaisonDetail, saveTaskForPub, changeAssigneeNew} from "@/api/process.js"
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
export default {
|
export default {
|
||||||
name: "phoneWfhxzgStep2",
|
name: "phoneWfhxzgStep2",
|
||||||
data() {
|
data() {
|
||||||
@@ -300,6 +301,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if(res.success === true) {
|
if(res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -350,6 +352,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if(res.success === true) {
|
if(res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -370,6 +373,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
|
|||||||
@@ -117,6 +117,8 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {changeAssigneeNew, completeTask, inboundLiaisonDetail, saveTaskForPub} from "@/api/process.js";
|
import {changeAssigneeNew, completeTask, inboundLiaisonDetail, saveTaskForPub} from "@/api/process.js";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneWfhxzgStep3",
|
name: "phoneWfhxzgStep3",
|
||||||
data() {
|
data() {
|
||||||
@@ -328,6 +330,7 @@ export default {
|
|||||||
completeTask(params).then(res => {
|
completeTask(params).then(res => {
|
||||||
if (res.success === true) {
|
if (res.success === true) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -348,6 +351,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: "processCenter"
|
name: "processCenter"
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -104,6 +104,7 @@ import ProcessHeaderPhone from '../../components/ProcessHeaderPhone'
|
|||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail, changeAssigneeNew} from "@/api/process";
|
import {inboundLiaisonDetail, changeAssigneeNew} from "@/api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneWfhxzgStep5",
|
name: "phoneWfhxzgStep5",
|
||||||
@@ -226,6 +227,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -248,6 +250,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -270,6 +273,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('驳回成功')
|
this.$message.success('驳回成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
this.backLoading = false
|
this.backLoading = false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -205,6 +205,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessFooter from "../../components/ProcessFooter";
|
import ProcessFooter from "../../components/ProcessFooter";
|
||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, queryDetail ,changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, queryDetail ,changeAssigneeNew } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneXmpgStep4",
|
name: "phoneXmpgStep4",
|
||||||
@@ -280,6 +281,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -322,6 +324,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -456,6 +459,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
@@ -477,6 +481,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -203,6 +203,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessFooter from "../../components/ProcessFooter";
|
import ProcessFooter from "../../components/ProcessFooter";
|
||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, queryDetail ,changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, queryDetail ,changeAssigneeNew } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneXmpgStep5",
|
name: "phoneXmpgStep5",
|
||||||
@@ -278,6 +279,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -320,6 +322,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -454,6 +457,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
@@ -475,6 +479,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -222,6 +222,7 @@ import ProcessTitle from '../../components/ProcessTitle'
|
|||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew, execTask, saveTaskForPub } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import ProcessHeader from "process/components/ProcessHeader";
|
import ProcessHeader from "process/components/ProcessHeader";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneXmqdqrStep5",
|
name: "phoneXmqdqrStep5",
|
||||||
@@ -333,6 +334,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
this.processNum()
|
this.processNum()
|
||||||
} else {
|
} else {
|
||||||
@@ -375,6 +377,7 @@ export default {
|
|||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.turnLoading = false
|
this.turnLoading = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter")
|
this.$router.push("/processCenter")
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -502,6 +505,7 @@ export default {
|
|||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.sign && res.sign === '0') {
|
if (res.sign && res.sign === '0') {
|
||||||
this.$message.success('接收成功')
|
this.$message.success('接收成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -551,6 +555,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
@@ -573,6 +578,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ import ProcessFooter from '../../components/ProcessFooter'
|
|||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
import {inboundLiaisonDetail, processCreateStand,changeAssigneeNew} from 'api/process'
|
import {inboundLiaisonDetail, processCreateStand,changeAssigneeNew} from 'api/process'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneZczqyjStep4",
|
name: "phoneZczqyjStep4",
|
||||||
@@ -225,6 +225,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -270,6 +271,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
@@ -288,6 +290,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success('提交成功')
|
this.$message.success('提交成功')
|
||||||
|
hwh5.close()
|
||||||
this.$router.push('/processCenter')
|
this.$router.push('/processCenter')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -235,6 +235,7 @@ import ProcessFooter from "../../components/ProcessFooter";
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneZczqyjStep5",
|
name: "phoneZczqyjStep5",
|
||||||
@@ -351,6 +352,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -426,6 +428,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -445,6 +448,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("驳回成功");
|
this.$message.success("驳回成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -169,6 +169,7 @@ import ProcessFooter from "../../components/ProcessFooter";
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneZczqyjStep6",
|
name: "phoneZczqyjStep6",
|
||||||
@@ -233,6 +234,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -312,6 +314,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -331,6 +334,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("驳回成功");
|
this.$message.success("驳回成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -168,6 +168,7 @@ import ProcessHeader from "../../components/ProcessHeader";
|
|||||||
import ProcessFooter from "../../components/ProcessFooter";
|
import ProcessFooter from "../../components/ProcessFooter";
|
||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
|
|
||||||
@@ -234,6 +235,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -313,6 +315,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -332,6 +335,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("驳回成功");
|
this.$message.success("驳回成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -169,6 +169,7 @@ import ProcessFooter from "../../components/ProcessFooter";
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneZczqyjStep8",
|
name: "phoneZczqyjStep8",
|
||||||
@@ -233,6 +234,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -312,6 +314,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -331,6 +334,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("驳回成功");
|
this.$message.success("驳回成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
@@ -169,6 +169,7 @@ import ProcessFooter from "../../components/ProcessFooter";
|
|||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
import { inboundLiaisonDetail, processCreateStand, changeAssigneeNew } from "api/process";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import hwh5 from '@/api/hwh5-cloudonline.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "phoneZczqyjStep9",
|
name: "phoneZczqyjStep9",
|
||||||
@@ -233,6 +234,7 @@ export default {
|
|||||||
this.drawerModal = false
|
this.drawerModal = false
|
||||||
this.$message.success('调整成功')
|
this.$message.success('调整成功')
|
||||||
this.processNum()
|
this.processNum()
|
||||||
|
hwh5.close()
|
||||||
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.message)
|
this.$message.warning(res.message)
|
||||||
@@ -312,6 +314,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("提交成功");
|
this.$message.success("提交成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
@@ -331,6 +334,7 @@ export default {
|
|||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success("驳回成功");
|
this.$message.success("驳回成功");
|
||||||
|
hwh5.close()
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user