be89298d by zhaoqian

权限控制

1 parent 0c405cd7
......@@ -389,7 +389,7 @@
getDzDetailByBsm(data).then((res)=>{
if(res.code===200) {
this.form = res.result;
if(this.form.bblx === 0 && this.form.qszt === 0 && this.form.bhqkbsm == null){
if(this.form.bblx === 0 && this.form.qszt === '0' && this.form.bhqkbsm == null){
this.disabled = false
}else {
this.disabled = true
......
......@@ -498,9 +498,11 @@
.then((res) => {
if (res.result) {
this.formData = res.result;
if(this.formData.bblx === 0 && this.formData.qszt === 0 && this.formData.bhqkbsm == null){
if(this.formData.bblx === 0 && this.formData.qszt === '0' && this.formData.bhqkbsm == null){
console.log("12345")
this.disabled = false
}else {
console.log("1234567890")
this.disabled = true
}
console.log(res.result, 'res.result');
......
......@@ -600,7 +600,7 @@
if(res.code===200){
this.form = res.result;
this.hbsm = res.result.bsm;
if(this.form.bblx === 0 && this.form.qszt === 0 && this.form.bhqkbsm == null){
if(this.form.bblx === 0 && this.form.qszt === '0' && this.form.bhqkbsm == null){
this.disableFlag = false
}else {
this.disableFlag = true
......
......@@ -663,7 +663,7 @@
// if(res.result.zddm == null){
// this.generatorCode()
// }
if(this.form.bblx === 0 && this.form.qszt === 0 && this.form.bhqkbsm == null){
if(this.form.bblx === 0 && this.form.qszt === '0' && this.form.bhqkbsm == null){
this.disabled = false
}else {
this.disabled = true
......