Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
yuezhihang
2022-07-04 10:26:46 +08:00
89 changed files with 2335 additions and 152 deletions
+8
View File
@@ -93,6 +93,14 @@ export function processCreateBuss (data) {
}) })
} }
export function verifySnExists (data) {
return axios({
url: '/api/sarBussStandSn/sar-buss-stand-sn/verifySnExists',
method: 'get',
params: data
})
}
export function processCreatePlan (data) { export function processCreatePlan (data) {
return axios({ return axios({
url: '/api/lawss/actSarItemsPlan/processCreatePlan', url: '/api/lawss/actSarItemsPlan/processCreatePlan',
+1 -7
View File
@@ -91,13 +91,7 @@ export default {
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
if(this.total && this.total > 10){ this.$router.push({path:'/release2'})
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
@@ -0,0 +1,180 @@
<!-- 标准发布 -->
<template>
<div class="release">
<!-- <ul>-->
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
<!-- <div style="height: 18px;">-->
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
<!-- </div>-->
<!-- </li>-->
<!-- </ul>-->
<el-table
ref="selection"
:data="standardReleaseList"
tooltip-effect="dark"
border
style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
<el-table-column
label="序号"
type="index"
align="center"
width="55">
</el-table-column>
<el-table-column
label="标准编号">
<template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template>
</el-table-column>
<el-table-column
prop="standName"
label="标准名称">
<template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
</template>
</el-table-column>
<el-table-column
width="120"
label="发布时间">
<template slot-scope="scope">
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
</template>
</el-table-column>
</el-table>
<loading :loading="loading">加载中...</loading>
<pagination
style="position: static;"
:page="page"
:total="total"
@pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination>
</div>
</template>
<script>
export default {
name: 'Release',
components: {},
mixins: [],
data() {
return {
loading: false,
pageVerify: false,
page: 1,
pageSize: 10,
total: 0,
putTime: '',
standardReleaseList: [], //标准发布数据
}
},
computed: {},
watch: {},
mounted() {
this.getDate()
this.getAdvice()
// this.addDate()
},
methods: {
pageChange(page) {
this.page = page
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
},
// 分页每页显示数改变后方法
pageSizeChange(pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
// 此处需要调用接口,修改个人配置
},
togo () {
if(this.total && this.total > 10){
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
},
// 点击查看
handlePreview (item) {
let routeUrl = this.$router.resolve({
name: 'OtherStandardDetails',
params: {
id: item.standardId,
pageType: item.resourceType + '_STAND'
}
})
window.open(routeUrl.href, '_blank')
},
//截取时间
getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : ''
},
//获取数据
getAdvice() {
this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", {
messageType: 'GNWBZFG',
page: this.page,
pageSize: this.pageSize
}, {
_this: this,loading: 'loading'
}, res => {
this.standardReleaseList = res.data.records
this.total = res.data.total
this.loading = false
}, e => {
this.loading = false
this.standardReleaseList = []
this.total = 0
})
},
},
}
</script>
<style lang="less" scoped>
.release {
/deep/.el-table th > .cell {
font-size: 15px;
}
/deep/.el-table td > .cell{
font-size: 13px;
}
/deep/.more {
position: absolute;
right: 0;
bottom: 2px;
font-size: 15px;
float: right;
color: #4788c0;
&:hover {
color: #3a8ee6;
cursor: pointer;
}
}
width: 100%;
height: 100%;
position: relative;
background-color: #FFF;
background-size: 100% 100%;
.time-title {
margin: 15px;
.time {
float: right;
color:#333333;
}
a {
color: #ffffff;
&:hover {
color: #e9c851;
cursor:pointer;
text-decoration: underline;
}
}
}
}
</style>
@@ -91,13 +91,7 @@ export default {
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
if(this.total && this.total > 10){ this.$router.push({path:'/releaseBuss2'})
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
@@ -0,0 +1,180 @@
<!-- 企标发布 -->
<template>
<div class="release">
<!-- <ul>-->
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
<!-- <div style="height: 18px;">-->
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
<!-- </div>-->
<!-- </li>-->
<!-- </ul>-->
<el-table
ref="selection"
:data="standardReleaseList"
tooltip-effect="dark"
border
style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
<el-table-column
label="序号"
type="index"
align="center"
width="55">
</el-table-column>
<el-table-column
label="标准编号">
<template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template>
</el-table-column>
<el-table-column
prop="standName"
label="标准名称">
<template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
</template>
</el-table-column>
<el-table-column
width="120"
label="发布时间">
<template slot-scope="scope">
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
</template>
</el-table-column>
</el-table>
<loading :loading="loading">加载中...</loading>
<pagination
style="position: static;"
:page="page"
:total="total"
@pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination>
</div>
</template>
<script>
export default {
name: 'ReleaseBuss2',
components: {},
mixins: [],
data() {
return {
loading: false,
pageVerify: false,
page: 1,
pageSize: 10,
total: 0,
putTime: '',
standardReleaseList: [], //标准发布数据
}
},
computed: {},
watch: {},
mounted() {
this.getDate()
this.getAdvice()
// this.addDate()
},
methods: {
pageChange(page) {
this.page = page
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
},
// 分页每页显示数改变后方法
pageSizeChange(pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
// 此处需要调用接口,修改个人配置
},
togo () {
if(this.total && this.total > 10){
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
},
// 点击查看
handlePreview (item) {
let routeUrl = this.$router.resolve({
name: 'OtherBussStandardDetails',
params: {
id: item.standardId,
pageType: 'BUSINESS_STAND'
}
})
window.open(routeUrl.href, '_blank')
},
//截取时间
getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : ''
},
//获取数据
getAdvice() {
this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", {
messageType: 'QYBZFB',
page: this.page,
pageSize: this.pageSize
}, {
_this: this,loading: 'loading'
}, res => {
this.standardReleaseList = res.data.records
this.total = res.data.total
this.loading = false
}, e => {
this.loading = false
this.standardReleaseList = []
this.total = 0
})
},
},
}
</script>
<style lang="less" scoped>
.release {
/deep/.el-table th > .cell {
font-size: 15px;
}
/deep/.el-table td > .cell{
font-size: 13px;
}
/deep/.more {
position: absolute;
right: 0;
bottom: 2px;
font-size: 15px;
float: right;
color: #4788c0;
&:hover {
color: #3a8ee6;
cursor: pointer;
}
}
width: 100%;
height: 100%;
position: relative;
background-color: #FFF;
background-size: 100% 100%;
.time-title {
margin: 15px;
.time {
float: right;
color:#333333;
}
a {
color: #ffffff;
&:hover {
color: #e9c851;
cursor:pointer;
text-decoration: underline;
}
}
}
}
</style>
@@ -91,13 +91,7 @@ export default {
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
if(this.total && this.total > 10){ this.$router.push({path:'/releaseQA2'})
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
@@ -0,0 +1,185 @@
<!-- 企标发布 -->
<template>
<div class="release">
<!-- <ul>-->
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
<!-- <div style="height: 18px;">-->
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
<!-- </div>-->
<!-- </li>-->
<!-- </ul>-->
<el-table
ref="selection"
:data="standardReleaseList"
tooltip-effect="dark"
border
style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
<el-table-column
label="分类"
align="center"
width="80">
</el-table-column>
<el-table-column
label="问题描述">
<template slot-scope="scope">
<!-- <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>-->
</template>
</el-table-column>
<el-table-column
prop="standName"
label="提问人"
width="100">
<template slot-scope="scope">
<!-- <span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>-->
</template>
</el-table-column>
<el-table-column
width="120"
label="提问时间">
<template slot-scope="scope">
<!-- <span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>-->
</template>
</el-table-column>
</el-table>
<loading :loading="loading">加载中...</loading>
<pagination
style="position: static;"
:page="page"
:total="total"
@pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination>
</div>
</template>
<script>
export default {
name: 'ReleaseQA2',
components: {},
mixins: [],
data() {
return {
loading: false,
pageVerify: false,
page: 1,
pageSize: 10,
total: 0,
putTime: '',
standardReleaseList: [], //标准问答数据
}
},
computed: {},
watch: {},
mounted() {
this.getDate()
this.getAdvice()
// this.addDate()
},
methods: {
pageChange(page) {
this.page = page
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
},
// 分页每页显示数改变后方法
pageSizeChange(pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
// 此处需要调用接口,修改个人配置
},
togo () {
if(this.total && this.total > 10){
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
},
// 点击查看
handlePreview (item) {
// let routeUrl = this.$router.resolve({
// name: 'OtherBussStandardDetails',
// params: {
// id: item.standardId,
// pageType: 'BUSINESS_STAND'
// }
// })
// window.open(routeUrl.href, '_blank')
},
//截取时间
getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : ''
},
//获取数据
getAdvice() {
this.loading = true
// 模拟加载
const timer = setInterval(() => {
this.loading = false
}, 2000)
console.log(timer)
// this.$http.get("/lawss/NewsFeed/getNewsFeed", {
// messageType: 'QYBZFB',
// page: this.page,
// pageSize: this.pageSize
// }, {
// _this: this,loading: 'loading'
// }, res => {
// this.standardReleaseList = res.data.records
// this.total = res.data.total
// this.loading = false
// }, e => {
// this.loading = false
// this.standardReleaseList = []
// this.total = 0
// })
},
},
}
</script>
<style lang="less" scoped>
.release {
/deep/.el-table th > .cell {
font-size: 15px;
}
/deep/.el-table td > .cell{
font-size: 13px;
}
/deep/.more {
position: absolute;
right: 0;
bottom: 2px;
font-size: 15px;
float: right;
color: #4788c0;
&:hover {
color: #3a8ee6;
cursor: pointer;
}
}
width: 100%;
height: 100%;
position: relative;
background-color: #FFF;
background-size: 100% 100%;
.time-title {
margin: 15px;
.time {
float: right;
color:#333333;
}
a {
color: #ffffff;
&:hover {
color: #e9c851;
cursor:pointer;
text-decoration: underline;
}
}
}
}
</style>
@@ -101,13 +101,7 @@ export default {
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
if(this.total && this.total > 10){ this.$router.push({path:'/releaseUs2'})
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
}, },
// 将文本状态的id与name对应 // 将文本状态的id与name对应
setMap(data) { setMap(data) {
@@ -0,0 +1,196 @@
<!-- 标准发布 -->
<template>
<div class="release">
<!-- <ul>-->
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
<!-- <div style="height: 18px;">-->
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
<!-- </div>-->
<!-- </li>-->
<!-- </ul>-->
<el-table
ref="selection"
:data="standardReleaseList"
tooltip-effect="dark"
border
style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
<el-table-column
label="序号"
type="index"
align="center"
width="55">
</el-table-column>
<el-table-column
prop="standard"
label="标准编号">
<template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template>
</el-table-column>
<el-table-column
prop="standardName"
label="标准名称">
<template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
</template>
</el-table-column>
<el-table-column
width="120"
label="文本状态">
<template slot-scope="scope">
<span>{{ textStatusMap[scope.row.textState] }}</span>
</template>
</el-table-column>
</el-table>
<loading :loading="loading">加载中...</loading>
<pagination
style="position: static;"
:page="page"
:total="total"
@pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination>
</div>
</template>
<script>
export default {
name: 'ReleaseUs2',
components: {},
mixins: [],
data() {
return {
loading: false,
pageVerify: false,
page: 1,
pageSize: 10,
total: 0,
putTime: '',
standardReleaseList: [], //标准发布数据
textStatusMap: {} // 文本状态id与name对应
}
},
computed: {},
watch: {},
mounted() {
this.$http.get('sys/dictype/getDicTypeListCode', '', {
_this: this
}, res => {
if (res.data.WBZTCLASS !== undefined && res.data.WBZTCLASS !== null){
this.setMap(res.data.WBZTCLASS) // 文本状态
}
}, e => {
})
this.getDate()
this.getAdvice()
// this.addDate()
},
methods: {
pageChange(page) {
this.page = page
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
},
// 分页每页显示数改变后方法
pageSizeChange(pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice()
// 此处需要调用接口,修改个人配置
},
togo () {
if(this.total && this.total > 10){
this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent
}else {
this.pageVerify = false
}
this.getAdvice()
},
// 将文本状态的id与name对应
setMap(data) {
data.forEach(item => {
this.$set(this.textStatusMap, item.value, item.label)
})
},
// 点击查看
handlePreview (item) {
let routeUrl = this.$router.resolve({
name: 'OtherStandardDetails',
params: {
id: item.standardId,
pageType: item.resourceType + '_STAND'
}
})
window.open(routeUrl.href, '_blank')
},
//截取时间
getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : ''
},
//获取数据
getAdvice() {
this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", {
messageType: 'ZYBZFG',
page: this.page,
pageSize: this.pageSize
}, {
_this: this,loading: 'loading'
}, res => {
this.standardReleaseList = res.data.records
this.total = res.data.total
this.loading = false
}, e => {
this.loading = false
this.standardReleaseList = []
this.total = 0
})
},
},
}
</script>
<style lang="less" scoped>
.release {
/deep/.el-table th > .cell {
font-size: 15px;
}
/deep/.el-table td > .cell{
font-size: 13px;
}
/deep/.more {
position: absolute;
right: 0;
bottom: 2px;
font-size: 15px;
float: right;
color: #4788c0;
&:hover {
color: #3a8ee6;
cursor: pointer;
}
}
width: 100%;
height: 100%;
position: relative;
background-color: #FFF;
background-size: 100% 100%;
.time-title {
margin: 15px;
.time {
float: right;
color:#333333;
}
a {
color: #ffffff;
&:hover {
color: #e9c851;
cursor:pointer;
text-decoration: underline;
}
}
}
}
</style>
@@ -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
@@ -73,13 +73,13 @@
<!-- ></el-option>--> <!-- ></el-option>-->
<!-- </el-select>--> <!-- </el-select>-->
<!-- </el-form-item>--> <!-- </el-form-item>-->
<!-- <el-form-item label="企标号" prop="standNumber" class="add-form-item form-item-disabled">--> <el-form-item v-show="fbNode && form.standStatus === '1'" label="企标顺序号" prop="standNum" class="add-form-item form-item-disabled">
<!-- <el-input--> <el-input
<!-- v-model="form.standNumber"--> v-model="form.standNum"
<!-- placeholder="请输入企标编号"--> placeholder="请输入企标顺序号"
<!-- clearable--> clearable
<!-- ></el-input>--> ></el-input>
<!-- </el-form-item>--> </el-form-item>
<el-form-item label="制修订类型" prop="standStatus" class="add-form-item form-item-disabled"> <el-form-item label="制修订类型" prop="standStatus" class="add-form-item form-item-disabled">
<el-select v-model="form.standStatus" filterable disabled> <el-select v-model="form.standStatus" filterable disabled>
<el-option <el-option
@@ -1626,23 +1626,23 @@
this.isSubmit = true this.isSubmit = true
this.saveLoading = true this.saveLoading = true
} }
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1',standSort:this.form.standSort}, { // this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1',standSort:this.form.standSort}, {
_this: this // _this: this
}, res => { // }, res => {
const obj = res.data // const obj = res.data
let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn // let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn
this.form.standSn = standSn // this.form.standSn = standSn
this.form.standNumber = standSn // this.form.standNumber = standSn
this.form.standYear = year // 待带入立项标准 // this.form.standYear = year // 待带入立项标准
this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) // this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
this.FBGBUSSFileList = [] // this.FBGBUSSFileList = []
this.LSBBBUSSFileList = [] // this.LSBBBUSSFileList = []
if(this.form.standStatus === '1'){ // if(this.form.standStatus === '1'){
this.isSubmit = false // this.isSubmit = false
this.saveLoading = false // this.saveLoading = false
} // }
}, e => { // }, e => {
}) // })
} }
}, },
@@ -588,7 +588,8 @@
import ProcessHeader from '../../components/ProcessHeader' 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 {saveTaskForPub,changeAssigneeNew,saveTaskFirst, queryTaskFirst, getBusStandFileByAttId,inboundLiaisonDetail,processCreateBuss,evaluationHisList,taskDel} from "api/process"; import {saveTaskForPub,changeAssigneeNew,saveTaskFirst, queryTaskFirst,
getBusStandFileByAttId,inboundLiaisonDetail,processCreateBuss,evaluationHisList,taskDel,verifySnExists} from "api/process";
import TreeSelect from '@/components/treeSelect/treeSelect.vue'; import TreeSelect from '@/components/treeSelect/treeSelect.vue';
import TreeSelectNew from '@/components/treeSelect/treeSelectNew.vue'; import TreeSelectNew from '@/components/treeSelect/treeSelectNew.vue';
let Base64 = require('js-base64').Base64; let Base64 = require('js-base64').Base64;
@@ -604,6 +605,24 @@
TreeSelectNew TreeSelectNew
}, },
data () { data () {
const validateStandNumber = async (rule, value, callback) => {
if (value === '') {
callback(new Error('请输入企标顺序号'))
} else {
let res = await this.verifySnExists()
if(res.data){
callback()
let date = new Date();
let year = date.getFullYear();
this.form.standSn = this.form.standNum
this.form.standNumber = this.form.standNum
this.form.standYear = this.regDate(year) // 待带入立项标准
this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
}else {
callback(new Error('企标顺序号已存在或已锁定'))
}
}
};
const validateZrUserIdName = (rule, value, callback) => { const validateZrUserIdName = (rule, value, callback) => {
if(this.FBGBUSSFileList.length === 0){ if(this.FBGBUSSFileList.length === 0){
callback(new Error('请上传发布稿文件!')) callback(new Error('请上传发布稿文件!'))
@@ -974,9 +993,11 @@
standSort: [ standSort: [
{ required: true, message: '请选择企标类别', trigger: 'change' } { required: true, message: '请选择企标类别', trigger: 'change' }
], ],
standNumber: [ standNum: [
{ required: true, message: '请输入企标号', trigger: 'blur' }, { required: true, message: '请输入企标顺序号', trigger: 'blur' },
{ min: 1, max: 100, message: '长度在 1 到 100 个字符', trigger: 'blur' }, { min: 1, max: 100, message: '长度在 1 到 100 个字符', trigger: 'blur' },
{validator: validateStandNumber, trigger: 'change'}
], ],
standYear: [ standYear: [
{ required: true, message: '请输入标准年份'}, { required: true, message: '请输入标准年份'},
@@ -1050,6 +1071,13 @@
} }
}, },
watch:{ watch:{
'form.standSort': {
handler (val) {
if (val !== '' && val !== null && typeof (val) !== 'undefined') {
this.getStandInfoByReviseStatus()
}
}
},
'form.issueTime': { 'form.issueTime': {
handler: function() { handler: function() {
if(this.form.issueTime !== undefined && this.form.issueTime !== null && this.form.issueTime !== ''){ if(this.form.issueTime !== undefined && this.form.issueTime !== null && this.form.issueTime !== ''){
@@ -1063,7 +1091,7 @@
if (month.length == 1) { if (month.length == 1) {
month = "0" + month; month = "0" + month;
} }
if (day.length == 1) { if (day.length === 1) {
day = "0" + day; day = "0" + day;
} }
const FSRQBUSS = year + "-" + month + "-" + day; const FSRQBUSS = year + "-" + month + "-" + day;
@@ -2600,6 +2628,19 @@
} }
return list; return list;
}, },
verifySnExists(){
return new Promise((resolve, reject) => {
verifySnExists({
taskId:this.taskIds,
standSn:this.form.standNum,
standSort:this.form.standSort
}).then(res => {
const history = res;
resolve(history)
}).catch(e => {
})
})
},
getData() { getData() {
if(this.taskIds && this.pId){ if(this.taskIds && this.pId){
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
@@ -2608,13 +2649,23 @@
pId: this.pId pId: this.pId
}).then(res => { }).then(res => {
if (res) { if (res) {
const processForm = JSON.parse(res.mesg) if(res.nowTaskInfo && res.nowTaskInfo === '发布') {
if (processForm.form === undefined) { const processForm = JSON.parse(res.mesg)
this.getFormFieldList(processForm) if (processForm.form === undefined) {
} else { this.getFormFieldList(processForm)
//表单文件处理 } else {
this.getTaskId(processForm) //表单文件处理
this.getTaskId(processForm)
}
}else {
this.$alert('当前任务'+(res.nowTaskInfo ?res.nowTaskInfo:"")+'不是发布节点,禁止跨路由访问当前页面', '', {
confirmButtonText: '确定',
callback: action => {
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
}
});
} }
} }
}).catch(e => { }).catch(e => {
}) })
@@ -2658,16 +2709,17 @@
this.isSubmit = true this.isSubmit = true
this.saveLoading = true this.saveLoading = true
} }
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1',standSort:this.form.standSort}, {
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1',standSort:this.form.standSort,taskId: this.taskIds}, {
_this: this _this: this
}, res => { }, res => {
const obj = res.data const obj = res.data
let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn let standSn = obj.newStandSn
this.form.standSn = standSn this.form.standSn = standSn
this.form.standNum = standSn
this.form.standNumber = standSn this.form.standNumber = standSn
this.form.standYear = year // 待带入立项标准 this.form.standYear = year // 待带入立项标准
this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
console.log(this.form)
if(type === '1'){ if(type === '1'){
this.isSubmit = false this.isSubmit = false
this.saveLoading = false this.saveLoading = false
@@ -1149,22 +1149,23 @@
this.isSubmit = true this.isSubmit = true
this.saveLoading = true this.saveLoading = true
} }
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, { this.formKey++
_this: this // this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, {
}, res => { // _this: this
const obj = res.data // }, res => {
let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn // const obj = res.data
this.form.standSn = standSn // let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn
this.form.standNumber = standSn // this.form.standSn = standSn
this.form.standYear = year // 待带入立项标准 // this.form.standNumber = standSn
this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) // this.form.standYear = year // 待带入立项标准
if(type === '1'){ // this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
this.isSubmit = false // if(type === '1'){
this.saveLoading = false // this.isSubmit = false
} // this.saveLoading = false
this.formKey++ // }
}, e => { // this.formKey++
}) // }, e => {
// })
} }
}, },
checkedRoleTransfer (data) { checkedRoleTransfer (data) {
@@ -1169,7 +1169,7 @@
let year = date.getFullYear()+5; let year = date.getFullYear()+5;
let month =(date.getMonth() + 1).toString(); let month =(date.getMonth() + 1).toString();
let day = (date.getDate()).toString(); let day = (date.getDate()).toString();
if (month.length == 1) { if (month.length === 1) {
month = "0" + month; month = "0" + month;
} }
if (day.length == 1) { if (day.length == 1) {
@@ -1227,22 +1227,23 @@
this.isSubmit = true this.isSubmit = true
this.saveLoading = true this.saveLoading = true
} }
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, { this.formKey++
_this: this // this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, {
}, res => { // _this: this
const obj = res.data // }, res => {
let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn // const obj = res.data
this.form.standSn = standSn // let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn
this.form.standNumber = standSn // this.form.standSn = standSn
this.form.standYear = year // 待带入立项标准 // this.form.standNumber = standSn
this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) // this.form.standYear = year // 待带入立项标准
if(type === '1'){ // this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
this.isSubmit = false // if(type === '1'){
this.saveLoading = false // this.isSubmit = false
} // this.saveLoading = false
this.formKey++ // }
}, e => { // this.formKey++
}) // }, e => {
// })
} }
}, },
@@ -1149,22 +1149,23 @@
this.isSubmit = true this.isSubmit = true
this.saveLoading = true this.saveLoading = true
} }
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, { this.formKey++
_this: this // this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, {
}, res => { // _this: this
const obj = res.data // }, res => {
let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn // const obj = res.data
this.form.standSn = standSn // let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn
this.form.standNumber = standSn // this.form.standSn = standSn
this.form.standYear = year // 待带入立项标准 // this.form.standNumber = standSn
this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) // this.form.standYear = year // 待带入立项标准
if(type === '1'){ // this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
this.isSubmit = false // if(type === '1'){
this.saveLoading = false // this.isSubmit = false
} // this.saveLoading = false
this.formKey++ // }
}, e => { // this.formKey++
}) // }, e => {
// })
} }
}, },
@@ -1237,22 +1237,23 @@
this.isSubmit = true this.isSubmit = true
this.saveLoading = true this.saveLoading = true
} }
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, { this.formKey++
_this: this // this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss2_1'}, {
}, res => { // _this: this
const obj = res.data // }, res => {
let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn // const obj = res.data
this.form.standSn = standSn // let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn
this.form.standNumber = standSn // this.form.standSn = standSn
this.form.standYear = year // 待带入立项标准 // this.form.standNumber = standSn
this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) // this.form.standYear = year // 待带入立项标准
if(type === '1'){ // this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
this.isSubmit = false // if(type === '1'){
this.saveLoading = false // this.isSubmit = false
} // this.saveLoading = false
this.formKey++ // }
}, e => { // this.formKey++
}) // }, e => {
// })
} }
}, },
File diff suppressed because it is too large Load Diff
@@ -1244,7 +1244,7 @@
pageSize: this.$store.getters.userInfo.configContent, pageSize: this.$store.getters.userInfo.configContent,
unit: '', unit: '',
esName: '', esName: '',
planStatus: '0,3', planStatus: '0,3,6',
reviseStatus: '', reviseStatus: '',
}, },
tableData: { tableData: {
@@ -626,11 +626,13 @@
</template> </template>
<script> <script>
import formEditList from './common/formEditList.vue' import formEditList from './common/formEditListFb.vue'
import ProcessHeader from '../../components/ProcessHeader' 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 {saveTaskForPub,changeAssigneeNew,saveTaskFirst, queryTaskFirst, getBusStandFileByAttId,taskDel,inboundLiaisonDetail,processCreateBuss,evaluationHisList} from "api/process"; import {saveTaskForPub,changeAssigneeNew,saveTaskFirst, queryTaskFirst,
getBusStandFileByAttId,taskDel,inboundLiaisonDetail,processCreateBuss,
evaluationHisList,verifySnExists} from "api/process";
import TreeSelect from '@/components/treeSelect/treeSelect.vue'; import TreeSelect from '@/components/treeSelect/treeSelect.vue';
import TreeSelectNew from '@/components/treeSelect/treeSelectNew.vue'; import TreeSelectNew from '@/components/treeSelect/treeSelectNew.vue';
import TreeSelectModule from "@/components/treeSelect/treeSelectModule.vue"; import TreeSelectModule from "@/components/treeSelect/treeSelectModule.vue";
@@ -648,6 +650,25 @@
TreeSelectModule TreeSelectModule
}, },
data () { data () {
const validateStandNumber = async (rule, value, callback) => {
console.log(value)
if (value === '') {
callback(new Error('请输入企标顺序号'))
} else {
let res = await this.verifySnExists()
if(res.data){
callback()
let date = new Date();
let year = date.getFullYear();
this.form.standSn = this.form.standNum
this.form.standNumber = this.form.standNum
this.form.standYear = this.regDate(year) // 待带入立项标准
this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
}else {
callback(new Error('企标顺序号已存在或已锁定'))
}
}
};
const validateZrUserIdName = (rule, value, callback) => { const validateZrUserIdName = (rule, value, callback) => {
if(this.FBGBUSSFileList.length === 0){ if(this.FBGBUSSFileList.length === 0){
callback(new Error('请上传发布稿文件!')) callback(new Error('请上传发布稿文件!'))
@@ -875,6 +896,7 @@
// 基础信息 // 基础信息
standSort: '', standSort: '',
standCode: '', standCode: '',
standNumber: '',
standYear: '', standYear: '',
standName: '', standName: '',
standEnName: '', standEnName: '',
@@ -1008,9 +1030,11 @@
standSort: [ standSort: [
{ required: true, message: '请选择企标类别', trigger: 'change' } { required: true, message: '请选择企标类别', trigger: 'change' }
], ],
standNumber: [ standNum: [
{ required: true, message: '请输入企标号', trigger: 'blur' }, { required: true, message: '请输入企标顺序号', trigger: 'blur' },
{ min: 1, max: 100, message: '长度在 1 到 100 个字符', trigger: 'blur' }, { min: 1, max: 100, message: '长度在 1 到 100 个字符', trigger: 'blur' },
{validator: validateStandNumber, trigger: 'change'}
], ],
standYear: [ standYear: [
{ required: true, message: '请输入标准年份'}, { required: true, message: '请输入标准年份'},
@@ -1219,6 +1243,7 @@
}, },
formCancel (form, list1,list2,list3,list4,list5,fileMadel,fileList,fileType,list6) { formCancel (form, list1,list2,list3,list4,list5,fileMadel,fileList,fileType,list6) {
this.form = form this.form = form
console.log(this.form)
this.FBGBUSSFileList = list1 this.FBGBUSSFileList = list1
this.LSBBBUSSFileList = list2 this.LSBBBUSSFileList = list2
this.BZSMBUSSFileList = list3 this.BZSMBUSSFileList = list3
@@ -1478,6 +1503,7 @@
signFlag: data.signFlag ? data.signFlag : '1', // 是否需要会签 signFlag: data.signFlag ? data.signFlag : '1', // 是否需要会签
// 基础信息 // 基础信息
standCode: '', standCode: '',
standNumber: '',
standYear: '', standYear: '',
textStatusBuss: '', textStatusBuss: '',
issueTime: '', issueTime: '',
@@ -1957,7 +1983,7 @@
if(this.replaceLawType === 'DTQBBHBUSS'){ if(this.replaceLawType === 'DTQBBHBUSS'){
let arr1 = this.form.DTQBBHBUSS ? this.form.DTQBBHBUSS + ',' + textArr.join(',') : textArr.join(',') let arr1 = this.form.DTQBBHBUSS ? this.form.DTQBBHBUSS + ',' + textArr.join(',') : textArr.join(',')
this.form.DTQBBHBUSS = this.filterSetData(arr1) this.form.DTQBBHBUSS = this.filterSetData(arr1)
this.getStandInfoByReviseStatus() // this.getStandInfoByReviseStatus()
}else if(this.replaceLawType === 'CYBZ'){ }else if(this.replaceLawType === 'CYBZ'){
let arr1 = this.form.CYBZ ? this.form.CYBZ + ',' +textArr.join(',') : textArr.join(',') let arr1 = this.form.CYBZ ? this.form.CYBZ + ',' +textArr.join(',') : textArr.join(',')
this.form.CYBZ = this.filterSetData(arr1) this.form.CYBZ = this.filterSetData(arr1)
@@ -2555,6 +2581,19 @@
}) })
} }
}, },
verifySnExists(){
return new Promise((resolve, reject) => {
verifySnExists({
taskId:this.taskIds,
standSn:this.form.standNum,
standSort:this.form.standSort
}).then(res => {
const history = res;
resolve(history)
}).catch(e => {
})
})
},
/** /**
* @description: 流程入库 * @description: 流程入库
* @date: 2020-11-18 21:47:58 * @date: 2020-11-18 21:47:58
@@ -2620,7 +2659,6 @@
this.form.prcName = this.prcName this.form.prcName = this.prcName
this.form.issueTime = this.dateFormatter() this.form.issueTime = this.dateFormatter()
this.form['id'] = item.id this.form['id'] = item.id
this.getStandInfoByReviseStatus()
this.form['SYCXCLASS'] = this.filterObj(this.form['SYCXCLASS']) this.form['SYCXCLASS'] = this.filterObj(this.form['SYCXCLASS'])
this.form['NYLXCLASS'] = this.filterObj(this.form['NYLXCLASS']) this.form['NYLXCLASS'] = this.filterObj(this.form['NYLXCLASS'])
this.form['SYCPXCLASS'] = this.filterObj(this.form['SYCPXCLASS']) this.form['SYCPXCLASS'] = this.filterObj(this.form['SYCPXCLASS'])
@@ -2640,7 +2678,9 @@
this.GLWJBUSSFileList=this.assemble(item.GLWJBUSS,item.GLWJBUSSName); this.GLWJBUSSFileList=this.assemble(item.GLWJBUSS,item.GLWJBUSSName);
this.summaryFileList=this.assemble(item.summaryFile,item.summaryFileName); this.summaryFileList=this.assemble(item.summaryFile,item.summaryFileName);
this.madelSubList=this.assemble(item.madelSub,item.madelSubName); this.madelSubList=this.assemble(item.madelSub,item.madelSubName);
this.formKey++
this.getStandInfoByReviseStatus()
}) })
}, },
filterObj(obj){ filterObj(obj){
@@ -2672,12 +2712,21 @@
pId: this.pId pId: this.pId
}).then(res => { }).then(res => {
if (res) { if (res) {
const processForm = JSON.parse(res.mesg) if(res.nowTaskInfo && res.nowTaskInfo === '发布'){
if (processForm.form === undefined) { const processForm = JSON.parse(res.mesg)
this.getFormFieldList(processForm) if (processForm.form === undefined) {
} else { this.getFormFieldList(processForm)
//表单文件处理 } else {
this.getTaskId(processForm) //表单文件处理
this.getTaskId(processForm)
}
}else {
this.$alert('当前任务'+(res.nowTaskInfo ?res.nowTaskInfo:"")+'不是发布节点,禁止跨路由访问当前页面', '', {
confirmButtonText: '确定',
callback: action => {
this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
}
});
} }
} }
}).catch(e => { }).catch(e => {
@@ -2713,16 +2762,19 @@
this.form.standNumber = this.form.standNum this.form.standNumber = this.form.standNum
this.form.standYear = this.regDate(year) this.form.standYear = this.regDate(year)
this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) this.form.standCode = this.form.standSort + ' ' + this.form.standNum + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
this.formKey++
}else { }else {
this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss1_'+this.form.reviseStatus,standSort:this.form.standSort}, { this.$http.get('lawss/sarBussionessStand/getStandInfoByReviseStatus',{reviseStatus:'buss1_'+this.form.reviseStatus,standSort:this.form.standSort,taskId: this.taskIds}, {
_this: this _this: this
}, res => { }, res => {
const obj = res.data const obj = res.data
let standSn = (obj === null || obj.newStandSn === null) ? '2280' : obj.newStandSn let standSn = obj.newStandSn
this.form.standSn = standSn this.form.standSn = standSn
this.form.standNumber = standSn this.form.standNumber = standSn
this.form.standNum = standSn
this.form.standYear = this.regDate(year) // 待带入立项标准 this.form.standYear = this.regDate(year) // 待带入立项标准
this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear ) this.form.standCode = this.form.standSort + ' ' + standSn + ( this.form.standYear === '' ? '' : '-' + this.form.standYear )
this.formKey++
}, e => { }, e => {
}) })
} }
@@ -1702,7 +1702,6 @@
this.form.evaluationData = [] this.form.evaluationData = []
this.pid = this.form.topId this.pid = this.form.topId
this.evaluationHisListRep() this.evaluationHisListRep()
this.getStandInfoByReviseStatus()
this.evaluationHisListRepSum() this.evaluationHisListRepSum()
this.footFileList=this.assemble(this.form.footFile,this.form.footFileName); this.footFileList=this.assemble(this.form.footFile,this.form.footFileName);
this.FBGBUSSFileList=this.assemble(this.form.FBGBUSS,this.form.FBGBUSSName); this.FBGBUSSFileList=this.assemble(this.form.FBGBUSS,this.form.FBGBUSSName);
@@ -2825,7 +2824,6 @@
this.form['id'] = item.id this.form['id'] = item.id
this.form.evaluationData = [] this.form.evaluationData = []
this.evaluationHisListRep() this.evaluationHisListRep()
this.getStandInfoByReviseStatus()
this.evaluationHisListRepSum() this.evaluationHisListRepSum()
this.form['SYCXCLASS'] = this.filterObj(this.form['SYCXCLASS']) this.form['SYCXCLASS'] = this.filterObj(this.form['SYCXCLASS'])
this.form['NYLXCLASS'] = this.filterObj(this.form['NYLXCLASS']) this.form['NYLXCLASS'] = this.filterObj(this.form['NYLXCLASS'])
@@ -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
@@ -3,7 +3,7 @@
<!-- 标准入库流程--> <!-- 标准入库流程-->
<ProcessHeaderPhone toggle> <ProcessHeaderPhone toggle>
<template slot="proName">标准入库流程</template> <template slot="proName">标准入库流程</template>
<template slot="proNode">批准</template> <template slot="proNode">批准</template>
</ProcessHeaderPhone> </ProcessHeaderPhone>
<div class="headerTabs"> <div class="headerTabs">
<div class="headerTabsItem" :class="active === '1' ? 'active' : ''" @click="handleTabs('1')">基础信息</div> <div class="headerTabsItem" :class="active === '1' ? 'active' : ''" @click="handleTabs('1')">基础信息</div>
@@ -444,12 +444,13 @@ 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);
export default { export default {
name: "phoneBzrkStep2", name: "phoneBzrkStep2",
data() { data() {
return { return {
commentText: '', commentText: '',
textStatusMap: {}, // idname textStatusMap: {}, // idname
@@ -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;
+36
View File
@@ -14,6 +14,42 @@ const routes = [
title: '动态跳转', title: '动态跳转',
} }
}, },
{
path: '/release2',
name: 'Release2',
component: resolve => require(['@/pages/home2/components/release2/index.vue'], resolve),
meta: {
requireAuth: true,
title: '国内外标准法规入库',
}
},
{
path: '/releaseUs2',
name: 'ReleaseUs2',
component: resolve => require(['@/pages/home2/components/releaseUs2/index.vue'], resolve),
meta: {
requireAuth: true,
title: '在研标准法规入库',
}
},
{
path: '/releaseBuss2',
name: 'ReleaseBuss2',
component: resolve => require(['@/pages/home2/components/releaseBuss2/index.vue'], resolve),
meta: {
requireAuth: true,
title: '企业标准发布',
}
},
{
path: '/releaseQA2',
name: 'ReleaseQA2',
component: resolve => require(['@/pages/home2/components/releaseQA2/index.vue'], resolve),
meta: {
requireAuth: true,
title: '标准问答',
}
},
{ {
path: '/blankPage', path: '/blankPage',
name: 'blankPage', name: 'blankPage',