Browse Source

修改统计成本调整

dev
caoyizhong 2 years ago
parent
commit
16892c5c1e
  1. 4
      .env.production
  2. 6
      src/components/custom/Globaler.js
  3. 6
      src/views/dashboard/HomePage.vue
  4. 30
      src/views/regime/ProcessRegimeList.vue
  5. 4
      src/views/regime/modules/ProcessRegimeForm.vue
  6. 60
      src/views/statisticanalysis/CostStatistic.vue
  7. 22
      src/views/statisticanalysis/costecharts/CaseCost.vue
  8. 39
      src/views/statisticanalysis/costecharts/CostAnalysis.vue
  9. 2
      src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
  10. 2
      src/views/wastematerials/ProcessWasteMaterialsList.vue

4
.env.production

@ -1,4 +1,4 @@
NODE_ENV=production
VUE_APP_API_BASE_URL=http://10.242.144.23/prod-api
VUE_APP_CAS_BASE_URL=http://10.242.144.23:8888/cas
VUE_APP_API_BASE_URL=http://152.136.120.135/prod-api
VUE_APP_CAS_BASE_URL=http://152.136.120.135:8888/cas
VUE_APP_ONLINE_BASE_URL=http://10.242.144.23:8012/onlinePreview?url=

6
src/components/custom/Globaler.js

@ -1,6 +1,8 @@
const dictOptions = [];
const dictOptions = []; //全局变量
const dictList = [];
const materialTypes = "";
export default {
dictOptions,
dictList
dictList,
materialTypes,
};

6
src/views/dashboard/HomePage.vue

@ -111,10 +111,10 @@
<!-- <j-ellipsis :value="text" :length="5" />-->
<!-- </span>-->
<span slot="post" slot-scope="text, record" @click="regimeTextClick(record)" >
<j-ellipsis :value="text" :length="5" />
<j-ellipsis :value="text" :length="16" />
</span>
<span slot="filename" slot-scope="text, record" @click="regimeFileClick(record)">
<j-ellipsis :value="text" :length="5"/>
<j-ellipsis :value="text" :length="15"/>
</span>
</a-table>
@ -284,6 +284,7 @@ export default {
{
align:"left",
scopedSlots: { customRender: 'filename' },
width:180,
dataIndex: 'ossFileListName',
// ellipsis: true,
// sorter: true,
@ -311,6 +312,7 @@ export default {
{
align:"center",
dataIndex: 'createTime',
width:100,
ellipsis: true,
sorter: true
},

30
src/views/regime/ProcessRegimeList.vue

@ -66,7 +66,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true, y: innerHeight / 1.5}"
:scroll="{x:1200, y: innerHeight / 1.5}"
bordered
rowKey="id"
:columns="columns"
@ -78,7 +78,7 @@
@change="handleTableChange">
<span slot="name" slot-scope="text, record">
<j-ellipsis :value="text" :length="10"/>
<j-ellipsis :value="text" :length="15"/>
</span>
@ -168,14 +168,14 @@
},
{
title:'标题',
align:"center",
align:"left",
dataIndex: 'title',
width:260,
width:250,
scopedSlots: {customRender: 'name'}
},
{
title:'内容',
align:"center",
align:"left",
dataIndex: 'contentDetails',
scopedSlots: {customRender: 'htmlSlot'},
// onCell: ()=>{
@ -204,17 +204,23 @@
// },
{
title: '文件名称',
align: "center",
width: 200,
align: "left",
width: 220,
scopedSlots: { customRender: 'fileName' },
dataIndex: 'ossFileListName'
},
{
title:'创建人',
align:"center",
width:100,
dataIndex: 'createBy'
},
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
// fixed:"right",
width:107,
scopedSlots: { customRender: 'action' }
},
],
@ -245,8 +251,8 @@
//
setContent(value) {
if (!value) return "";
if (value.length > 100) {
return value.slice(0, 300) + "...";
if (value.length > 60) {
return value.slice(0, 60) + "...";
}
return value;
},
@ -272,7 +278,7 @@
if (!!data.ossFileList){
data.ossFileList.forEach(item=>{
if (!!item.name){
console.log("item.name>>>>>>>>>>>>>",item.name)
// console.log("item.name>>>>>>>>>>>>>",item.name)
data.ossFileListName = item.name;
}
})

4
src/views/regime/modules/ProcessRegimeForm.vue

@ -124,7 +124,9 @@
//
this.$refs.form.validate(valid => {
if (valid) {
this.model.fileId = that.model.fileIds[0].id;
if(!!that.model.fileIds){
this.model.fileId = that.model.fileIds[0].id;
}
// that.confirmLoading = true;
let httpurl = '';
let method = '';

60
src/views/statisticanalysis/CostStatistic.vue

@ -14,14 +14,17 @@
<Cost/>
</div>
</div>
<div style="height: 100%;width:65%;">
<div style="height: 45%;background-color: #ffffff;border-radius: 10px">
<div style="height: 100%;width:65%;display: flex;justify-content: flex-end;flex-direction: column;align-items: flex-end;">
<a-select v-model="formData.materialType" allowClear placeholder="请选择部门" @change="getShuJu()" style="width: 25%;right: 1px;">
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option>
</a-select>
<div style="height: 41%;background-color: #ffffff;border-radius: 10px;width: 100%">
<!-- 分析成本-->
<CostAnalysis/>
<CostAnalysis :material = cx />
</div>
<div style="height: 54%;margin-top: 1%">
<!-- 项目部成本情况-->
<CaseCost/>
<CaseCost :material = cx />
</div>
</div>
</div>
@ -36,6 +39,8 @@ import ItemCost from '@views/statisticanalysis/costecharts/ItemCost'
import OnDayCost from '@views/statisticanalysis/costecharts/OnDayCost'
import CostAnalysis from '@views/statisticanalysis/costecharts/CostAnalysis'
import CaseCost from '@views/statisticanalysis/costecharts/CaseCost'
import { getAction } from '@api/manage'
// //
// let echarts = require('echarts/lib/echarts')
@ -57,12 +62,59 @@ export default {
data() {
return {
msg: '我的echarts图表',
//
queryParamsUntil:[],
url:{
listByuntil: '/unitwaste/processUnitWasteWarehouseCode/listAll',
},
formData:{
dateItem: 4,
materialType: undefined,
},
cx :{},
xian : true,
}
},
mounted() {
// this.drawLine()
},
created() {
this.getUnit();
},
watch:{
'formData.materialType': {
handler (newName, oldName) {
// console.log("-=123",newName,oldName)
this.Globaler.materialTypes = this.formData.materialType;
},
deep: true
}
},
methods: {
//
async getShuJu(){
let sj= {
departId: this.formData.materialType
}
this.cx = sj;
},
//
getUnit(){
getAction(this.url.listByuntil).then((res) => {
if (res.success) {
this.queryParamsUntil = res.result.records||res.result;
// console.log(this.queryParamsUntil)
let index = this.queryParamsUntil.findIndex(item => item.id=== this.bu)
if(index == -1) {
// this.formData.materialType = this.queryParamsUntil[1].id;
}else{
this.formData.materialType = this.bu;
}
this.getShuJu();
}
})
},
// drawLine() {
// // let echarts = require('echarts/lib/echarts')
// // domecharts

22
src/views/statisticanalysis/costecharts/CaseCost.vue

@ -6,9 +6,9 @@
<!-- <j-dict-select-tag type="list" v-model="formData.materialType" style="width: 20%;float: right;margin-right: 2%"-->
<!-- :trigger-change="true" dictCode="material_type"-->
<!-- placeholder="请选择物资类型" @change="handleChange"/>-->
<a-select v-model="formData.materialType" placeholder="请选择部门" style="width: 20%;float: right;margin-right: 2%" @change="getList" :disabled=buMen >
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option>
</a-select>
<!-- <a-select v-model="formData.materialType" placeholder="请选择部门" style="width: 20%;float: right;margin-right: 2%" @change="getList" :disabled=buMen >-->
<!-- <a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option>-->
<!-- </a-select>-->
</div>
<!-- <div style="color: #ffffff;font-size: 19px;margin-bottom: 5px">项目部成本情况</div>-->
@ -56,6 +56,11 @@ import { ajaxGetDictItems, getDictItemsFromCache } from '@api/api'
export default {
name: 'CaseCost',
props:{
material:{
type: Object
}
},
data(){
return{
materialType:null,
@ -230,6 +235,15 @@ export default {
// this.echartsInitTwo();
// this.echartsInitThree();
},
watch:{
material:{
handler (newName, oldName) {
// console.log("-=123123124123",newName,oldName);
this.getList();
},
deep: true
},
},
created() {
this.formData.dateItem = moment(new Date(), 'YYYY-MM');
// this.getList();
@ -299,7 +313,7 @@ export default {
},
handleChange(value) {
// console.log(`selected ${value}`);
this.formData.materialType = value;
this.material.materialTypes = value;
this.getList();
},

39
src/views/statisticanalysis/costecharts/CostAnalysis.vue

@ -3,9 +3,12 @@
<div style="width: 100%;height: 100%;padding-top: 1%;border-radius:15px;">
<!-- <div style="height: 9%;margin-left: 2%;width: 100%">-->
<div style="font-size: 25px;padding-left: 2%">分析成本
<div style="float: right;width: 38%;height: 35px;padding-top: 0px">
<span style="margin-right: 2%;padding-top: 0px">
<a-select v-model="formData.dateItem" placeholder="请选择时间" style="width: 45%;;padding-right: 4%" @change="getShuJu()">
<!-- <div style="float: right;width: 38%;height: 35px;padding-top: 0px">-->
<div style="float: right;width: 15%;height: 35px;">
<!-- <span style="margin-right: 2%;padding-top: 0px">-->
<span style="padding-top: 0px">
<!-- <a-select v-model="formData.dateItem" placeholder="请选择时间" style="width: 45%;;padding-right: 4%" @change="getShuJu()">-->
<a-select v-model="formData.dateItem" placeholder="请选择时间" style="width: 60%;" @change="getShuJu()">
<a-select-option :value="1"> 年度</a-select-option>
<a-select-option :value="2">半年度</a-select-option>
<a-select-option :value="3">季度</a-select-option>
@ -13,9 +16,9 @@
</a-select>
<!-- <a-month-picker placeholder="选择日期" @change="disabledDate" v-model="formData.dateItem"/>-->
</span>
<a-select v-model="formData.materialType" placeholder="请选择部门" style="width: 45%;;padding-right: 4%" @change="getShuJu()" :disabled=xingMuBu>
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option>
</a-select>
<!-- <a-select allowClear v-model="formData.materialType" placeholder="请选择部门" style="width: 45%;;padding-right: 4%" @change="getShuJu()" :disabled=xingMuBu>-->
<!-- <a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.id">{{item.departName}}</a-select-option>-->
<!-- </a-select>-->
</div>
</div>
@ -34,6 +37,11 @@ import { information } from '@/utils/costTime'
export default {
name: "CostAnalysis",
props:{
material:{
type:Object,
},
},
data(){
return{
materialType:null,
@ -74,6 +82,15 @@ name: "CostAnalysis",
}
// this.formData.dateItem = moment(new Date(), 'YYYY-MM');
},
watch:{
material:{
handler (newName, oldName) {
// console.log("-=123123124123",newName,oldName);
this.getShuJu();
},
deep: true
},
},
methods:{
initDictData() {
//
@ -121,18 +138,17 @@ name: "CostAnalysis",
// return new Promise((resolve, reject) => {
//
// })
console.log("执行了",this.material);
let sj= {
timeType: this.formData.dateItem,
departId: this.formData.materialType
departId: this.material.departId
}
await getAction(this.url.getShuJuList,sj).then(res =>{
if(res.success){
// console.log("-=-=",res);
console.log("-=-=",res);
this.getList(res.result);
}
})
},
getList(res){
let dic = [];
@ -145,6 +161,7 @@ name: "CostAnalysis",
}
})
// console.log("12213",dic);
this.list = dic;
// [
// { value: 1048, name: '' },
@ -507,7 +524,7 @@ name: "CostAnalysis",
}
}
let nameResult = name.length > 6 ? name.slice(0, 6) + '...' : name
return '{b|' + ((target / total) * 100).toFixed(2) + '%}\n{a|' + nameResult + '}'
return '{b|' + (( (target / total) > 0 ? (target / total) : 0 ) * 100).toFixed(2) + '%}\n{a|' + nameResult + '}'
}
},
series: [

2
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

@ -70,7 +70,7 @@
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">
<span slot="merchandiseName" slot-scope="text, record">
<j-ellipsis :value="text" :length="39"/>
<j-ellipsis :value="text" :length="45"/>
</span>
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>

2
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -76,7 +76,7 @@
@change="handleTableChange">
<span slot="materialDescription" slot-scope="text, record">
<j-ellipsis :value="text" :length="39"/>
<j-ellipsis :value="text" :length="45"/>
</span>
<span slot="type" slot-scope="text, record">
<j-ellipsis :value="text" :length="9"/>

Loading…
Cancel
Save