|
@@ -0,0 +1,991 @@
|
|
|
|
+<template>
|
|
|
|
+ <div>
|
|
|
|
+ <el-form size="middle" :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="formReadOnly"
|
|
|
|
+ label-width="150px">
|
|
|
|
+
|
|
|
|
+ <el-divider content-position="left"><i class="el-icon-document"></i> 客户信息</el-divider>
|
|
|
|
+ <el-row :gutter="0">
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="委托方联系人" prop="clientContacts"
|
|
|
|
+ :rules="[
|
|
|
|
+ // {required: true, message: '委托方联系人', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="100" :disabled="true" @focus="openWorkClient2()" v-model="inputForm.clientContacts" placeholder="请选择委托方联系人">
|
|
|
|
+ <el-button slot="append" :disabled="true" icon="el-icon-search" @click="openWorkClient2()"></el-button>
|
|
|
|
+ </el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="客户编号" prop="customerNo"
|
|
|
|
+ :rules="[
|
|
|
|
+ ]">
|
|
|
|
+ <el-input :disabled="true" v-model="inputForm.customerNo" placeholder="请填写客户编号" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="统一社会信用代码" prop="uscCode"
|
|
|
|
+ :rules="[
|
|
|
|
+ ]">
|
|
|
|
+ <el-input :disabled="true" v-model="inputForm.uscCode" placeholder="请填写统一社会信用代码" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="委托方联系人电话" prop="clientContactsPhone"
|
|
|
|
+ :rules="[
|
|
|
|
+ // {required: true, message: '委托方联系人电话', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="15" :disabled="true" v-model="inputForm.clientContactsPhone" placeholder="请输入委托方联系人电话"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="地址" prop="address"
|
|
|
|
+ :rules="[
|
|
|
|
+ ]">
|
|
|
|
+ <el-input :disabled="true" v-model="inputForm.address" placeholder="地址" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-divider content-position="left"><i class="el-icon-document"></i> 基本信息</el-divider>
|
|
|
|
+ <el-row :gutter="0">
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="合同名称" prop="contractName"
|
|
|
|
+ :rules="[{required: true, message: '合同名称不能为空', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input v-model="inputForm.contractName" :disabled="true" placeholder="请输入合同名称" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="合同编号" prop="contractNo">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" v-model="inputForm.contractNo" placeholder="自动生成"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <!-- <el-col :span="12">-->
|
|
|
|
+ <!-- <el-form-item label="合同状态" prop="contractStatus">-->
|
|
|
|
+ <!-- <el-input maxlength="64" v-model="inputForm.contractStatus" :disabled="true" placeholder="请输入合同状态"></el-input>-->
|
|
|
|
+ <!-- </el-form-item>-->
|
|
|
|
+ <!-- </el-col>-->
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="付款主体" prop="payerSubject"
|
|
|
|
+ :rules="[{required: true, message: '付款主体不能为空', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-select :disabled="true" v-model="inputForm.payerSubject" placeholder="请选择付款主体" style="width:100%;">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in $dictUtils.getDictList('cw_payment_subject')"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="付款方式" prop="paymentMethod"
|
|
|
|
+ :rules="[{required: true, message: '付款方式不能为空', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-select :disabled="true" v-model="inputForm.paymentMethod" placeholder="请选择付款方式" style="width:100%;">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in $dictUtils.getDictList('cw_payment_method')"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="签约日期" prop="signingDate"
|
|
|
|
+ :rules="[
|
|
|
|
+ {required: true, message:'请输入签约日期', trigger:'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-date-picker
|
|
|
|
+ :disabled="true"
|
|
|
|
+ placement="bottom-start"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ v-model="inputForm.signingDate"
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ placeholder="选择日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="合同金额类别" prop="contractAmountType"
|
|
|
|
+ :rules="[
|
|
|
|
+ {required: true, message:'请选择合同金额类别', trigger:'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-radio-group :disabled="true" v-model="inputForm.contractAmountType">
|
|
|
|
+ <el-radio v-for="item in $dictUtils.getDictList('contract_amount_type')" :label="item.value" >{{item.label}}</el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="合同金额(元)" prop="contractAmount" v-if="inputForm.contractAmountType === '1'"
|
|
|
|
+ :rules="[
|
|
|
|
+ {required: true, message:'请输入合同金额(元)', trigger:'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="15" :disabled="true" v-model="inputForm.contractAmount" placeholder="请输入合同金额(元)"
|
|
|
|
+ @keyup.native="inputForm.contractAmount = twoDecimalPlaces(inputForm.contractAmount)"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="合同实际金额" prop="actualContractAmount"
|
|
|
|
+ :rules="[{required: true, message: '请填写合同实际金额', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" v-model="inputForm.actualContractAmount" ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="合同份数" prop="contractNum"
|
|
|
|
+ :rules="[{required: true, message: '合同份数', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" v-model="inputForm.contractNum" placeholder="请输入合同份数"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="对方合同编号" prop="contractOpposite">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" v-model="inputForm.contractOpposite" placeholder="请填写对方合同编号"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="24">
|
|
|
|
+ <el-form-item label="收费标准" prop="contractFees">
|
|
|
|
+ <el-checkbox-group v-model="inputForm.contractFees">
|
|
|
|
+ <el-checkbox @change="changeContractFee" :disabled="true" v-for="item in $dictUtils.getDictList('contract_fee')" :label="item.value">
|
|
|
|
+ {{item.label}}
|
|
|
|
+ </el-checkbox>
|
|
|
|
+ </el-checkbox-group>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="24">
|
|
|
|
+ <el-form-item prop="contractFee">
|
|
|
|
+ <el-input style="width: 100%" :disabled="true" placeholder="请选择收费标准" v-model="inputForm.contractFee"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="修改次数" prop="changeNum"
|
|
|
|
+ :rules="[{required: true, message: '修改次数', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" v-model="inputForm.changeNum" placeholder="请输入修改次数"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="所属部门" prop="departmentName"
|
|
|
|
+ :rules="[{required: true, message: '所属部门', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" v-model="inputForm.departmentName" placeholder="请输入所属部门"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+<!-- <el-form-item prop="department" label="所属部门">-->
|
|
|
|
+<!-- <SelectTree-->
|
|
|
|
+<!-- ref="officeTree"-->
|
|
|
|
+<!-- :props="{-->
|
|
|
|
+<!-- value: 'id', // ID字段名-->
|
|
|
|
+<!-- label: 'name', // 显示名称-->
|
|
|
|
+<!-- children: 'children' // 子级字段名-->
|
|
|
|
+<!-- }"-->
|
|
|
|
+<!-- :disabled="true"-->
|
|
|
|
+<!-- :url="`/sys/office/treeData?type=1`"-->
|
|
|
|
+<!-- :value="inputForm.department"-->
|
|
|
|
+<!-- :accordion="true"-->
|
|
|
|
+<!-- size="medium"-->
|
|
|
|
+<!-- @getValue="(value) => {inputForm.department=value}"/>-->
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="案卷号" prop="filedNo"
|
|
|
|
+ :rules="[{required: true, message: '请输入案卷号', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="15" v-model="inputForm.filedNo" placeholder="请输入案卷号"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="确认案卷号" prop="confirmFiledNo"
|
|
|
|
+ :rules="[{required: true, message: '请输入确认案卷号', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="15" @change="checkFiledNo" v-model="inputForm.confirmFiledNo" placeholder="请输入确认案卷号"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="创建人" prop="createBy"
|
|
|
|
+ :rules="[{required: true, message: '创建人', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" v-model="inputForm.createBy" placeholder="请输入创建人"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="创建时间" prop="createDate">
|
|
|
|
+ <el-date-picker
|
|
|
|
+ placement="bottom-start"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ v-model="inputForm.createDate"
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ :disabled="true"
|
|
|
|
+ placeholder="选择日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="付款约定" prop="paymentAgreement">
|
|
|
|
+ <el-input maxlength="64" :disabled="true" type="textarea" v-model="inputForm.paymentAgreement" placeholder="请输入付款约定"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ </el-row>
|
|
|
|
+ </el-form>
|
|
|
|
+ <el-tabs v-model="activeName" type="border-card" @tab-click="tabHandleClick">
|
|
|
|
+ <el-tab-pane label="合同正文" name="uploadFile">
|
|
|
|
+ <!-- 合同正文-->
|
|
|
|
+ <UpLoadComponent ref="uploadFile"></UpLoadComponent>
|
|
|
|
+ </el-tab-pane>
|
|
|
|
+ <el-tab-pane label="参与签约方" name="contactParty">
|
|
|
|
+ <el-row :gutter="15">
|
|
|
|
+ <el-button type="info" :disabled="true" style="margin-bottom: 15px" size="mini" @click="openWorkClient">
|
|
|
|
+ 新增参与签约方
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-row :gutter="15">
|
|
|
|
+ <el-form :disabled="method === 'view'">
|
|
|
|
+ <vxe-table
|
|
|
|
+ border
|
|
|
|
+ show-overflow
|
|
|
|
+ show-footer
|
|
|
|
+ :column-config="{resizable: true}"
|
|
|
|
+ ref="contactTable"
|
|
|
|
+ :key="tableKeyClient"
|
|
|
|
+ class="vxe-table-element"
|
|
|
|
+ :data="inputForm.cwWorkClientContactDTOList"
|
|
|
|
+ style=""
|
|
|
|
+ @cell-click=""
|
|
|
|
+ @edit-closed=""
|
|
|
|
+ highlight-current-row
|
|
|
|
+ :edit-config="{trigger: 'click', mode: 'row', showStatus: false, autoClear: false}"
|
|
|
|
+ >
|
|
|
|
+ <vxe-table-column align="center" field="no" title="客户编号" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <el-input :readonly="true" v-model="scope.row.no" placeholder="客户编号" clearable></el-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column align="center" field="name" title="客户名称" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <el-input :readonly="true" v-model="scope.row.name" placeholder="客户名称" clearable></el-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column align="center" title="操作" width="100">
|
|
|
|
+ <template v-slot="scope">
|
|
|
|
+ <el-button size="mini" :disabled="true" type="danger" @click="removeEvent(scope.row,scope.$rowIndex,'client')">删除</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ </vxe-table>
|
|
|
|
+ </el-form>
|
|
|
|
+ </el-row>
|
|
|
|
+ </el-tab-pane>
|
|
|
|
+ <el-tab-pane label="合同归档文件" name="archiveFile">
|
|
|
|
+ <!-- 合同归档文件-->
|
|
|
|
+ <UpLoadComponent ref="archiveFile"></UpLoadComponent>
|
|
|
|
+ </el-tab-pane>
|
|
|
|
+
|
|
|
|
+ </el-tabs>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <el-image-viewer
|
|
|
|
+ v-if="showViewer"
|
|
|
|
+ :on-close="closeViewer"
|
|
|
|
+ :url-list="[url]"
|
|
|
|
+ zIndex="9999"/>
|
|
|
|
+ <WorkClientChooseForm ref="workClientChooseForm" @getWorkClientChoose="getWorkClientChoose"></WorkClientChooseForm>
|
|
|
|
+ <WorkClientChooseRadio ref="workClientChooseRadio" @getWorkClientRadioChoose="getWorkClientChoose2"></WorkClientChooseRadio>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+ import ContractInfoService from '@/api/cw/workContract/ContractInfoService'
|
|
|
|
+ import ContractFilePaperService from '@/api/cw/workContract/ContractFilePaperService'
|
|
|
|
+ // import ContractFileService from '../../../../api/cw/workContract/ContractFileService'
|
|
|
|
+ import UpLoadComponent from '@/views/common/UpLoadComponent'
|
|
|
|
+ import WorkClientChooseForm from '../workClientInfo/WorkClientChooseForm'
|
|
|
|
+ import SelectTree from '@/components/treeSelect/treeSelect.vue'
|
|
|
|
+ import WorkClientChooseRadio from '../workClientInfo/WorkClientChooseRadio'
|
|
|
|
+ import OSSSerive, {
|
|
|
|
+ httpRequest,
|
|
|
|
+ toHref,
|
|
|
|
+ openWindowOnUrl,
|
|
|
|
+ handleRemove,
|
|
|
|
+ fileName
|
|
|
|
+ } from '@/api/sys/OSSService'
|
|
|
|
+ import moment from 'moment'
|
|
|
|
+ import ElImageViewer from 'element-ui/packages/image/src/image-viewer'
|
|
|
|
+ export default {
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ visable: false,
|
|
|
|
+ gridData: [],
|
|
|
|
+ radio: 0,
|
|
|
|
+ tableData: [],
|
|
|
|
+ dataList: [],
|
|
|
|
+ dataListNew: [],
|
|
|
|
+ title: '',
|
|
|
|
+ method: '',
|
|
|
|
+ isSubmit: false,
|
|
|
|
+ visible: false,
|
|
|
|
+ loading: false,
|
|
|
|
+ returnForm: {
|
|
|
|
+ departmentName: '', // 部门名称
|
|
|
|
+ customerId: '', // 客户id
|
|
|
|
+ uscCode: '',
|
|
|
|
+ filedNo: '',
|
|
|
|
+ confirmFiledNo: '',
|
|
|
|
+ clientId: '',
|
|
|
|
+ name: '',
|
|
|
|
+ contractDate: '',
|
|
|
|
+ effectiveDate: '',
|
|
|
|
+ closingDate: '',
|
|
|
|
+ contractType: '',
|
|
|
|
+ contractAmountType: '',
|
|
|
|
+ contractAmount: '',
|
|
|
|
+ contractOpposite: '',
|
|
|
|
+ fees: '',
|
|
|
|
+ contractFee: '',
|
|
|
|
+ describes: '',
|
|
|
|
+ contractSpecial: '',
|
|
|
|
+ remarks: '',
|
|
|
|
+ clientName: '',
|
|
|
|
+ status: '',
|
|
|
|
+ contractProperList: [],
|
|
|
|
+ contractInfoList: [],
|
|
|
|
+ customerNo: '',
|
|
|
|
+ customerName: '',
|
|
|
|
+ contractFees: []
|
|
|
|
+ },
|
|
|
|
+ inputForm: {
|
|
|
|
+ departmentName: '', // 部门名称
|
|
|
|
+ customerId: '', // 客户id
|
|
|
|
+ uscCode: '',
|
|
|
|
+ customerNo: '',
|
|
|
|
+ contractFee: '',
|
|
|
|
+ contractFees: [],
|
|
|
|
+ contractOpposite: '',
|
|
|
|
+ contractAmountType: '',
|
|
|
|
+ contractNo: '',
|
|
|
|
+ contractName: '',
|
|
|
|
+ payerSubject: '',
|
|
|
|
+ paymentMethod: '',
|
|
|
|
+ contractInfoId: '',
|
|
|
|
+ signingDate: '',
|
|
|
|
+ contractAmount: '',
|
|
|
|
+ actualContractAmount: '',
|
|
|
|
+ contractNum: '',
|
|
|
|
+ contractStatus: '',
|
|
|
|
+ paymentAgreement: '',
|
|
|
|
+ changeNum: '',
|
|
|
|
+ department: '',
|
|
|
|
+ clientContacts: '',
|
|
|
|
+ clientContactsPhone: '',
|
|
|
|
+ contractApprovalType: '',
|
|
|
|
+ createBy: JSON.parse(localStorage.getItem('user')).name,
|
|
|
|
+ createId: JSON.parse(localStorage.getItem('user')).id,
|
|
|
|
+ createDate: '',
|
|
|
|
+ contractProperList: [],
|
|
|
|
+ contractInfoList: [],
|
|
|
|
+ filedNo: '',
|
|
|
|
+ confirmFiledNo: ''
|
|
|
|
+ },
|
|
|
|
+ activeName: 'archiveFile',
|
|
|
|
+ filesArra2: [],
|
|
|
|
+ fileList: [],
|
|
|
|
+ isFlag: true,
|
|
|
|
+ showViewer: false, // 显示查看器
|
|
|
|
+ url: '',
|
|
|
|
+ rowurl: '',
|
|
|
|
+ src: '',
|
|
|
|
+ onedit: false,
|
|
|
|
+ type: '',
|
|
|
|
+ loadProgress: 0, // 动态显示进度条
|
|
|
|
+ progressFlag: false, // 关闭进度条
|
|
|
|
+ promi: null,
|
|
|
|
+ keyWatch: '',
|
|
|
|
+ tableKeyClient: '1'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ props: {
|
|
|
|
+ businessId: {
|
|
|
|
+ type: String,
|
|
|
|
+ default: ''
|
|
|
|
+ },
|
|
|
|
+ formReadOnly: {
|
|
|
|
+ type: Boolean,
|
|
|
|
+ default: false
|
|
|
|
+ },
|
|
|
|
+ status: {
|
|
|
|
+ type: String,
|
|
|
|
+ default: ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ components: {
|
|
|
|
+ ElImageViewer,
|
|
|
|
+ UpLoadComponent,
|
|
|
|
+ WorkClientChooseForm,
|
|
|
|
+ SelectTree,
|
|
|
|
+ WorkClientChooseRadio
|
|
|
|
+ },
|
|
|
|
+ ossService: null,
|
|
|
|
+ // workContractService: null,
|
|
|
|
+ contractInfoService: null,
|
|
|
|
+ // contractFileService: null,
|
|
|
|
+ contractFilePaperService: null,
|
|
|
|
+ created () {
|
|
|
|
+ this.ossService = new OSSSerive()
|
|
|
|
+ // this.workContractService = new WorkContractService()
|
|
|
|
+ this.contractInfoService = new ContractInfoService()
|
|
|
|
+ // this.contractFileService = new ContractFileService()
|
|
|
|
+ this.contractFilePaperService = new ContractFilePaperService()
|
|
|
|
+ },
|
|
|
|
+ mounted () {
|
|
|
|
+ window.onPreview = this.onPreview
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ officeName () {
|
|
|
|
+ return JSON.parse(localStorage.getItem('user')).officeDTO.name
|
|
|
|
+ },
|
|
|
|
+ bus: {
|
|
|
|
+ get () {
|
|
|
|
+ this.$refs.archiveFile.setDividerName('附件', false)
|
|
|
|
+ this.$refs.uploadFile.setDividerName('附件', false)
|
|
|
|
+ return this.businessId
|
|
|
|
+ },
|
|
|
|
+ set (val) {
|
|
|
|
+ this.businessId = val
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ 'keyWatch': {
|
|
|
|
+ handler (newVal) {
|
|
|
|
+ if (this.commonJS.isNotEmpty(this.bus)) {
|
|
|
|
+ this.init('', this.bus)
|
|
|
|
+ } else {
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ checkFiledNo () {
|
|
|
|
+ let filedNo = this.inputForm.filedNo
|
|
|
|
+ let confirmFiledNo = this.inputForm.confirmFiledNo
|
|
|
|
+ if (filedNo !== confirmFiledNo) {
|
|
|
|
+ this.$message.warning(`案卷号和确认案卷号不一致`)
|
|
|
|
+ this.inputForm.confirmFiledNo = ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ getKeyWatch (keyWatch) {
|
|
|
|
+ this.keyWatch = keyWatch
|
|
|
|
+ },
|
|
|
|
+ uploadVideoProcess (event, file, fileList) {
|
|
|
|
+ this.progressFlag = true // 显示进度条
|
|
|
|
+ this.loadProgress = parseInt(event.percent) // 动态获取文件上传进度
|
|
|
|
+ if (this.loadProgress >= 100) {
|
|
|
|
+ this.loadProgress = 100
|
|
|
|
+ setTimeout(() => { this.progressFlag = false }, 1000) // 一秒后关闭进度条
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ async toHref (row) {
|
|
|
|
+ toHref(row)
|
|
|
|
+ },
|
|
|
|
+ onPreview (url) {
|
|
|
|
+ this.url = url
|
|
|
|
+ this.showViewer = true
|
|
|
|
+ },
|
|
|
|
+ // 关闭查看器
|
|
|
|
+ closeViewer () {
|
|
|
|
+ this.url = ''
|
|
|
|
+ this.showViewer = false
|
|
|
|
+ },
|
|
|
|
+ init (method, id) {
|
|
|
|
+ // console.log(method)
|
|
|
|
+ // console.log('id', id)
|
|
|
|
+ this.dataList = []
|
|
|
|
+ this.dataListNew = []
|
|
|
|
+ this.method = method
|
|
|
|
+ this.inputForm = {
|
|
|
|
+ departmentName: '', // 部门名称
|
|
|
|
+ customerId: '', // 客户id
|
|
|
|
+ uscCode: '',
|
|
|
|
+ customerNo: '',
|
|
|
|
+ contractFee: '',
|
|
|
|
+ contractFees: [],
|
|
|
|
+ contractOpposite: '',
|
|
|
|
+ contractAmountType: '',
|
|
|
|
+ contractNo: '',
|
|
|
|
+ contractName: '',
|
|
|
|
+ payerSubject: '',
|
|
|
|
+ paymentMethod: '',
|
|
|
|
+ signingDate: '',
|
|
|
|
+ contractAmount: '',
|
|
|
|
+ actualContractAmount: '',
|
|
|
|
+ contractNum: '',
|
|
|
|
+ contractStatus: '',
|
|
|
|
+ paymentAgreement: '',
|
|
|
|
+ changeNum: '',
|
|
|
|
+ department: this.officeName,
|
|
|
|
+ clientContacts: '',
|
|
|
|
+ contractInfoId: '',
|
|
|
|
+ clientContactsPhone: '',
|
|
|
|
+ contractApprovalType: '',
|
|
|
|
+ createBy: JSON.parse(localStorage.getItem('user')).name,
|
|
|
|
+ createId: JSON.parse(localStorage.getItem('user')).id,
|
|
|
|
+ createDate: '',
|
|
|
|
+ contractProperList: [],
|
|
|
|
+ contractInfoList: [],
|
|
|
|
+ cwWorkClientContactDTOList: [],
|
|
|
|
+ filedNo: '',
|
|
|
|
+ confirmFiledNo: ''
|
|
|
|
+ }
|
|
|
|
+ this.inputForm.id = id
|
|
|
|
+ if (method === 'add') {
|
|
|
|
+ this.title = `新建合同登记`
|
|
|
|
+ } else if (method === 'edit') {
|
|
|
|
+ this.title = '修改合同登记'
|
|
|
|
+ } else if (method === 'view') {
|
|
|
|
+ this.inputForm.showVi = false
|
|
|
|
+ this.title = '查看合同登记'
|
|
|
|
+ }
|
|
|
|
+ this.visible = true
|
|
|
|
+ this.loading = false
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.loading = true
|
|
|
|
+ this.$refs.uploadFile.clearUpload()
|
|
|
|
+ this.$refs.archiveFile.clearUpload()
|
|
|
|
+ // 查询合同登记数据
|
|
|
|
+ console.log('this.inputForm.id', this.inputForm.id)
|
|
|
|
+ this.contractInfoService.findById(this.inputForm.id).then(({data}) => {
|
|
|
|
+ this.inputForm = this.recover(this.inputForm, data)
|
|
|
|
+ const f = []
|
|
|
|
+ if (data.fees !== null && data.fees !== undefined && data.fees !== '') {
|
|
|
|
+ data.fees.split(',').forEach(item => {
|
|
|
|
+ if (item !== null && item !== undefined && item !== '') {
|
|
|
|
+ f.push(item)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ this.inputForm.contractFees = f
|
|
|
|
+ if (this.formReadOnly) {
|
|
|
|
+ method = 'view'
|
|
|
|
+ }
|
|
|
|
+ console.log('data', data)
|
|
|
|
+ console.log('this.inputForm.department', this.inputForm.department)
|
|
|
|
+ this.$refs.uploadFile.newUpload('view', this.inputForm.contractProperList, 'cwWorkContract', null, null, null, null, false)
|
|
|
|
+ this.$refs.archiveFile.newUpload('view', this.inputForm.contractInfoList, 'cwWorkContract', null, null, null, null, false)
|
|
|
|
+ this.loading = false
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ )
|
|
|
|
+ },
|
|
|
|
+ tabHandleClick (event) {
|
|
|
|
+ // console.log(event)
|
|
|
|
+ },
|
|
|
|
+ saveData (data, method) {
|
|
|
|
+ // console.log('data', data)
|
|
|
|
+ this.inputForm = this.recover(this.inputForm, data)
|
|
|
|
+ this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
|
|
|
|
+ },
|
|
|
|
+ removeEvent (row, rowIndex, type) {
|
|
|
|
+ if (type === 'client') {
|
|
|
|
+ this.$refs.contactTable.remove(row)
|
|
|
|
+ this.inputForm.cwWorkClientContactDTOList.splice(rowIndex, 1)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ openWorkClient () {
|
|
|
|
+ this.$refs.workClientChooseForm.init()
|
|
|
|
+ },
|
|
|
|
+ openWorkClient2 () {
|
|
|
|
+ this.$refs.workClientChooseRadio.init()
|
|
|
|
+ },
|
|
|
|
+ getWorkClientChoose (list) {
|
|
|
|
+ // console.log('list', list)
|
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.cwWorkClientContactDTOList)) {
|
|
|
|
+ this.inputForm.cwWorkClientContactDTOList = []
|
|
|
|
+ }
|
|
|
|
+ let _this = this
|
|
|
|
+ let _list = list
|
|
|
|
+ const waitForEach = function () {
|
|
|
|
+ return new Promise(function (resolve, reject) {
|
|
|
|
+ _list.forEach((item) => {
|
|
|
|
+ _this.inputForm.cwWorkClientContactDTOList.forEach(client => {
|
|
|
|
+ if (item.no === client.no) {
|
|
|
|
+ _this.$message.error('已存在客户 “' + client.name + '”,请重新选择')
|
|
|
|
+ throw new Error('已存在客户 “' + client.name + '”,请重新选择')
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ resolve()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ waitForEach().then(() => {
|
|
|
|
+ list.forEach(item => {
|
|
|
|
+ this.$refs.contactTable.insertAt(item)
|
|
|
|
+ this.inputForm.cwWorkClientContactDTOList.push(item)
|
|
|
|
+ this.tableKeyClient = Math.random()
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ getWorkClientChoose2 (list) {
|
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.cwWorkClientContactDTOList)) {
|
|
|
|
+ this.inputForm.cwWorkClientContactDTOList = []
|
|
|
|
+ }
|
|
|
|
+ console.log('list', list)
|
|
|
|
+ let _this = this
|
|
|
|
+ let _list = list
|
|
|
|
+ const waitForEach = function () {
|
|
|
|
+ return new Promise(function (resolve, reject) {
|
|
|
|
+ _this.inputForm.cwWorkClientContactDTOList.forEach(client => {
|
|
|
|
+ if (_list.no === client.no) {
|
|
|
|
+ _this.$message.error('已存在客户 “' + client.name + '”,请重新选择')
|
|
|
|
+ throw new Error('已存在客户 “' + client.name + '”,请重新选择')
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ resolve()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ waitForEach().then(() => {
|
|
|
|
+ // eslint-disable-next-line no-unused-vars
|
|
|
|
+ let item = {
|
|
|
|
+ no: list.no,
|
|
|
|
+ name: list.name
|
|
|
|
+ }
|
|
|
|
+ console.log('list', list)
|
|
|
|
+ this.inputForm.customerNo = list.no
|
|
|
|
+ this.inputForm.uscCode = list.uscCode
|
|
|
|
+ this.inputForm.address = list.address
|
|
|
|
+ this.inputForm.customerId = list.id
|
|
|
|
+ this.inputForm.cwWorkClientContactDTOList.push(item)
|
|
|
|
+ this.inputForm.clientContacts = list.name
|
|
|
|
+ this.inputForm.clientContactsPhone = list.mobile
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 表单提交
|
|
|
|
+ // 暂存
|
|
|
|
+ saveForm (callback) {
|
|
|
|
+ if (this.$refs.archiveFile.checkProgress() || this.$refs.uploadFile.checkProgress()) {
|
|
|
|
+ this.loading = false
|
|
|
|
+ throw new Error()
|
|
|
|
+ } else {
|
|
|
|
+ let _this = this
|
|
|
|
+ const wait = function () {
|
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
|
+ // 合同登记暂存
|
|
|
|
+ if (_this.status === 'startAndHold' || _this.status === 'startAndHoldFiled') {
|
|
|
|
+ _this.loading = true
|
|
|
|
+ if (_this.status === 'startAndHold') {
|
|
|
|
+ _this.inputForm.status = '1'
|
|
|
|
+ }
|
|
|
|
+ if (_this.status === 'startAndHoldFiled') {
|
|
|
|
+ _this.inputForm.status = '5'
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ console.log('actualContractAmount', _this.inputForm.actualContractAmount)
|
|
|
|
+ // eslint-disable-next-line no-unused-vars
|
|
|
|
+ // 合同登记归档暂存
|
|
|
|
+ if (_this.status === 'startAndHoldFiled') {
|
|
|
|
+ _this.inputForm.filedPaperType = '1'
|
|
|
|
+ _this.inputForm.contractInfoId = _this.businessId
|
|
|
|
+ _this.inputForm.contractInfoList = _this.$refs.archiveFile.getDataList()
|
|
|
|
+ console.log('actualContractAmount', _this.inputForm.actualContractAmount)
|
|
|
|
+ // this.inputForm.contractInfoList = this.$refs.uploadFile.getDataList()
|
|
|
|
+ _this.contractFilePaperService.save(_this.inputForm).then(() => {
|
|
|
|
+ // _this.contractInfoService.updateInfo(_this.inputForm).then(() => {
|
|
|
|
+ // resolve()
|
|
|
|
+ // })
|
|
|
|
+ resolve()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ wait().then(() => {
|
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
|
+ this.loading = false
|
|
|
|
+ // this.businessId = ''
|
|
|
|
+ callback()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 送审
|
|
|
|
+ startForm (callback) {
|
|
|
|
+ if (this.$refs.archiveFile.checkProgress() || this.$refs.uploadFile.checkProgress()) {
|
|
|
|
+ this.loading = false
|
|
|
|
+ throw new Error()
|
|
|
|
+ } else {
|
|
|
|
+ let id = this.inputForm.id
|
|
|
|
+ this.loading = true
|
|
|
|
+ this.inputForm.status = '5'
|
|
|
|
+ this.inputForm.filedPaperType = '2'
|
|
|
|
+ this.inputForm.contractProperList = []
|
|
|
|
+ if (this.inputForm.filedNo === '' || this.inputForm.filedNo === undefined) {
|
|
|
|
+ this.loading = false
|
|
|
|
+ this.$message.error('请填写案卷号')
|
|
|
|
+ throw new Error('请填写案卷号')
|
|
|
|
+ }
|
|
|
|
+ if (this.inputForm.confirmFiledNo === '' || this.inputForm.confirmFiledNo === undefined) {
|
|
|
|
+ this.loading = false
|
|
|
|
+ this.$message.error('请填写确认案卷号')
|
|
|
|
+ throw new Error('请填写确认案卷号')
|
|
|
|
+ }
|
|
|
|
+ // this.contractInfoService.updateInfo(this.inputForm)
|
|
|
|
+ // console.log('inputForm', this.inputForm)
|
|
|
|
+ this.inputForm.contractInfoId = id
|
|
|
|
+ this.inputForm.contractInfoList = this.$refs.archiveFile.getDataList()
|
|
|
|
+ // console.log('this.inputForm', this.inputForm)
|
|
|
|
+ // this.inputForm.contractProperList = this.$refs.uploadFile.getDataList()
|
|
|
|
+ this.contractFilePaperService.save(this.inputForm).then(({data}) => {
|
|
|
|
+ // console.log('data', data)
|
|
|
|
+ callback(data.businessTable, data.businessId, this.inputForm)
|
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
|
+ this.loading = false
|
|
|
|
+ })
|
|
|
|
+ // this.contractFileService.save(this.inputForm).then(({data}) => {
|
|
|
|
+ // // console.log('data', data)
|
|
|
|
+ // callback(data.businessTable, data.businessId, this.inputForm)
|
|
|
|
+ // this.$refs.inputForm.resetFields()
|
|
|
|
+ // this.loading = false
|
|
|
|
+ // })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 通过
|
|
|
|
+ agreeForm (callback) {
|
|
|
|
+ if (this.$refs.archiveFile.checkProgress() || this.$refs.uploadFile.checkProgress()) {
|
|
|
|
+ this.loading = false
|
|
|
|
+ throw new Error()
|
|
|
|
+ } else {
|
|
|
|
+ let id = this.inputForm.id
|
|
|
|
+ this.loading = true
|
|
|
|
+ this.inputForm.status = '5'
|
|
|
|
+ this.inputForm.filedPaperType = '5'
|
|
|
|
+ // this.inputForm.contractInfoList = this.$refs.archiveFile.getDataList()
|
|
|
|
+ this.inputForm.contractProperList = []
|
|
|
|
+ // console.log('this.inputForm.contractProperList', this.inputForm.contractProperList)
|
|
|
|
+ // this.contractInfoService.updateInfo(this.inputForm)
|
|
|
|
+ this.inputForm.contractInfoId = id
|
|
|
|
+ // this.inputForm.contractInfoList = this.$refs.uploadFile.getDataList()
|
|
|
|
+ this.contractFilePaperService.save(this.inputForm).then(({data}) => {
|
|
|
|
+ callback(data.businessTable, data.businessId, this.inputForm)
|
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
|
+ this.loading = false
|
|
|
|
+ this.businessId = ''
|
|
|
|
+ })
|
|
|
|
+ // this.contractFileService.save(this.inputForm).then(({data}) => {
|
|
|
|
+ // callback(data.businessTable, data.businessId, this.inputForm)
|
|
|
|
+ // this.$refs.inputForm.resetFields()
|
|
|
|
+ // this.loading = false
|
|
|
|
+ // this.businessId = ''
|
|
|
|
+ // })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ changeContractFee () {
|
|
|
|
+ let fee = ''
|
|
|
|
+ let fees = this.inputForm.contractFees
|
|
|
|
+ console.log('fees', fees)
|
|
|
|
+ if (fees.length > 0) {
|
|
|
|
+ fees.forEach(i => {
|
|
|
|
+ if (i === '1') {
|
|
|
|
+ i = '发改价格[2009]2914号'
|
|
|
|
+ fee = fee + ';' + i
|
|
|
|
+ }
|
|
|
|
+ if (i === '2') {
|
|
|
|
+ i = '其他'
|
|
|
|
+ fee = fee + ';' + i
|
|
|
|
+ }
|
|
|
|
+ this.inputForm.contractFee = fee.substring(1, fee.length)
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ this.inputForm.contractFee = ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ close () {
|
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
|
+ this.inputForm.clientName = ''
|
|
|
|
+ this.visible = false
|
|
|
|
+ this.showVi = true
|
|
|
|
+ this.$refs.archiveFile.clearUpload()
|
|
|
|
+ this.$refs.uploadFile.clearUpload()
|
|
|
|
+ },
|
|
|
|
+ httpRequest (file) {
|
|
|
|
+ httpRequest(file, fileName(file), 'workContract')
|
|
|
|
+ },
|
|
|
|
+ handleRemove () {
|
|
|
|
+ this.fileList = handleRemove()
|
|
|
|
+ },
|
|
|
|
+ changes (file, fileList) {
|
|
|
|
+ this.dataListNew = []
|
|
|
|
+ this.dataList.forEach((item) => {
|
|
|
|
+ this.dataListNew.push(item)
|
|
|
|
+ })
|
|
|
|
+ fileList.forEach((item) => {
|
|
|
|
+ item.createDate = moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
|
|
+ item.createBy = this.$store.state.user.name
|
|
|
|
+ this.dataListNew.push(item)
|
|
|
|
+ })
|
|
|
|
+ const isLt2M = file.size / 1024 / 1024 < 300
|
|
|
|
+ if (isLt2M === false) {
|
|
|
|
+ this.$message.error('文件大小不能超过 ' + 300 + 'M !')
|
|
|
|
+ this.fileList = []
|
|
|
|
+ this.filesArra2 = []
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ async showFile (row) {
|
|
|
|
+ await openWindowOnUrl(row)
|
|
|
|
+ },
|
|
|
|
+ // 排序
|
|
|
|
+ sortChangeHandle (column) {
|
|
|
|
+ this.orders = []
|
|
|
|
+ if (column.order != null) {
|
|
|
|
+ this.orders.push({column: this.$utils.toLine(column.prop), asc: column.order === 'ascending'})
|
|
|
|
+ }
|
|
|
|
+ this.refreshList()
|
|
|
|
+ },
|
|
|
|
+ deleteMsgById (row, index) {
|
|
|
|
+ this.dataListNew.splice(index, 1)
|
|
|
|
+ if (row.id !== null && row.id !== '' && row.id !== undefined) {
|
|
|
|
+ this.ossService.deleteMsgById(row.id)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ twoDecimalPlaces (num) {
|
|
|
|
+ let str = num.toString()
|
|
|
|
+ var len1 = str.substr(0, 1)
|
|
|
|
+ var len2 = str.substr(1, 1)
|
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
|
+ if (str.length > 1 && len1 == 0 && len2 != '.') {
|
|
|
|
+ str = str.substr(1, 1)
|
|
|
|
+ }
|
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
|
+ if (len1 == '.') {
|
|
|
|
+ str = ''
|
|
|
|
+ }
|
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
|
+ if (str.indexOf('.') != -1) {
|
|
|
|
+ var str_ = str.substr(str.indexOf('.') + 1)
|
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
|
+ if (str_.indexOf('.') != -1) {
|
|
|
|
+ str = str.substr(0, str.indexOf('.') + str_.indexOf('.') + 1)
|
|
|
|
+ }
|
|
|
|
+ if (str_.length > 2) {
|
|
|
|
+ this.$message.warning(`金额小数点后只能输入两位,请正确输入!`)
|
|
|
|
+ return (str = '')
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // eslint-disable-next-line no-useless-escape
|
|
|
|
+ str = str.replace(/[^\d^\.]+/g, '') // 保留数字和小数点
|
|
|
|
+ return str
|
|
|
|
+ },
|
|
|
|
+ positiveInteger (num) {
|
|
|
|
+ let str = num.toString()
|
|
|
|
+ var len1 = str.substr(0, 1)
|
|
|
|
+ var len2 = str.substr(1, 1)
|
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
|
+ if (str.length > 1 && len1 == 0 && len2 != '.') {
|
|
|
|
+ str = str.substr(1, 1)
|
|
|
|
+ }
|
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
|
+ if (len1 == '.') {
|
|
|
|
+ str = ''
|
|
|
|
+ }
|
|
|
|
+ // eslint-disable-next-line no-useless-escape
|
|
|
|
+ str = str.replace(/[^\d^]+/g, '') // 保留数字
|
|
|
|
+ return str
|
|
|
|
+ },
|
|
|
|
+ tableRowClassName ({row, rowIndex}) {
|
|
|
|
+ row.index = rowIndex
|
|
|
|
+ },
|
|
|
|
+ handleRadioChange (val) {
|
|
|
|
+ if (val) {
|
|
|
|
+ this.radio = val.index
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 关闭窗口时调用
|
|
|
|
+ closeXTable () {
|
|
|
|
+ this.closePop()
|
|
|
|
+ },
|
|
|
|
+ rowStyle (event) {
|
|
|
|
+ return 'cursor:pointer;'
|
|
|
|
+ },
|
|
|
|
+ closePop () {
|
|
|
|
+ this.visable = false
|
|
|
|
+ },
|
|
|
|
+ updateStatusById (type) {
|
|
|
|
+ if (this.$refs.archiveFile.checkProgress() || this.$refs.uploadFile.checkProgress()) {
|
|
|
|
+ this.loading = false
|
|
|
|
+ throw new Error()
|
|
|
|
+ } else {
|
|
|
|
+ // console.log('type' + type)
|
|
|
|
+ if (type === 'agree') {
|
|
|
|
+ this.inputForm.filedPaperType = '5'
|
|
|
|
+ // this.contractFileService.updateStatusById(this.inputForm)
|
|
|
|
+ this.contractFilePaperService.updateStatusById(this.inputForm)
|
|
|
|
+ }
|
|
|
|
+ // 驳回
|
|
|
|
+ if (type === 'reject') {
|
|
|
|
+ this.inputForm.filedPaperType = '4'
|
|
|
|
+ // this.contractFileService.updateStatusById(this.inputForm)
|
|
|
|
+ this.contractFilePaperService.updateStatusById(this.inputForm)
|
|
|
|
+ }
|
|
|
|
+ if (type === 'reback') {
|
|
|
|
+ this.inputForm.filedPaperType = '3'
|
|
|
|
+ // this.contractFileService.updateStatusById(this.inputForm)
|
|
|
|
+ this.contractFilePaperService.updateStatusById(this.inputForm)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ checkData () {
|
|
|
|
+ let begin = this.inputForm.effectiveDate
|
|
|
|
+ let close = this.inputForm.closingDate
|
|
|
|
+ if (close < begin) {
|
|
|
|
+ this.$message.warning(`合同终止日期要大于合同开始日期`)
|
|
|
|
+ this.inputForm.closingDate = ''
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style>
|
|
|
|
+ .tid_40 .vxe-body--column .vxe-cell{
|
|
|
|
+ padding: 1px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+ .tid_40 .vxe-header--row .col--last{
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+ .tid_45 .vxe-body--column .vxe-cell{
|
|
|
|
+ padding: 1px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+ .tid_45 .vxe-header--row .col--last{
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+</style>
|
|
|
|
+
|
|
|
|
+<style scoped>
|
|
|
|
+ .avatar{
|
|
|
|
+ height: 100px;
|
|
|
|
+ }
|
|
|
|
+ .el-divider__text {
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ }
|
|
|
|
+</style>
|