2e09ae84 by 蔡俊立
2 parents 4b1d78c9 7dc55fc0
......@@ -33,6 +33,7 @@ export function Init (data) {
data
})
}
// 初始化内容
export function saveData (data) {
return request({
......
......@@ -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
}
},
// 删除
......
......@@ -8,7 +8,7 @@ class data extends filter {
constructor() {
super()
}
columns () {
columns() {
return [
{
label: '序号',
......@@ -31,10 +31,10 @@ class data extends filter {
label: "流程状态",
width: '80',
render: (h, scope) => {
if(scope.row.cfgqzt == '1'){
if (scope.row.cfgqzt == '1') {
return <div class='suspend'>查封挂起</div>
}
if(scope.row.yygqzt == '1'){
if (scope.row.yygqzt == '1') {
return <div class='suspend'>异议挂起</div>
}
switch (scope.row.lczt) {
......