|
|
@@ -92,10 +92,10 @@ |
|
|
|
<img src="../../assets/images/sunVillage_info/list_contract_signature_icon_08.png" style="width:12PX;height:12PX;"/> |
|
|
|
</div> |
|
|
|
<p>签字完成</p> |
|
|
|
<p style="background-color: #0CF708;color: #30bf2c;">{{form.signCompletedRatio}}</p> |
|
|
|
<p style="background-color: #d2f1d1;color: #30bf2c;">{{form.signCompletedRatio}}</p> |
|
|
|
</div> |
|
|
|
<p class="list_main_block_num"><span>{{form.signCompletedCount}}</span>份</p> |
|
|
|
<p class="list_main_block_btn" v-if="form.signCompletedCount > 0" @click="">批量归档 ></p> |
|
|
|
<p class="list_main_block_btn" v-if="form.signCompletedCount > 0" @click="batchContractCompleted">批量归档 ></p> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="list_main_block"> |
|
|
@@ -117,7 +117,7 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
import { cbfDataStatistics} from "@/api/sunVillage_info/sysCbf"; |
|
|
|
import { batchEqbContractSigning,batchEqbContractSignProcess} from "@/api/sunVillage_info/fixedAssets"; |
|
|
|
import { batchEqbContractSigning,batchEqbContractSignProcess,batchContractCompleted} from "@/api/sunVillage_info/fixedAssets"; |
|
|
|
import $ from "jquery"; |
|
|
|
import Cookies from "js-cookie"; |
|
|
|
export default { |
|
|
@@ -166,6 +166,26 @@ |
|
|
|
},3000) |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
//批量归档 |
|
|
|
batchContractCompleted(){ |
|
|
|
this.$toast.loading({ |
|
|
|
message: "数据处理中", |
|
|
|
forbidClick: true, |
|
|
|
duration: 10000000000, |
|
|
|
}); |
|
|
|
batchContractCompleted().then(response =>{ |
|
|
|
this.$toast.clear(); |
|
|
|
this.$toast.success(response.data); |
|
|
|
let _this = this; |
|
|
|
setTimeout(function(){ |
|
|
|
_this.getData(); |
|
|
|
},3000) |
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
} |
|
|
|
</script> |
|
|
|