diff --git a/src/components/CUSTOMER/goback/index.vue b/src/components/CUSTOMER/goback/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..5bd9809d1f43e1d60a4fdc2ab99e8b2859a08914 --- /dev/null +++ b/src/components/CUSTOMER/goback/index.vue @@ -0,0 +1,46 @@ +<template> + <div class="back-container"> + <div class="flex left-div"> + <span class="title">{{title}}</span> + <span class="back" @click.stop="back">< 返回</span> + </div> + </div> +</template> + +<script> +export default{ + props: { + title: { + default: "" + } + }, + data(){ + + }, + methods: { + back(){ + this.$router.go(-1); + } + } +} +</script> + +<style lang="less" scoped> +.back-container{ + .pa(20, 0, 30, 0); + border-bottom: 1px solid #eee; + margin-bottom: 20px; + .left-div{ + font-size: 14px; + font-weight: bold; + .title{ + color: #000; + } + .back{ + margin-left: 16px; + color: #005ec8; + cursor: pointer; + } + } +} +</style> diff --git a/src/views/charge-query/detail.vue b/src/views/charge-query/detail.vue index 92149ff74825a8b7fc83dcb55be7ed166349ab2d..dbca50dc59591e3bc1c4f62a71d6d80a02163605 100644 --- a/src/views/charge-query/detail.vue +++ b/src/views/charge-query/detail.vue @@ -1,6 +1,7 @@ <template> <!-- -è´¦å•æ˜Žç»† --> <div class="white_bg burt-container custom-info"> + <Goback title="è´¦å•详情" /> <a-form-model ref="form" layout="vertical" :model="form"> <a-row :gutter="30"> <a-col :xl="4" :lg="6" :sm="12"> @@ -104,6 +105,7 @@ </template> <script> +import Goback from "@/components/CUSTOMER/goback"; import BurtPagination from "@/components/CUSTOMER/pagation"; import { mapState } from "vuex" export default { @@ -123,7 +125,7 @@ export default { { title: "自付é¢", dataIndex: "selfPaid", width: 180 }, { title: "其他费用", dataIndex: "otherPaid", width: 180 }, { title: "实际金é¢", dataIndex: "actualPaid", width: 180 }, - { title: "æ“作", key: "operation", width: "175px", fixed: "right", scopedSlots: { customRender: "operation" },align: "center"}, + // { title: "æ“作", key: "operation", width: "175px", fixed: "right", scopedSlots: { customRender: "operation" },align: "center"}, ]; const payColumns = [ { title: "å…èµ”é¢", dataIndex: "deductible", width: 180 }, @@ -185,6 +187,7 @@ export default { }; }, components: { + Goback, BurtPagination, }, computed: { diff --git a/src/views/charge-query/lpjManage.vue b/src/views/charge-query/lpjManage.vue index d849510a69cbe600c346ff7134168aa13a64c646..6d566138c81bd84912857c44d9b4215b5d563940 100644 --- a/src/views/charge-query/lpjManage.vue +++ b/src/views/charge-query/lpjManage.vue @@ -91,7 +91,7 @@ export default { { title: "坄逿—¥æœŸ", dataIndex: "sendDate",width: 130,scopedSlots: { customRender: "sendDate" }}, { title: "快递å•å·",dataIndex: "trackingNo",width: 180,}, { title: "寄é€å¤‡æ³¨", dataIndex: "sendRemark", width: 100 }, - { title: "æ“作", key: "operation", width: "200px",fixed: "right",scopedSlots: { customRender: "operation" }}, + { title: "æ“作", key: "operation", width: "200px",fixed: "right",scopedSlots: { customRender: "operation" }, align: "center"}, ]; return { loading: false, diff --git a/src/views/charge-query/lpjManageDetail.vue b/src/views/charge-query/lpjManageDetail.vue index 0f8ce2aa794e351d431bb9762d040fdff50d1032..fa59312160e9fa58c2b03677a2b6f0ce35641353 100644 --- a/src/views/charge-query/lpjManageDetail.vue +++ b/src/views/charge-query/lpjManageDetail.vue @@ -1,6 +1,7 @@ <template> <!-- 收费查询-è´¦å•æŸ¥è¯¢ --> <div class="white_bg burt-container custom-info"> + <Goback title="ç†èµ”件详情" /> <!-- form --> <a-form-model ref="form" layout="vertical" :model="form"> <a-row :gutter="30"> @@ -145,6 +146,7 @@ </template> <script> +import Goback from "@/components/CUSTOMER/goback"; import BurtPagination from "@/components/CUSTOMER/pagation"; import moment from 'moment' export default { @@ -200,6 +202,7 @@ export default { }; }, components: { + Goback, BurtPagination, }, created() { diff --git a/src/views/info/components/companyDiscount.vue b/src/views/info/components/companyDiscount.vue index d155a7e2d86d0e910567f108085d2a93312fdfa5..da1c9313d936eb42391de85fb5696576b1589506 100644 --- a/src/views/info/components/companyDiscount.vue +++ b/src/views/info/components/companyDiscount.vue @@ -64,7 +64,7 @@ const columns = [ { title: "项目",dataIndex: "benefits", ellipsis: true, scopedSlots: { customRender: "benefits" },width: 310, }, { title: "折扣比例", dataIndex: "ratio", ellipsis: true, scopedSlots: { customRender: "ratio" },width: 190,}, { title: "备注", dataIndex: "remark", scopedSlots: { customRender: "remark" }, width: 180,}, - { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" },fixed: "right", width: "170px" }, + { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" },fixed: "right", width: "170px", align: "center" }, ]; export default { props: { diff --git a/src/views/verification/collection.vue b/src/views/verification/collection.vue index 38d8e719807854d483ec94299c9926d766788ea2..7c7b501cf612c39a04fbcc32407499d39ceef8cf 100644 --- a/src/views/verification/collection.vue +++ b/src/views/verification/collection.vue @@ -55,7 +55,7 @@ const columns = [ { title: "回款金é¢(人民å¸)", dataIndex: "backAmountCny", ellipsis: true, width: 190,}, { title: "回款金é¢(美元)", dataIndex: "backAmountUsd", ellipsis: true, width: 190,}, { title: "汇率差", dataIndex: "backExchangeRate", ellipsis: true, width: 110 }, - { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" },fixed: "right", width: "200px"}, + { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" },fixed: "right", width: "200px", align: "center"}, ]; export default { data() { diff --git a/src/views/verification/collectionDetail.vue b/src/views/verification/collectionDetail.vue index df2d84072d93666204d0dadd42778f9a9f56bf84..dac314583bae62137ccd8469eb01d37416a66098 100644 --- a/src/views/verification/collectionDetail.vue +++ b/src/views/verification/collectionDetail.vue @@ -1,5 +1,6 @@ <template> <div class="white_bg burt-container"> + <Goback title="回款详情" /> <!-- form --> <a-form-model ref="form" layout="vertical" :model="form"> <a-row :gutter="30"> @@ -104,6 +105,7 @@ </template> <script> +import Goback from "@/components/CUSTOMER/goback"; import BurtPagination from "@/components/CUSTOMER/pagation"; import moment from "moment"; const columns = [ @@ -117,7 +119,7 @@ const columns = [ { title: "EOB回款金é¢(人民å¸)", dataIndex: "eobBackMoneyCny", ellipsis: true, width: 190,}, { title: "EOB回款金é¢(美元)", dataIndex: "eobBackMoneyUsd", ellipsis: true, width: 190,}, { title: "汇率差", dataIndex: "backExchangeRate", ellipsis: true, width: 110 }, - { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" },fixed: "right", width: "170px"}, + { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" },fixed: "right", width: "170px", align: "center"}, ]; export default { data() { @@ -156,6 +158,7 @@ export default { }; }, components: { + Goback, BurtPagination, }, created(){ diff --git a/src/views/verification/index.vue b/src/views/verification/index.vue index 1125ba0ca4719c4d80073347acef850edde85c49..e2cdf3a68de6b824bd92566ec565cf29d209e252 100644 --- a/src/views/verification/index.vue +++ b/src/views/verification/index.vue @@ -57,7 +57,7 @@ const columns = [ { title: "EOB赔付金é¢(人民å¸)", dataIndex: "eobAmountCny", ellipsis: true, width: 85 }, { title: "EOB赔付金é¢(美元)", dataIndex: "eobAmountUsd", ellipsis: true, width: 85 }, { title: "备注", dataIndex: "sendRemark", ellipsis: true, width: 120 }, - { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" }, fixed: "right", width: "200px"}, + { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" }, fixed: "right", width: "200px", align: 'center'}, ]; export default { data() { diff --git a/src/views/verification/indexDetail.vue b/src/views/verification/indexDetail.vue index 170f8b392b19ed75904a82b1b92c47606ad92442..96a5ca02a877b590c69180cbf67d86fb9959cb85 100644 --- a/src/views/verification/indexDetail.vue +++ b/src/views/verification/indexDetail.vue @@ -1,5 +1,6 @@ <template> <div class="white_bg burt-container"> + <Goback title="EOB件详情" /> <!-- form --> <a-form-model ref="form" layout="vertical" :model="form"> <a-row :gutter="30"> @@ -113,6 +114,7 @@ </template> <script> +import Goback from "@/components/CUSTOMER/goback"; import BurtPagination from "@/components/CUSTOMER/pagation"; import moment from "moment"; const columns = [ @@ -129,7 +131,7 @@ const columns = [ { title: "ä¿é™©å…¬å¸æ¬ è´¹", dataIndex: "payorNoPaidAmount", ellipsis: true, width: 110, }, { title: "ä¸ªäººæ¬ è´¹", dataIndex: "perNoPaidAmount", ellipsis: true, width: 85 }, { title: "备注", dataIndex: "sendRemark", ellipsis: true, width: 120 }, - { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" }, fixed: "right", width: "170px"}, + { title: "æ“作", dataIndex: "operation", scopedSlots: { customRender: "operation" }, fixed: "right", width: "170px", align: "center"}, ]; export default { data() { @@ -166,6 +168,7 @@ export default { }; }, components: { + Goback, BurtPagination, }, created(){