|
@@ -55,10 +55,10 @@
|
|
|
<el-button type="primary" v-if="closeStatus" @click="handleClose"
|
|
|
>关闭</el-button
|
|
|
>
|
|
|
- <!-- v-if="forwardStatus" -->
|
|
|
+
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
-
|
|
|
+ v-if="forwardStatus"
|
|
|
@click="clickReassignment"
|
|
|
>转需求管理平台</el-button
|
|
|
>
|
|
@@ -979,7 +979,12 @@ export default {
|
|
|
},
|
|
|
data: this.$refs.formTable.form,
|
|
|
}).then((res) => {
|
|
|
- this.$message.success("转需求管理平台成功!");
|
|
|
+ if(res.data.result === 1) {
|
|
|
+ this.$message.success(res.data.desc);
|
|
|
+ }else{
|
|
|
+ this.$message.error(res.data.desc);
|
|
|
+ }
|
|
|
+
|
|
|
});
|
|
|
},
|
|
|
//批量导出搜索
|