| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814 |
- <template>
- <div class="app-container">
- <el-row type="flex" justify="space-between" style="margin-bottom: 20px">
- <!-- 查询表单 -->
- <div class="grid-content bg-purple">
- <el-input
- v-model="formData.name"
- placeholder="合同名称/编号,承兑人,出票人名称"
- clearable
- style="width: 300px"
- @change="Search"
- >
- <i slot="prefix" class="el-input__icon el-icon-search" />
- </el-input>
- </div>
- <!-- 供应商查询 -->
- <div v-if="isOpenSupplierName" class="grid-content bg-purple">
- <el-input
- v-model="formData.supplierName"
- placeholder="请输入供应商名称"
- clearable
- style="width: 180px"
- @change="searchName"
- >
- <i slot="prefix" class="el-input__icon el-icon-search" />
- </el-input>
- </div>
- <!-- 合同状态 -->
- <div class="grid-content bg-purple">
- <el-dropdown @command="handleCommand">
- <div class="pulldown">
- <span v-if="!status" class="el-dropdown-link"> 合同状态 </span>
- <span v-if="status" class="el-dropdown-link">
- {{ status }}
- </span>
- <i class="el-icon-arrow-down el-icon--right" />
- </div>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="全部">全部</el-dropdown-item>
- <el-dropdown-item command="正常">正常</el-dropdown-item>
- <el-dropdown-item command="删除">删除</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- <!-- 汇票状态 -->
- <div class="grid-content bg-purple">
- <el-dropdown @command="handlehpCommand">
- <div class="pulldown">
- <span v-if="!hpstatus" class="el-dropdown-link"> 汇票状态 </span>
- <span v-if="hpstatus" class="el-dropdown-link">
- {{ hpstatus }}
- </span>
- <i class="el-icon-arrow-down el-icon--right" />
- </div>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="全部">全部</el-dropdown-item>
- <el-dropdown-item command="待审核">待审核</el-dropdown-item>
- <el-dropdown-item command="成功">成功</el-dropdown-item>
- <el-dropdown-item command="失败">失败</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- <!-- 合同审核状态 -->
- <div class="grid-content bg-purple">
- <el-dropdown @command="handleCommandAuditstatus">
- <div class="pulldown">
- <span v-if="!Auditstatus" class="el-dropdown-link">
- 合同审核状态
- </span>
- <span v-if="Auditstatus" class="el-dropdown-link">
- {{ Auditstatus }}
- </span>
- <i class="el-icon-arrow-down el-icon--right" />
- </div>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="全部">全部</el-dropdown-item>
- <el-dropdown-item command="待审核">待审核</el-dropdown-item>
- <el-dropdown-item command="成功">成功</el-dropdown-item>
- <el-dropdown-item command="失败">失败</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- <!-- 日期查询 -->
- <div class="grid-content bg-purple">
- <div class="block">
- <el-date-picker
- v-model="value2"
- type="daterange"
- align="right"
- unlink-panels
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- :picker-options="pickerOptions"
- value-format="yyyy-MM-dd"
- @change="startEndTime"
- />
- </div>
- </div>
- </el-row>
- <el-table
- v-loading="listLoading"
- :data="temporaryList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- @select="handleSelectionChange"
- @select-all="handleAll"
- >
- <el-table-column align="center" label="" width="55" type="selection" />
- <el-table-column label="合同名称" align="center" prop="name" />
- <el-table-column
- label="合同编号"
- align="center"
- prop="contractNo"
- width="155"
- />
- <el-table-column
- label="供应商名称"
- align="center"
- prop="supplierName"
- width="100"
- />
- <el-table-column
- label="承兑人名称"
- align="center"
- prop="acceptorName"
- width="100"
- />
- <el-table-column
- label="出票人名称"
- align="center"
- prop="drawersName"
- width="100"
- />
- <el-table-column label="汇票状态" align="center" prop="draftStatusText" />
- <el-table-column
- label="合同状态"
- align="center"
- prop="contractStatusText"
- />
- <el-table-column
- class-name="status-col"
- label="合同审核状态"
- align="center"
- prop="statusText"
- width="120"
- />
- <el-table-column
- align="center"
- label="上传日期"
- prop="createdAt"
- width="155"
- />
- <el-table-column
- align="center"
- prop="created_at"
- label="操作"
- width="250"
- >
- <template slot-scope="scope">
- <el-tag
- type="primary"
- style="cursor: pointer"
- @click="tapDetail(scope.row.id)"
- >查看详情</el-tag
- >
- <el-tag
- v-permission="['salesman', 'admin']"
- type="success"
- style="cursor: pointer"
- v-if="scope.row.status == 0"
- @click="Ssuccessed(scope.row.id)"
- >
- 审核成功</el-tag
- >
- <el-tag
- v-permission="['salesman', 'admin']"
- type="danger"
- style="cursor: pointer"
- v-if="scope.row.status == 0"
- @click="Sfailed(scope.row.id)"
- >审核失败
- </el-tag>
- <el-tag
- v-permission="['supplier']"
- type="danger"
- style="cursor: pointer"
- v-show="scope.row.status == 2"
- @click="editNewContract(scope.row)"
- >重新提交
- </el-tag>
- </template>
- </el-table-column>
- </el-table>
- <div style="display: flex; justify-content: space-between">
- <el-row type="flex" justify="space-between">
- <div class="btn" style="display: flex; justify-content: flex-end">
- <el-button
- v-permission="['supplier']"
- type="primary"
- @click="addNewContract"
- >上传合同</el-button
- >
- <el-button
- v-permission="['salesman', 'admin']"
- type="primary"
- @click="successed"
- >审核成功</el-button
- >
- <el-button
- v-permission="['salesman', 'admin']"
- type="primary"
- @click="failed"
- >审核失败</el-button
- >
- <el-button type="primary" @click="Exports">全部导出</el-button>
- <el-button type="primary" @click="batchExports">批量导出</el-button>
- <el-button type="success" @click="recover">恢复</el-button>
- <el-button type="danger" @click="deleted">删除</el-button>
- </div>
- </el-row>
- <div class="pagesip">
- <el-button
- type="primary"
- size="small"
- style="
- background-color: #d8ab5a;
- border-color: #d8ab5a;
- margin: 0 20px;
- "
- @click="jumpFirstPage"
- >首页
- </el-button>
- <el-pagination
- ref="pagination"
- background
- layout="total,prev, pager, next"
- :total="total"
- :page-size="pagesize"
- :current-page="currentPage"
- prev-text="上一页"
- next-text="下一页"
- @current-change="handleCurrentChange"
- />
- <el-button
- type="primary"
- size="small"
- style="
- background-color: #d8ab5a;
- border-color: #d8ab5a;
- margin: 0 20px;
- "
- @click="jumpLastPage"
- >尾页
- </el-button>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { dataConversionUtil } from "../../utils/Excel.js";
- import { contractsPageApi } from "@/api/contracts";
- import { mapGetters } from "vuex";
- export default {
- filters: {
- statusFilter(status) {
- const statusMap = {
- published: "success",
- draft: "gray",
- deleted: "danger",
- };
- return statusMap[status];
- },
- },
- computed: {
- ...mapGetters(["roles"]),
- },
- data() {
- return {
- // 表单数据
- formData: {
- startTime: "",
- endTime: "",
- name: "", // 合同名称
- contractNo: "", // 合同编码
- supplierName: "", // 供应商
- acceptorName: "", // 承兑人
- contractStatusText: "", // 合同状态
- contractStatus: "",
- draftStatus: "",
- },
- isOpenSupplierName: false, //是否显示供应商查询
- srcList: [],
- list: [],
- /* 表格数据 */
- temporaryList: [],
- /* 总条数 */
- total: 20,
- listLoading: false,
- status: "",
- hpstatus: "",
- Auditstatus: "",
- exportExcel: [], //导出数据
- search: "",
- /* 当前页数 */
- currentPage: 1,
- /* 每页显示个数 */
- pagesize: 10,
- checked: "",
- pickerOptions: {
- shortcuts: [
- {
- text: "最近一周",
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit("pick", [start, end]);
- },
- },
- {
- text: "最近一个月",
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- picker.$emit("pick", [start, end]);
- },
- },
- {
- text: "最近三个月",
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
- picker.$emit("pick", [start, end]);
- },
- },
- ],
- },
- value2: "",
- exportExcelData1: [], //导出列表缓存数据整页
- exportExcelData2: [], //导出列表缓存数据单选
- };
- },
- mounted() {
- this.checked = this.$store.state.user.checked;
- this.getData();
- //是否显示供应商查询
- this.getSupplierName();
- },
- methods: {
- /* ajax发请求获取列表数据 */
- getData(searchForm = {}) {
- const params = {
- pageIndex: this.currentPage,
- pageSize: this.pagesize,
- };
- contractsPageApi({ ...params, ...searchForm }).then((res) => {
- const { data } = res;
- this.filter = params;
- this.temporaryList = data.result;
- this.srcList = data.result;
- this.total = res.data.total;
- });
- },
- addNewContract() {
- this.$router.push({
- path: "contracts/addcontract",
- });
- },
- editNewContract(row) {
- this.$router.push({
- path: "contracts/addcontract?id=" + row.id,
- });
- },
- tapDetail(id) {
- console.log(id);
- this.$router.push({
- path: "/detail",
- query: {
- id: id,
- },
- });
- },
- successed() {
- // let successed = this.list.filter(item => item.id === id)
- const ids = Array.from(this.multipleSelection, ({ id }) => id);
- this.$request({
- url: "/api/Contract/manage",
- method: "post",
- data: {
- ids: ids,
- operateType: 3,
- },
- }).then((res) => {
- if (res.code === 200) {
- this.$message({
- type: "success",
- message: res.msg,
- });
- this.getData();
- } else {
- this.$message({
- type: "danger",
- message: res.msg,
- });
- this.getData();
- }
- });
- },
- Ssuccessed(id) {
- this.$request({
- url: "/api/Contract/manage",
- method: "post",
- data: {
- ids: [id],
- operateType: 3,
- },
- }).then((res) => {
- if (res.code === 200) {
- this.$message({
- type: "success",
- message: res.msg,
- });
- this.getData();
- } else {
- this.$message({
- type: "danger",
- message: res.msg,
- });
- this.getData();
- }
- });
- },
- failed() {
- const ids = Array.from(this.multipleSelection, ({ id }) => id);
- this.$request({
- url: "/api/Contract/manage",
- method: "post",
- data: {
- ids: ids,
- operateType: 4,
- },
- }).then((res) => {
- if (res.code === 200) {
- this.$message({
- type: "success",
- message: res.msg,
- });
- this.getData();
- } else {
- this.$message({
- type: "danger",
- message: res.msg,
- });
- this.getData();
- }
- });
- },
- Sfailed(id) {
- this.$request({
- url: "/api/Contract/manage",
- method: "post",
- data: {
- ids: [id],
- operateType: 4,
- },
- }).then((res) => {
- if (res.code === 200) {
- this.$message({
- type: "success",
- message: res.msg,
- });
- this.getData();
- } else {
- this.$message({
- type: "danger",
- message: res.msg,
- });
- this.getData();
- }
- });
- },
- recover(id) {
- const ids = Array.from(this.multipleSelection, ({ id }) => id);
- this.$request({
- url: "/api/Contract/manage",
- method: "post",
- data: {
- ids: ids,
- operateType: 2,
- },
- }).then((res) => {
- if (res.code === 200) {
- this.$message({
- type: "success",
- message: res.msg,
- });
- this.getData();
- } else {
- this.$message({
- type: "danger",
- message: res.msg,
- });
- this.getData();
- }
- });
- },
- deleted() {
- const ids = Array.from(this.multipleSelection, ({ id }) => id);
- this.$request({
- url: "/api/Contract/manage",
- method: "post",
- data: {
- ids: ids,
- operateType: 1,
- },
- }).then((res) => {
- if (res.code === 200) {
- this.$message({
- type: "success",
- message: res.msg,
- });
- this.getData();
- } else {
- this.$message({
- type: "danger",
- message: res.msg,
- });
- this.getData();
- }
- });
- },
- // 合同状态查询
- handleCommand(command) {
- this.status = command;
- if (command === "正常") {
- this.formData.contractStatus = 2;
- }
- if (command === "删除") {
- this.formData.contractStatus = 1;
- }
- if (command === "全部") {
- this.formData.contractStatus = 0;
- }
- this.currentPage = 1;
- this.searchForm = { ...this.formData };
- this.getData(this.searchForm);
- },
- // 汇票状态查询
- handlehpCommand(command) {
- this.hpstatus = command;
- if (command === "全部") {
- this.formData.draftStatus = 0;
- }
- if (command === "待审核") {
- this.formData.draftStatus = 1;
- }
- if (command === "成功") {
- this.formData.draftStatus = 2;
- }
- if (command === "失败") {
- this.formData.draftStatus = 3;
- }
- if (command === "删除") {
- this.formData.draftStatus = 4;
- }
- this.currentPage = 1;
- this.searchForm = { ...this.formData };
- this.getData(this.searchForm);
- },
- // 合同审核状态查询
- handleCommandAuditstatus(command) {
- this.Auditstatus = command;
- if (command === "全部") {
- this.formData.approveStatus = 0;
- }
- if (command === "待审核") {
- this.formData.approveStatus = 1;
- }
- if (command === "成功") {
- this.formData.approveStatus = 2;
- }
- if (command === "失败") {
- this.formData.approveStatus = 3;
- }
- this.currentPage = 1;
- this.searchForm = { ...this.formData };
- this.getData(this.searchForm);
- },
- // 日期审核状态查询
- startEndTime(item) {
- if (item == null) {
- item = [];
- this.formData.startTime = "";
- this.formData.endTime = "";
- this.currentPage = 1;
- this.searchForm = { ...this.formData };
- this.getData(this.searchForm);
- } else {
- this.formData.startTime = this.value2[0];
- this.formData.endTime = this.value2[1];
- this.currentPage = 1;
- this.searchForm = { ...this.formData };
- this.getData(this.searchForm);
- }
- },
- // 合同名称/编号/承兑人名称/出票查询
- Search() {
- this.currentPage = 1;
- this.searchForm = { ...this.formData };
- this.getData(this.searchForm);
- },
- // 供应商查询
- searchName() {
- this.currentPage = 1;
- this.searchForm = { ...this.formData };
- this.getData(this.searchForm);
- },
- //是否显示供应商查询
- getSupplierName() {
- console.log(this.roles);
- if (this.roles[0] === "admin") {
- this.isOpenSupplierName = true;
- } else if (this.roles[0] === "salesman") {
- this.isOpenSupplierName = true;
- } else {
- this.isOpenSupplierName = false;
- }
- },
- /* 分页功能,改变当前页 */
- handleCurrentChange(val) {
- this.currentPage = val;
- this.getData(this.searchForm);
- },
- /* 分页功能:去首页 */
- jumpFirstPage() {
- this.$refs.pagination.handleCurrentChange(1);
- this.$emit("handleCurrentChange", 1);
- },
- /* 分页功能:去尾页 */
- jumpLastPage() {
- const font = this.$refs.pagination;
- const cpage = Math.ceil(font.total / font.pageSize);
- font.handleCurrentChange(cpage);
- },
- /* 批量导出数据 */
- handleSelectionChange(data) {
- this.multipleSelection=data
- this.exportExcelData1.push(data);
- this.exportExcelData2 = [
- ...new Set(this.exportExcelData1.flat(Infinity)),
- ];
- },
- handleAll(data) {
- this.multipleSelection=data
- this.exportExcelData1.push(data);
- },
- /* 批量导出合同列表 */
- batchExports() {
- this.exportExcel =
- [...new Set(this.exportExcelData1.flat(Infinity))] ||
- this.exportExcelData2;
- if (this.exportExcel == "") {
- this.$message({
- type: "warning",
- message: "请选择数据!",
- });
- } else {
- var tableHeader = [
- [
- "序号",
- "合同名称",
- "合同编号",
- "承兑人",
- "出票人",
- "汇票状态",
- "合同状态",
- "审核状态",
- "时间",
- ],
- ];
- var dataList = [];
- this.exportExcel.forEach((item, index) => {
- dataList.push([
- index + 1,
- item.name,
- item.contractNo,
- item.acceptorName,
- item.drawersName,
- item.draftStatusText,
- item.contractStatusText,
- item.statusText,
- item.createdAt,
- ]);
- });
- dataConversionUtil.dataToExcel("合同列表", tableHeader, dataList);
- this.$message.success("导出成功!");
- }
- },
- /* 全部导出合同列表数据 */
- getContacts() {
- const data = {
- pageIndex: "",
- pageSize: -1,
- startTime: "",
- endTime: "",
- name: "",
- contractStatus: "",
- approveStatus: "",
- draftStatus: "",
- supplierId: "",
- };
- contractsPageApi({ ...data }).then((res) => {
- const { result } = res.data;
- this.exportExcel = result;
- });
- },
- /* 全部导出 */
- Exports() {
- this.getContacts();
- setTimeout(() => {
- var tableHeader = [
- [
- "序号",
- "合同名称",
- "合同编号",
- "承兑人",
- "出票人",
- "汇票状态",
- "合同状态",
- "审核状态",
- "时间",
- ],
- ];
- var dataList = [];
- this.exportExcel.forEach((item, index) => {
- dataList.push([
- index + 1,
- item.name,
- item.contractNo,
- item.acceptorName,
- item.drawersName,
- item.draftStatusText,
- item.contractStatusText,
- item.statusText,
- item.createdAt,
- ]);
- });
- dataConversionUtil.dataToExcel("合同列表", tableHeader, dataList);
- this.$message.success("导出成功!");
- this.exportExcel = [];
- }, 1000);
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .pulldown {
- width: 185px;
- height: 40px;
- border: 1px solid #e8e8e8;
- border-radius: 10px;
- display: flex;
- justify-content: center;
- align-items: center;
- justify-content: space-between;
- padding: 0 20px;
- color: #999999;
- }
- .pagesip {
- width: 100%;
- margin: 20px auto;
- padding-right: 50px;
- display: flex;
- // align-items: center;
- justify-content: flex-end;
- }
- .el-pagination.is-background .el-pager li:not(.disabled).active {
- background-color: #d8ab5a;
- }
- .el-col {
- margin-bottom: 20px;
- }
- .btn {
- padding: 20px;
- }
- </style>
|