123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <template>
- <div class="paymentSlipEdit-wrap">
- <a-page-header :ghost="false" @back="handleBack" >
- <!-- 自定义的二级文字标题 -->
- <template slot="subTitle">
- <a id="paymentSlipEdit-back-btn" href="javascript:;" @click="handleBack">返回列表</a>
- </template>
- <!-- 操作区,位于 title 行的行尾 -->
- <template slot="extra">
- <a-button key="2" id="paymentSlipEdit-preview-btn">打印预览</a-button>
- <a-button key="1" type="primary" id="paymentSlipEdit-print-btn">快速打印</a-button>
- </template>
- </a-page-header>
- <!-- 内容 -->
- <a-page-header title="客户:抢个汽修厂" ></a-page-header>
- <!-- 付款信息 -->
- <a-card :bordered="false" class="paymentSlipEdit-cont">
- <a-collapse :activeKey="['1']">
- <a-collapse-panel key="1" header="付款信息">
- <a-form-model
- id="paymentSlipEdit-form"
- ref="ruleForm"
- :model="form"
- :rules="rules"
- :label-col="formItemLayout.labelCol"
- :wrapper-col="formItemLayout.wrapperCol" >
- <a-row :gutter="15">
- <a-col :span="8">
- <a-form-model-item label="总计应付金额" prop="name">
- <a-input-number id="paymentSlipEdit-name" disabled v-model="form.name" :precision="0" :min="0" :max="999999" placeholder="请输入总计应付金额" style="width: 90%;" /> 元
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row :gutter="15">
- <a-col :span="8">
- <a-form-model-item label="付款金额" prop="mobile">
- <a-input-number id="paymentSlipEdit-mobile" v-model="form.mobile" :precision="0" :min="0" :max="999999" placeholder="请输入付款金额" style="width: 90%;" /> 元
- </a-form-model-item>
- </a-col>
- <a-col :span="8">
- <a-form-model-item label="折让金额" prop="name">
- <a-input-number id="paymentSlipEdit-name" v-model="form.name" :precision="0" :min="0" :max="999999" placeholder="请输入折让金额" style="width: 90%;" /> 元
- </a-form-model-item>
- </a-col>
- <a-col :span="8">
- <a-form-model-item label="结算方式" prop="paymentType">
- <v-select
- code="DISPATCH_FASHION"
- id="paymentSlipEdit-paymentType"
- v-model="form.paymentType"
- allowClear
- placeholder="请选择结算方式"
- ></v-select>
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row :gutter="15">
- <a-col :span="8">
- <a-form-model-item label="实付金额" prop="name">
- <a-input-number id="paymentSlipEdit-name" disabled v-model="form.name" :precision="0" :min="0" :max="999999" placeholder="请输入实付金额" style="width: 90%;" /> 元
- </a-form-model-item>
- </a-col>
- <a-col :span="16">
- <a-form-model-item label="备注" prop="remarks" :label-col="{ span: 4 }" :wrapper-col="{ span: 20 }">
- <a-input id="paymentSlipEdit-remarks" :maxLength="500" v-model="form.remarks" placeholder="请输入备注(最多500个字符)" allowClear />
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-form-model>
- </a-collapse-panel>
- </a-collapse>
- </a-card>
- <!-- 付款明细 -->
- <a-card :bordered="false" class="paymentSlipEdit-cont">
- <a-collapse :activeKey="['1']">
- <a-collapse-panel key="1">
- <template slot="header">
- 付款明细
- <a-button size="small" class="add-bill-btn" id="paymentSlipEdit-bill-btn" @click.stop="handleBill" style="margin-left: 15px;">添加单据</a-button>
- <a-button size="small" class="amount-btn" id="paymentSlipEdit-amount-btn" @click.stop="handleAmount" style="margin-left: 15px;">分配结算金额</a-button>
- </template>
- <!-- 付款明细 -->
- <div>
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="单据号">
- <a-input id="paymentSlipEdit-purchaseNo" v-model.trim="queryParam.purchaseNo" allowClear placeholder="请输入单据号"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="审核时间">
- <a-range-picker v-model="queryParam.creatDate" id="paymentSlipEdit-creatDate"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <span class="table-page-search-submitButtons">
- <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="paymentSlipEdit-refresh">查询</a-button>
- <a-button style="margin-left: 8px" @click="resetSearchForm()" :disabled="disabled" id="paymentSlipEdit-reset">重置</a-button>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 总计 -->
- <a-alert type="info" showIcon style="margin-bottom:15px">
- <div slot="message">共 <strong>6</strong> 条明细,金额合计 <strong>¥6</strong> ,余额合计<strong>¥6.33</strong></div>
- </a-alert>
- <div style="margin-bottom: 15px">
- <a-button type="primary" id="paymentSlipEdit-export" :disabled="!hasSelected" :loading="loading" @click="handleNoCollection">
- 批量暂不收款
- </a-button>
- <span style="margin-left: 8px">
- <template v-if="hasSelected">
- {{ `已选 ${selectedRowKeys.length} 项` }}
- </template>
- </span>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="default"
- :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- bordered>
- <!-- 结算金额 -->
- <template slot="storageQuantity" slot-scope="text, record">
- <a-input-number
- id="paymentSlipEdit-storageQuantity"
- :value="record.storageQuantity"
- :precision="0"
- :min="0"
- :max="999999"
- placeholder="请输入" />
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button size="small" type="primary" @click="handleDel(record)" id="paymentSlipEdit-del-btn">删除</a-button>
- </template>
- </s-table>
- </div>
- </a-collapse-panel>
- </a-collapse>
- </a-card>
- <a-affix :offset-bottom="0">
- <div style="text-align: center;width: 100%;background-color: #fff;padding: 30px 0;box-shadow: 0 0 20px #dcdee2;">
- <a-button type="primary" id="paymentSlipEdit-submit-btn" size="large" @click="handleSubmit" style="padding: 0 60px;">提交</a-button>
- </div>
- </a-affix>
- </div>
- </template>
- <script>
- import { STable, VSelect } from '@/components'
- export default{
- components: { STable, VSelect },
- data(){
- return{
- queryParam: {
-
- },
- brandData: [], // 产品品牌 下拉数据
- typeData: [], // 产品类别 下拉数据
- advanced: false, // 高级搜索 展开/关闭
- disabled: false, // 查询、重置按钮是否可操作
- formItemLayout: {
- labelCol: { span: 8 },
- wrapperCol: { span: 16 }
- },
- form: {
- name: '', // 客户名称
- mobile: '', // 联系手机
- contact: '', // 联系人
- provinceId: undefined, // 省
- province: '',
- cityId: undefined, // 市
- city: '',
- areaId: undefined, // 区
- area: '',
- address: '', // 详细地址
- fax: '', // 客户传真
- distributionType: '', // 配送方式
- remarks: '', // 是否卫星仓客户
- custType: undefined, // 客户类型
- priceType: '', // 价格类型
- payType: '', // 支付方式
- paymentType: '', // 收款方式
- contactTel: '' // 联系电话
- },
- rules: {
- // name: [{ required: true, message: '请输入客户名称', trigger: 'blur' }],
- mobile: [{ required: true, message: '请输入联系手机', trigger: 'blur' }],
- provinceId: [{ required: true, message: '请选择省', trigger: 'change' }],
- cityId: [{ required: true, message: '请选择市', trigger: 'change' }],
- areaId: [{ required: true, message: '请选择区/县', trigger: 'change' }],
- custType: [{ required: true, message: '请选择客户类型', trigger: 'change' }],
- priceType: [{ required: true, message: '请选择价格类型', trigger: 'change' }],
- payType: [{ required: true, message: '请选择支付方式', trigger: 'change' }],
- paymentType: [{ required: true, message: '请选择收款方式', trigger: 'change' }]
- },
- // 表头
- columns: [
- { title: '序号', dataIndex: 'no', align: 'center' },
- { title: '单据号', dataIndex: 'creatDate', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '类型', dataIndex: 'custName', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审核时间', dataIndex: 'custsName', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '金额', dataIndex: 'totalP', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '余额', dataIndex: 'totalNums', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '结算金额', scopedSlots: { customRender: 'storageQuantity' }, align: 'center' },
- ],
- selectedRowKeys: [], // Check here to configure the default column
- loading: false,
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- // return customerBundleDelayList( Object.assign(parameter, this.queryParam) ).then(res => {
- // const data = res.data
- // const no = (data.pageNo - 1) * data.pageSize
- // for (var i = 0; i < data.list.length; i++) {
- // data.list[i].no = no + i + 1
- // }
- // this.disabled = false
- // return data
- // })
- const _this = this
- return new Promise(function(resolve, reject){
- const data = {
- pageNo: 1,
- pageSize: 10,
- list: [
- { id: '1', purchaseNo: 'jgqp11111111111', creatDate: '产品1', custName: 'jgqp111123545', totalP: '箭冠品牌', totalNums: '产品分类1', totalPrice: '5', payType: '122' }
- ],
- count: 10
- }
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- _this.disabled = false
- resolve(data)
- })
- },
- }
- },
- computed: {
- hasSelected () {
- return this.selectedRowKeys.length > 0
- }
- },
- methods: {
- // 重置
- resetSearchForm () {
- this.queryParam.orderBundleNo = ''
- this.queryParam.orderBundle.custMobile = ''
- this.queryParam.bundleName = ''
- this.queryParam.itemName = ''
- this.oldTime = undefined
- this.newTime = undefined
- this.$refs.table.refresh(true)
- },
- // 添加
- handleAdd(row){},
- // 删除
- handleDel(row){},
- // 编辑基本信息
- handleEditInfo(){
- this.openModal = true
- },
- // 提交
- handleSubmit(){
-
- },
- // 返回列表
- handleBack(){
- this.$router.push({ path: '/financialManagement/companyReceivablePayable/list'})
- },
- // 批量暂不收款
- handleNoCollection () {
- this.loading = true
- // ajax request after empty completing
- setTimeout(() => {
- this.loading = false
- this.selectedRowKeys = []
- }, 1000)
- },
- // 添加单据
- handleBill(){
- console.log(333)
- },
- // 分配结算金额
- handleAmount(){
- console.log(444)
- },
- onSelectChange (selectedRowKeys) {
- console.log('selectedRowKeys changed: ', selectedRowKeys)
- this.selectedRowKeys = selectedRowKeys
- },
- filterOption(input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- },
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- vm.openModal = false
- })
- }
- }
- </script>
- <style lang="less">
- .paymentSlipEdit-wrap{
- .paymentSlipEdit-cont{
- margin-bottom: 15px;
- .sub-title{
- font-size: 12px;
- color: #808695;
- margin-left: 10px;
- }
- .tag-txt{
- font-size: 12px;
- color: #ed1c24;
- }
- .edit-circle-btn{
- margin-left: 15px;
- i{
- vertical-align: text-bottom;
- }
- }
- .import-btn{
- margin-left: 15px;
- }
- }
- }
- </style>
|