|
|
@@ -92,7 +92,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { getList,getCbdkms,updateSysCfb,updateBatchSign} from "@/api/sunVillage_info/sysCbf"; |
|
|
|
import { getList,getCbfdcList,getCbdkms,updateSysCfb,updateBatchSign} from "@/api/sunVillage_info/sysCbf"; |
|
|
|
import $ from "jquery"; |
|
|
|
export default { |
|
|
|
name: "certificateList", |
|
|
@@ -116,6 +116,7 @@ |
|
|
|
}; |
|
|
|
}, |
|
|
|
created() { |
|
|
|
this.getCbfdc(); |
|
|
|
this.getCbfCount(); |
|
|
|
this.getCbfdkCount(); |
|
|
|
this.height = window.screen.height * 1.28 - 20; |
|
|
@@ -124,9 +125,15 @@ |
|
|
|
getCbfCount(){ |
|
|
|
getList({}).then(res=>{ |
|
|
|
this.cbfCount = res.total; |
|
|
|
this.form = res.rows[0]; |
|
|
|
if(this.form.gsjsrqz != null){ |
|
|
|
this.showJsxx = true; |
|
|
|
}); |
|
|
|
}, |
|
|
|
getCbfdc(){ |
|
|
|
getCbfdcList({}).then(res=>{ |
|
|
|
if(res.total > 0){ |
|
|
|
this.form = res.rows[0]; |
|
|
|
if(this.form.gsjsrqz != null){ |
|
|
|
this.showJsxx = true; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}, |
|
|
@@ -168,7 +175,7 @@ |
|
|
|
}); |
|
|
|
updateBatchSign(param,this.form.gsjs).then((res) => { |
|
|
|
this.$toast.clear(); |
|
|
|
this.getCbfCount(); |
|
|
|
this.getCbfdc(); |
|
|
|
this.$notify({type: 'success', message: '签字成功'}); |
|
|
|
|
|
|
|
}) |
|
|
|