|
|
|
|
@ -298,6 +298,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import {getContract,addContrant,delContract} from "@/api/contract/contract"
|
|
|
|
|
import {getparameter} from "@/api/system/dictionary"
|
|
|
|
|
import {listdeptNoAuth} from "@/api/system/department";
|
|
|
|
|
@ -312,6 +313,9 @@ import paymentRegistration from "./components/paymentRegistration";
|
|
|
|
|
import contractSign from "@/views/contract/components/contractSign";
|
|
|
|
|
import contractPaymentRegistration from "@/views/contract/components/contractPaymentRegistration";
|
|
|
|
|
import {login} from "@/api/user";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components:{
|
|
|
|
|
editor,
|
|
|
|
|
@ -381,6 +385,7 @@ export default {
|
|
|
|
|
width: 120,
|
|
|
|
|
prop:'type',
|
|
|
|
|
formatter:(cell,data,value)=>{
|
|
|
|
|
|
|
|
|
|
switch (value){
|
|
|
|
|
case 1:
|
|
|
|
|
return "服务"
|
|
|
|
|
@ -713,7 +718,6 @@ export default {
|
|
|
|
|
|
|
|
|
|
return sums
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
cellStyle({row, column, rowIndex, columnIndex}){
|
|
|
|
|
if(column.property === 'req_status'){
|
|
|
|
|
if(row.is_plan === 1){
|
|
|
|
|
@ -888,6 +892,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
//获取合同列表
|
|
|
|
|
async getContracts(){
|
|
|
|
|
|
|
|
|
|
const res = await getContract({
|
|
|
|
|
keyword:this.select.keyword,
|
|
|
|
|
page_size:10,
|
|
|
|
|
@ -903,6 +908,7 @@ export default {
|
|
|
|
|
status:this.select.status,
|
|
|
|
|
is_auth:1
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
this.list = res.list.data
|
|
|
|
|
this.total = res.list.total
|
|
|
|
|
this.tableTotal.fundLogTotal = res.fund_log_total
|
|
|
|
|
|