index.vue 11.4 KB
<template>
	<div class="NCC-common-layout">
		<div class="NCC-common-layout-center">
			<el-row class="NCC-common-search-box" :gutter="16">
				<el-form @submit.native.prevent>
					<el-col :span="6">
						<el-form-item label="项目名称">
							<el-select v-model="query.proName" placeholder="项目名称" clearable >
								<el-option v-for="(item, index) in proNameOptions" :key="index" :label="item.F_FullName" :value="item.F_Id"  />
							</el-select>
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="合同类型">
							<el-select v-model="query.contractType" placeholder="合同类型" clearable >
								<el-option v-for="(item, index) in contractTypeOptions" :key="index" :label="item.fullName" :value="item.id"  />
							</el-select>
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="我方签约人">
							<userSelect v-model="query.desPersonName" placeholder="请选择我方签约人" />
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item>
							<el-button type="primary" icon="el-icon-search" @click="search()">查询</el-button>
							<el-button icon="el-icon-refresh-right" @click="reset()">重置</el-button>
						</el-form-item>
					</el-col>
				</el-form>
			</el-row>
			<div class="NCC-common-layout-main NCC-flex-main">
				<div class="NCC-common-head">
					<div>
						<el-button type="primary" icon="el-icon-plus" @click="addOrUpdateHandle()">新增</el-button>
					</div>
					<div class="NCC-common-head-right">
						<el-tooltip effect="dark" content="刷新" placement="top">
							<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false" @click="reset()" />
						</el-tooltip>
						<screenfull :isContainer="true" />
					</div>
				</div>
				<NCC-table v-loading="listLoading" :data="list" @sort-change='sortChange'>
                   <el-table-column prop="contractId" label="合同编号/项目名称"  show-overflow-tooltip >
                     <template slot-scope="scope">
                         <p>{{ scope.row.contractId }}</p>
                         <p class="text-grey">{{ scope.row.proName }}</p>
                      </template>
                    </el-table-column>
					<el-table-column label="合同类型" width="80" prop="contractType" align="center">
							<template slot-scope="scope">{{ scope.row.contractType | dynamicText(contractTypeOptions) }}</template>
					</el-table-column>
                    <el-table-column prop="startTime" label="甲乙双方"  align="left"  width="260">
                        <template slot-scope="scope" algin="center"  >
                        <p class="text-warning">甲方:{{ scope.row.partyA  }}</p>
                        <p class="text-success">乙方:{{scope.row.partyB   }}</p>
                        </template>
                    </el-table-column>
					<el-table-column label="合同阶段" width="100" prop="stage" align="center">
							<template slot-scope="scope">{{ scope.row.stage | dynamicText(stageOptions) }}</template>
					</el-table-column>
                    <el-table-column label="合同金额(元)"  prop="amount" align="center" width="140">
						<template slot-scope="scope">
						 <p><el-tag type="success">{{ scope.row.amount | currency('¥') }}</el-tag></p>
                     </template>
                     </el-table-column>
                    <el-table-column label="签约时间"  prop="signingTime" align="center" width="100">
						<template slot-scope="scope">
                            <p class="text-primary">{{scope.row.signingTime | toDate("yyyy-MM-dd") }}</p>
                        </template>
					</el-table-column>
					<el-table-column prop="desPersonName" label="我方签约人" align="center" width="120" />
                    <el-table-column prop="startTime" label="履约时间/结束时间"  align="center"  width="140">
                        <template slot-scope="scope" algin="center"  >
                        <p class="text-purple">{{ scope.row.startTime | toDate("yyyy-MM-dd") }}</p>
                        <p class="text-danger">{{scope.row.endTime | toDate("yyyy-MM-dd") }}</p>
                        </template>
                    </el-table-column>
                    <el-table-column prop="lastHander" label="对方签约人"  align="center"  width="180">
                        <template slot-scope="scope" algin="center"  >
                        <p class="text-grey">{{ scope.row.lastHander  }}&nbsp;&nbsp;&nbsp;&nbsp;{{scope.row.lastHanderMobile}}</p>
                        </template>
                    </el-table-column>
                    <el-table-column prop="creater" label="创建用户/创建时间" align="center"  width="140">
                        <template slot-scope="scope" algin="center" >
                        <p>{{ scope.row.creater }}</p>
                        <p class="text-grey">{{scope.row.createTime | toDate("yyyy-MM-dd HH:mm") }}</p>
                        </template>
                    </el-table-column>
					<el-table-column label="操作" fixed="right" width="220">
							<template slot-scope="scope">
							<el-button type="text" @click="addOrUpdateHandle(scope.row.id)" >编辑</el-button>
							<el-button type="text" @click="handleDel(scope.row.id)" class="NCC-table-delBtn" >删除</el-button>
                            <el-button type="text" @click="addOrUpdateHandle(scope.row.id,true)" > 详细</el-button>
                            <el-button type="text"   >预览</el-button>
                            <el-button type="text"  >下载</el-button>
						</template>
					</el-table-column>
				</NCC-table>
                <pagination :total="total" :page.sync="listQuery.currentPage" :limit.sync="listQuery.pageSize" @pagination="initData" />
            </div>
        </div>
		<NCC-Form v-if="formVisible" ref="NCCForm" @refresh="refresh" />
		<ExportBox v-if="exportBoxVisible" ref="ExportBox" @download="download" />
	</div>
</template>
<script>
    import request from '@/utils/request'
    import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
    import NCCForm from './Form'
    import ExportBox from './ExportBox'
    import { previewDataInterface } from '@/api/systemData/dataInterface'
	export default {
        components: { NCCForm, ExportBox },
        data() {
            return {
                showAll: false,
				query: {
                    proName:undefined,
                    contractType:undefined,
                    desPersonName:undefined,
				},
                list: [],
                listLoading: true,
                multipleSelection: [], total: 0,
                listQuery: {
                    currentPage: 1,
                    pageSize: 20,
					sort: "desc",
                    sidx: "",
                },
                formVisible: false,
                exportBoxVisible: false,
                columnList: [
                    { prop: 'contractId', label: '合同编号' },
                    { prop: 'proName', label: '项目名称' },
                    { prop: 'contractType', label: '合同类型' },
                    { prop: 'partyA', label: '合同甲方' },
                    { prop: 'partyB', label: '合同乙方' },
                    { prop: 'stage', label: '合同阶段' },
                    { prop: 'amount', label: '合同金额' },
                    { prop: 'signingTime', label: '签约时间' },
                    { prop: 'desPersonName', label: '我方签约人' },
                    { prop: 'startTime', label: '履约时间' },
                    { prop: 'endTime', label: '结束时间' },
                    { prop: 'lastHander', label: '对方签约人' },
                    { prop: 'lastHanderMobile', label: '对方联系电话' },
                    { prop: 'creater', label: '创建人' },
                    { prop: 'createTime', label: '创建时间' },
				],
				proNameOptions : [],
				contractTypeOptions : [],
				stageOptions : [],
			}
        },
		computed: {},
		created() {
			this.initData()
			this.getproNameOptions();
			this.getcontractTypeOptions();
			this.getstageOptions();
		},
		methods: {
			getproNameOptions(){
				previewDataInterface('195045591036724485').then(res => {
					this.proNameOptions = res.data
				});
			},
			getcontractTypeOptions(){
				getDictionaryDataSelector('10a0f6e141174fafa23ed8310a2ada76').then(res => {
					this.contractTypeOptions = res.data.list
				});
			},
			getstageOptions(){
				getDictionaryDataSelector('f8b2198685b34ab6b6fef03cdfca9286').then(res => {
					this.stageOptions = res.data.list
				});
			},
			sortChange({ column, prop, order }) {
                this.listQuery.sort = order == 'ascending' ? 'asc' : 'desc'
                this.listQuery.sidx = !order ? '' : prop
                this.initData()
			},
			initData() {
                this.listLoading = true;
                let _query = {
                    ...this.listQuery,
                    ...this.query
                };
                let query = {}
                for (let key in _query) {
                    if (Array.isArray(_query[key])) {
                        query[key] = _query[key].join()
                    } else {
                        query[key] = _query[key]
                    }
                }
                request({
                    url: `/api/SubDev/ZyOaProContract`,
                    method: 'get',
                    data: query
                }).then(res => {
                    this.list = res.data.list
                    this.total = res.data.pagination.total
                    this.listLoading = false
                })
            },
			handleDel(id) {
                this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
                    type: 'warning'
                }).then(() => {
                    request({
                        url: `/api/SubDev/ZyOaProContract/${id}`,
                        method: 'DELETE'
                    }).then(res => {
                        this.$message({
                            type: 'success',
                            message: res.msg,
                            onClose: () => {
                                this.initData()
                            }
                        });
                    })
                }).catch(() => {
                });
            },
			addOrUpdateHandle(id, isDetail) {
                this.formVisible = true
                this.$nextTick(() => {
                    this.$refs.NCCForm.init(id, isDetail)
                })
            },
            download(data) {
                 if (!res.data.url) return
                 window.location.href = this.define.comUrl + res.data.url
            },
			search() {
                this.listQuery = {
                    currentPage: 1,
                    pageSize: 20,
                    sort: "desc",
                    sidx: "signingTime",
                }
                this.initData()
            },
            refresh(isrRefresh) {
                this.formVisible = false
                if (isrRefresh) this.reset()
            },
            reset() {
                for (let key in this.query) {
                    this.query[key] = undefined
                }
                this.listQuery = {
                    currentPage: 1,
                    pageSize: 20,
                    sort: "desc",
                    sidx: "signingTime",
                }
                this.initData()
            }
		}
    }
</script>