1.根据同步设置,判断相关页面按钮是否禁用

master
x_z 3 years ago
parent a9de980704
commit 3497a9e41a

@ -77,6 +77,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.typeScan"
@click.native.stop="handleModifyClick(scope.row)" @click.native.stop="handleModifyClick(scope.row)"
>编辑 >编辑
</el-button </el-button
@ -84,6 +85,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.typeScan"
@click.native.stop="deleteDialog(scope.row)" @click.native.stop="deleteDialog(scope.row)"
>删除 >删除
</el-button </el-button

@ -57,6 +57,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.typeBus"
@click.native.stop="handleModifyClick(scope.row)" @click.native.stop="handleModifyClick(scope.row)"
>编辑 >编辑
</el-button </el-button
@ -64,6 +65,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.typeBus"
@click.native.stop="deleteDialog(scope.row)" @click.native.stop="deleteDialog(scope.row)"
>删除 >删除
</el-button </el-button

@ -51,6 +51,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.typeBus"
@click.native.stop="handleModifyClick(scope.row)" @click.native.stop="handleModifyClick(scope.row)"
>编辑 >编辑
</el-button </el-button
@ -58,6 +59,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.typeBus"
@click.native.stop="handleDeleteClick(scope.row)" @click.native.stop="handleDeleteClick(scope.row)"
>删除 >删除
</el-button </el-button

@ -29,6 +29,7 @@
</el-button </el-button
> >
<el-button type="primary" @click.native="handleForm(null, null)" <el-button type="primary" @click.native="handleForm(null, null)"
:disabled="!configParms.basicCorp"
>新增 >新增
</el-button </el-button
> >
@ -85,6 +86,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicCorp"
@click.native="handleForm(scope.$index, scope.row)" @click.native="handleForm(scope.$index, scope.row)"
>编辑 >编辑
</el-button </el-button
@ -100,6 +102,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicCorp"
@click.native.stop="deleteDialog(scope.row)" @click.native.stop="deleteDialog(scope.row)"
>删除 >删除
</el-button </el-button
@ -315,6 +318,7 @@ import {
import selectUnit from "./CorpRelevance"; import selectUnit from "./CorpRelevance";
import selectSingleUnit from "./CorpSingleRelevance"; import selectSingleUnit from "./CorpSingleRelevance";
import {getBasicThirdSys} from "../../api/basic/basicThirdSys"; import {getBasicThirdSys} from "../../api/basic/basicThirdSys";
import {findConfig} from "@/api/thrsys/spsSyncStatus";
var pinyin = require("pinyin"); var pinyin = require("pinyin");
@ -393,6 +397,7 @@ export default {
thirdSys: [], thirdSys: [],
thirdSysFk: null, thirdSysFk: null,
defaultSys: null, defaultSys: null,
configParms: {},
}; };
}, },
@ -689,8 +694,18 @@ export default {
}) })
.catch(() => { .catch(() => {
}); });
} },
, getSyncConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
},
} }
, ,
mounted() { mounted() {
@ -702,6 +717,7 @@ export default {
, ,
created() { created() {
this.getList(); this.getList();
this.getSyncConfig();
this.getBasicThirdSys(); this.getBasicThirdSys();
} }
, ,

@ -29,6 +29,7 @@
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" @click.native="handleForm(null, null,'addTop')" <el-button type="primary" @click.native="handleForm(null, null,'addTop')"
:disabled="!configParms.basicInv"
>添加仓库 >添加仓库
</el-button </el-button
> >
@ -42,9 +43,9 @@
:on-success="handleChange" :on-success="handleChange"
:file-list="fileList" :file-list="fileList"
> >
<el-button size="mini" type="primary">导入</el-button> <el-button size="mini" type="primary" :disabled="!configParms.basicInv">导入</el-button>
</el-upload> </el-upload>
<el-button type="primary" icon="search" @click="exportInvwarehouse"></el-button> <el-button type="primary" icon="search" @click="exportInvwarehouse" :disabled="!configParms.basicInv">导出</el-button>
<!-- <el-button type="primary" icon="search" @click="uploadInvwarehouse">UDI</el-button>--> <!-- <el-button type="primary" icon="search" @click="uploadInvwarehouse">UDI</el-button>-->
@ -115,6 +116,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicInv"
@click.native.stop="handleForm(node, scope.row, 'edit')" @click.native.stop="handleForm(node, scope.row, 'edit')"
>编辑 >编辑
</el-button </el-button
@ -122,7 +124,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="scope.row.code==1000 ||scope.row.code==1001" :disabled="scope.row.code==1000 ||scope.row.code==1001 || !configParms.basicInv"
@click.native.stop="handleDel(node,scope.row)" @click.native.stop="handleDel(node,scope.row)"
>删除 >删除
</el-button </el-button
@ -136,7 +138,7 @@
<el-card style="width: 49%; float: left; margin-right: 0px;"> <el-card style="width: 49%; float: left; margin-right: 0px;">
<div slot="header" class="clearfix" style="margin-bottom: 20px;"> <div slot="header" class="clearfix" style="margin-bottom: 20px;">
<el-button style="float: right;" type="primary" @click="addUser()" <el-button style="float: right;" type="primary" @click="addUser()"
:disabled="currentRow.status == 0">添加用户 :disabled="currentRow.status == 0 || !configParms.basicInv">添加用户
</el-button> </el-button>
</div> </div>
<el-table <el-table
@ -188,7 +190,7 @@
<el-card style="width: 49%; float: right; margin-left: 0px;"> <el-card style="width: 49%; float: right; margin-left: 0px;">
<div slot="header" class="clearfix" style="margin-bottom: 20px;"> <div slot="header" class="clearfix" style="margin-bottom: 20px;">
<el-button style="float: right;" @click="addBussinessType()" type="primary" <el-button style="float: right;" @click="addBussinessType()" type="primary"
:disabled="currentRow.status == 0">添加单据类型 :disabled="currentRow.status == 0 || !configParms.basicInv">添加单据类型
</el-button> </el-button>
</div> </div>
<el-table <el-table
@ -594,6 +596,7 @@ import {getJoinBussinessType} from "../../api/basic/bussinessType";
import {formatDate} from "@/utils/date"; import {formatDate} from "@/utils/date";
import axios from "axios"; import axios from "axios";
import store from "@/store"; import store from "@/store";
import {findConfig} from "@/api/thrsys/spsSyncStatus";
const formJson = { const formJson = {
id: null, id: null,
@ -687,7 +690,8 @@ export default {
page: 1, page: 1,
limit: 10 limit: 10
, thirdSysFk: "thirdId", , thirdSysFk: "thirdId",
} },
configParms: {}
}; };
}, },
methods: { methods: {
@ -1267,6 +1271,16 @@ export default {
hideThrWarehouseTable() { hideThrWarehouseTable() {
this.thrWareHouseVisible = false; this.thrWareHouseVisible = false;
}, },
getSyncConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
},
}, },
filters: { filters: {
statusFilterType(status) { statusFilterType(status) {
@ -1290,6 +1304,7 @@ export default {
// //
this.init(); this.init();
this.getList(); this.getList();
this.getSyncConfig();
}, },
}; };
</script> </script>

@ -33,6 +33,7 @@
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" @click.native="handleForm(null, null,'addTop')" <el-button type="primary" @click.native="handleForm(null, null,'addTop')"
:disabled="!configParms.basicThirdInv"
>添加仓库 >添加仓库
</el-button> </el-button>
</el-button-group> </el-button-group>
@ -74,7 +75,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicThirdInv"
@click.native.stop="handleForm(node, scope.row, 'edit')" @click.native.stop="handleForm(node, scope.row, 'edit')"
>编辑 >编辑
</el-button </el-button
@ -82,6 +83,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicThirdInv"
@click.native.stop="handleDel(node,scope.row)" @click.native.stop="handleDel(node,scope.row)"
>删除 >删除
</el-button </el-button
@ -234,6 +236,7 @@ import {
deleteThrWarehouse, deleteThrWarehouse,
} from "../../api/thrsys/thrInvWarehouse"; } from "../../api/thrsys/thrInvWarehouse";
import {getBasicThirdSys} from "../../api/basic/basicThirdSys"; import {getBasicThirdSys} from "../../api/basic/basicThirdSys";
import {findConfig} from "@/api/thrsys/spsSyncStatus";
const formJson = { const formJson = {
id: null, id: null,
@ -298,6 +301,7 @@ export default {
pidData: {}, pidData: {},
deleteLoading: false, deleteLoading: false,
thirdSys: [], thirdSys: [],
configParms: {},
}; };
}, },
methods: { methods: {
@ -574,7 +578,17 @@ export default {
}, },
thirdSysFkChange(thirdSysFk) { thirdSysFkChange(thirdSysFk) {
console.log(thirdSysFk); console.log(thirdSysFk);
} },
getSyncConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
},
}, },
filters: { filters: {
statusFilterType(status) { statusFilterType(status) {
@ -597,6 +611,7 @@ export default {
created() { created() {
// //
this.getBasicThirdSys(); this.getBasicThirdSys();
this.getSyncConfig();
this.getList(); this.getList();
}, },
}; };

@ -49,7 +49,7 @@
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" @click="addProductVisible=true"></el-button> <el-button type="primary" @click="addProductVisible=true" :disabled="!configParms.basicThirdProducts">新增</el-button>
<!--<el-button type="primary" icon="search" @click="clearAll"></el-button>--> <!--<el-button type="primary" icon="search" @click="clearAll"></el-button>-->
<!--<el-upload--> <!--<el-upload-->
<!--v-if="!this.thirdSysDetail.enabled"--> <!--v-if="!this.thirdSysDetail.enabled"-->
@ -84,7 +84,7 @@
>详情 >详情
</el-button> </el-button>
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" <el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)"
v-if="thirdSysDetail.fromType!=0" v-if="thirdSysDetail.fromType!=0" :disabled="!configParms.basicThirdProducts"
>删除 >删除
</el-button> </el-button>
</template> </template>
@ -135,6 +135,7 @@ import {getBasicThirdSys, filterDetailByKey} from "../../api/basic/basicThirdSys
import {selectIp} from "../../api/param/systemParamConfig"; import {selectIp} from "../../api/param/systemParamConfig";
import thrProductsDetail from "./ThrProductsDetail"; import thrProductsDetail from "./ThrProductsDetail";
import ThrProductsAdd from "@/views/thrsys/ThrProductsAdd"; import ThrProductsAdd from "@/views/thrsys/ThrProductsAdd";
import {findConfig} from "@/api/thrsys/spsSyncStatus";
export default { export default {
data() { data() {
@ -179,7 +180,8 @@ export default {
tyshxydm: null, tyshxydm: null,
qxlb: null, qxlb: null,
cpms: null cpms: null
} },
configParms: {},
}; };
}, },
@ -374,7 +376,17 @@ export default {
this.getList(); this.getList();
} }
Object.keys(this.newProductData).forEach(key => this.newProductData[key] = null); Object.keys(this.newProductData).forEach(key => this.newProductData[key] = null);
} },
getSyncConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
},
}, },
components: { components: {
thrProductsDetail, ThrProductsAdd thrProductsDetail, ThrProductsAdd
@ -383,6 +395,7 @@ export default {
}, },
created() { created() {
this.getBasicThirdSys(); this.getBasicThirdSys();
this.getSyncConfig();
}, },
}; };
</script> </script>

@ -70,13 +70,14 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.sysUser"
@click.native="handleForm(scope.$index, scope.row)" @click.native="handleForm(scope.$index, scope.row)"
>编辑 >编辑
</el-button> </el-button>
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="scope.row.id === 1" :disabled="scope.row.id === 1 || !configParms.sysUser"
@click.native="handleDel(scope.$index, scope.row)" @click.native="handleDel(scope.$index, scope.row)"
>删除 >删除
</el-button> </el-button>

Loading…
Cancel
Save