vue版本上线

This commit is contained in:
季圣华
2021-04-07 23:53:57 +08:00
parent 76a0033a4e
commit f4ef5aa067
803 changed files with 171959 additions and 27 deletions

View File

@@ -0,0 +1,178 @@
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :md="4" :sm="24">
<a-form-item label="仓库">
<a-select
:allowClear="true"
style="width: 100%"
placeholder="请选择仓库"
v-model="queryParam.depotId">
<a-select-option v-for="(depot,index) in depotList" :value="depot.id">
{{ depot.name }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :md="4" :sm="24">
<a-form-item label="月份">
<a-month-picker placeholder="请选择月份" :default-value="moment(currentMonth, monthFormat)" :format="monthFormat" @change="onChange"/>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item label="商品信息">
<a-input placeholder="请输入商品名称规格型号" v-model="queryParam.materialParam"></a-input>
</a-form-item>
</a-col>
<a-col :md="4" :sm="24" >
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery">查询</a-button>
<a-button style="margin-left: 8px" type="primary" icon="download" @click="handleExportXls('库存状况')">导出</a-button>
</span>
</a-col>
<a-col :md="4" :sm="24" >
<a-form-item label="本月合计金额">
{{totalCountMoneyStr}}
</a-form-item>
</a-col>
</a-row>
</a-form>
</div>
<!-- table区域-begin -->
<a-table
bordered
ref="table"
size="middle"
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
@change="handleTableChange">
</a-table>
<!-- table区域-end -->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { getAction } from '@/api/manage'
import { getMpListShort } from "@/utils/util"
import JEllipsis from '@/components/jeecg/JEllipsis'
import moment from 'moment'
import Vue from 'vue'
export default {
name: "BuyInReport",
mixins:[JeecgListMixin],
components: {
JEllipsis
},
data () {
return {
// 查询条件
currentMonth: moment().format('YYYY-MM'),
monthFormat: 'YYYY-MM',
queryParam: {
depotId:'',
monthTime: moment().format('YYYY-MM'),
materialParam:'',
mpList: getMpListShort(Vue.ls.get('materialPropertyList')) //扩展属性
},
tabKey: "1",
depotList: [],
totalCountMoneyStr: '',
// 表头
columns: [
{
title: '#',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{title: '名称', dataIndex: 'materialName', width: 160},
{title: '规格', dataIndex: 'materialStandard', width: 80},
{title: '型号', dataIndex: 'materialModel', width: 80},
{title: '扩展信息', dataIndex: 'materialOther', width: 120},
{title: '单位', dataIndex: 'unitName', width: 80},
{title: '单价', dataIndex: 'unitPrice', width: 60},
{title: '上月结存数量', dataIndex: 'prevSum', width: 120},
{title: '入库数量', dataIndex: 'inSum', width: 80},
{title: '出库数量', dataIndex: 'outSum', width: 80},
{title: '本月结存数量', dataIndex: 'thisSum', width: 120},
{title: '结存金额', dataIndex: 'thisAllPrice', width: 80}
],
labelCol: {
xs: { span: 1 },
sm: { span: 2 },
},
wrapperCol: {
xs: { span: 10 },
sm: { span: 16 },
},
url: {
list: "/depotItem/findByAll",
totalCountMoney: "/depotItem/totalCountMoney",
exportXlsUrl: "/depotItem/exportExcel",
}
}
},
created() {
this.getDepotData()
this.getTotalCountMoney()
},
methods: {
moment,
getQueryParams() {
let param = Object.assign({}, this.queryParam, this.isorter);
param.monthTime = this.queryParam.monthTime;
param.field = this.getQueryField();
param.currentPage = this.ipagination.current;
param.pageSize = this.ipagination.pageSize;
return param;
},
getDepotData() {
getAction('/depot/getAllList').then((res)=>{
if(res.code === 200){
let arr=res.data;
for(let i=0;i<arr.length;i++){
let obj={};
obj.id=arr[i].id;
obj.name=arr[i].name;
this.depotList.push(obj);
}
}else{
this.$message.info(res.data);
}
})
},
getTotalCountMoney(){
getAction(this.url.totalCountMoney, this.queryParam).then((res)=>{
if(res && res.code === 200) {
let count = res.data.totalCount.toString();
if (count.lastIndexOf('.') > -1) {
count = count.substring(0, count.lastIndexOf('.') + 3);
}
this.totalCountMoneyStr = count + "";
}
})
},
searchQuery() {
this.loadData(1);
this.getTotalCountMoney();
},
onChange: function (value, dateString) {
console.log(dateString);
this.queryParam.monthTime=dateString;
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less'
</style>