5846b42b by xiaomiao
2 parents 98e4a74d 2e09ae84
......@@ -166,8 +166,12 @@ export default {
// 新增
addClick () {
this.dialog = true
this.isaddupdate = true
if(this.gyfs == '0' && this.tableDataList.length > 0){
this.$message.warning("当前共有方式为单独所有,无法添加多个权利人")
}else{
this.dialog = true
this.isaddupdate = true
}
},
// 删除
......
......@@ -34,10 +34,8 @@
></el-input>
</el-form-item>
<el-form-item>
<!-- <el-button style="float:right">取消</el-button> -->
<el-button type="primary" @click="onSubmit" style="float: right"
>退回</el-button
>
<el-button style="float:right" @click="cancelBack">取消</el-button>
<el-button type="primary" @click="onSubmit" style="float:right">退回</el-button>
</el-form-item>
</el-form>
</div>
......@@ -45,7 +43,10 @@
</template>
<script>
import { getTaskBackNode, sendBackTask } from "@/api/fqsq.js";
import { getTaskBackNode, sendBackTask } from "@/api/fqsq.js"
import { popupCacel } from "@/utils/popup.js";
export default {
props: {
formData: {
......@@ -100,8 +101,12 @@ export default {
}
});
},
},
};
cancelBack(){
popupCacel();
}
}
}
</script>
<style scoped lang="scss">
@import "~@/styles/mixin.scss";
......