Browse Source

修改制度

dev
汤建军 2 years ago
parent
commit
1394114960
  1. 7
      src/App.vue
  2. 3
      src/main.js
  3. 177
      src/views/accessrecords/flowchart/ProcessMaterialWarehousingFlowChart.vue
  4. 6
      src/views/burst/form/purchase/ProcessIndustrialPurchaseForm.vue
  5. 287
      src/views/burst/form/purchase/ProcessIndustrialScrapsForm.vue
  6. 2
      src/views/regime/ProcessRegimeList.vue
  7. 19
      src/views/regime/modules/ProcessRegimeForm.vue
  8. 2
      src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

7
src/App.vue

@ -41,4 +41,11 @@
#app { #app {
height: 100%; height: 100%;
} }
/* 网页滚动条,没卵用*/
/* ::-webkit-scrollbar {*/
/* width: 0 !important;*/
/* }*/
/* ::-webkit-scrollbar {*/
/* width: 0 !important;height: 0;*/
/*}*/
</style> </style>

3
src/main.js

@ -7,6 +7,9 @@ import Storage from 'vue-ls'
import router from './router' import router from './router'
import store from './store/' import store from './store/'
import { VueAxios } from "@/utils/request" import { VueAxios } from "@/utils/request"
// import adaptive from './directive/el-table'
//
// Vue.use(adaptive)
//main.js //main.js
import { Base64 } from 'js-base64'; import { Base64 } from 'js-base64';
Vue.prototype.$Base64 = Base64 Vue.prototype.$Base64 = Base64

177
src/views/accessrecords/flowchart/ProcessMaterialWarehousingFlowChart.vue

@ -1,96 +1,97 @@
<template> <template>
<div class="search"> <div class="search" >
<!--<a-card style="margin-bottom:10px;"> <!--<a-card style="margin-bottom:10px;">
<p slot="title"> <p slot="title">
<span>流程审批进度历史</span> <span>流程审批进度历史</span>
</p> </p>
<a-row style="position:relative">
<a-table :loading="loading" rowKey="id"
:dataSource="data"
:pagination="false"
ref="table">
<a-table-column title="#" width="50">
<template slot-scope="t,r,i" >
<span> {{i+1}} </span>
</template>
</a-table-column>
<a-table-column title="任务名称" dataIndex="name" width="150" align="center">
<template slot-scope="t">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="处理人" dataIndex="assignees" width="150" align="center">
<template slot-scope="t">
<div v-if="t">
<span v-for="item in t">
<span v-if="item.isExecutor" style="color: #00DB00;">{{item.username}} </span>
<span v-else style="color: #999;">{{item.username}} </span>
</span>
</div>
</template>
</a-table-column>
<a-table-column title="审批操作" dataIndex="deleteReason" width="150" align="center">
<template slot-scope="t">
<span v-if="t.toString().indexOf('通过')>-1" style="color: #00DB00">{{t}}</span>
<span v-else-if="t.toString().indexOf('驳回')>-1" style="color: red;">{{t}}</span>
<span v-else>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="审批意见" dataIndex="comment" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="耗时" dataIndex="duration" width="150" align="center">
<template slot-scope="t">
<span>{{millsToTime(t)}}</span>
</template>
</a-table-column>
<a-table-column title="创建时间" dataIndex="createTime" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="完成时间" dataIndex="endTime" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="状态" dataIndex="endTime" key="aaa" width="150" align="center">
<template slot-scope="t">
<span v-if="t" style="color: blue;">已办理</span>
<span v-else style="color: #999999">待处理</span>
</template>
</a-table-column>
</a-table>
</a-row>
</a-card>-->
<!-- <a-tabs type="card" @change="callback">-->
<!-- <a-tab-pane key="1" tab="实时流程图">-->
<!--<p slot="title">
<span>实时流程图</span>
</p>-->
<a-row style="position:relative"> <a-row style="position:relative">
<a-table :loading="loading" rowKey="id" <img :src="imgUrl" />
:dataSource="data" <a-spin size="large" fix v-if="loadingImg"></a-spin>
:pagination="false"
ref="table">
<a-table-column title="#" width="50">
<template slot-scope="t,r,i" >
<span> {{i+1}} </span>
</template>
</a-table-column>
<a-table-column title="任务名称" dataIndex="name" width="150" align="center">
<template slot-scope="t">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="处理人" dataIndex="assignees" width="150" align="center">
<template slot-scope="t">
<div v-if="t">
<span v-for="item in t">
<span v-if="item.isExecutor" style="color: #00DB00;">{{item.username}} </span>
<span v-else style="color: #999;">{{item.username}} </span>
</span>
</div>
</template>
</a-table-column>
<a-table-column title="审批操作" dataIndex="deleteReason" width="150" align="center">
<template slot-scope="t">
<span v-if="t.toString().indexOf('通过')>-1" style="color: #00DB00">{{t}}</span>
<span v-else-if="t.toString().indexOf('驳回')>-1" style="color: red;">{{t}}</span>
<span v-else>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="审批意见" dataIndex="comment" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="耗时" dataIndex="duration" width="150" align="center">
<template slot-scope="t">
<span>{{millsToTime(t)}}</span>
</template>
</a-table-column>
<a-table-column title="创建时间" dataIndex="createTime" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="完成时间" dataIndex="endTime" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="状态" dataIndex="endTime" key="aaa" width="150" align="center">
<template slot-scope="t">
<span v-if="t" style="color: blue;">已办理</span>
<span v-else style="color: #999999">待处理</span>
</template>
</a-table-column>
</a-table>
</a-row> </a-row>
</a-card>-->
<!-- <a-tabs type="card" @change="callback">-->
<!-- <a-tab-pane key="1" tab="实时流程图">-->
<!--<p slot="title"> <!-- </a-tab-pane>-->
<span>实时流程图</span> <!-- <a-tab-pane key="2" tab="表单数据" v-if="lcModa">
</p>--> <a-card>
<a-row style="position:relative"> &lt;!&ndash;流程表单&ndash;&gt;
<img :src="imgUrl" /> <component :disabled="lcModa.disabled" :is="lcModa.formComponent"
<a-spin size="large" fix v-if="loadingImg"></a-spin> :processData="lcModa.processData" :isNew="lcModa.isNew" :task="lcModa.isTask"
</a-row> @afterSubmit="afterSub"
@passTask="pass(lcModa.processData)"
@backTask="back(lcModa.processData)"
@close="lcModa.visible=false,lcModa.disabled = false"></component>
</a-card>
</a-tab-pane>-->
<!--</a-tabs>-->
</div>
<!-- </a-tab-pane>-->
<!-- <a-tab-pane key="2" tab="表单数据" v-if="lcModa">
<a-card>
&lt;!&ndash;流程表单&ndash;&gt;
<component :disabled="lcModa.disabled" :is="lcModa.formComponent"
:processData="lcModa.processData" :isNew="lcModa.isNew" :task="lcModa.isTask"
@afterSubmit="afterSub"
@passTask="pass(lcModa.processData)"
@backTask="back(lcModa.processData)"
@close="lcModa.visible=false,lcModa.disabled = false"></component>
</a-card>
</a-tab-pane>-->
<!--</a-tabs>-->
</div>
</template> </template>
<script> <script>

6
src/views/burst/form/purchase/ProcessIndustrialPurchaseForm.vue

@ -709,9 +709,9 @@ import { accMul } from '../../../../../common/common'
if (this.processIndustrialPurchaseMaterialTable.columns[1].options.length > 0) { if (this.processIndustrialPurchaseMaterialTable.columns[1].options.length > 0) {
this.processIndustrialPurchaseMaterialTable.columns[1].options = []; this.processIndustrialPurchaseMaterialTable.columns[1].options = [];
} }
if (this.processIndustrialPurchaseMaterialTable.columns[2].options.length > 0) { // if (this.processIndustrialPurchaseMaterialTable.columns[2].options.length > 0) {
this.processIndustrialPurchaseMaterialTable.columns[2].options = []; // this.processIndustrialPurchaseMaterialTable.columns[2].options = [];
} // }
let qc = []; let qc = [];
newList.forEach(item => { newList.forEach(item => {
qc.push({ qc.push({

287
src/views/burst/form/purchase/ProcessIndustrialScrapsForm.vue

@ -53,7 +53,7 @@
:loading="processIndustrialScrapMaterialTable.loading" :loading="processIndustrialScrapMaterialTable.loading"
:columns="processIndustrialScrapMaterialTable.columns" :columns="processIndustrialScrapMaterialTable.columns"
:dataSource="processIndustrialScrapMaterialTable.dataSource" :dataSource="processIndustrialScrapMaterialTable.dataSource"
:dragSortType="accounting" :dragSortType=this.assigneesText
:maxHeight="300" :maxHeight="300"
:disabled="formDisabled" :disabled="formDisabled"
:isabled="isabled" :isabled="isabled"
@ -63,8 +63,10 @@
:rowSelection="true" :rowSelection="true"
:qeihuan = this.qeihuan :qeihuan = this.qeihuan
:actionButton="!task" :actionButton="!task"
@descriptionFetch = "searchInformation" @descriptionFetch = "getMBShuJu"
/> />
<!-- -->
<!-- -->
</a-tab-pane> </a-tab-pane>
</a-tabs> </a-tabs>
<div class="div_process"> <div class="div_process">
@ -103,6 +105,7 @@ import JDictSelectTag from '@/components/dict/JDictSelectTag'
import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany' import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany'
import { getAction, getCurrentTime, getStringArry, httpAction } from '@api/manage' import { getAction, getCurrentTime, getStringArry, httpAction } from '@api/manage'
import pick from 'lodash.pick' import pick from 'lodash.pick'
import { accMul } from '../../../../../common/common'
export default { export default {
name: 'ProcessIndustrialScrapsForm', name: 'ProcessIndustrialScrapsForm',
@ -121,7 +124,7 @@ export default {
isGetOneAndLast: true, // isGetOneAndLast: true, //
btndisabled: false, btndisabled: false,
materialNature : null, // materialNature : null, //
accounting: undefined, // assigneesText: undefined, //
isabled : true, isabled : true,
qeihuan : '' ,// qeihuan : '' ,//
labelCol: { labelCol: {
@ -150,7 +153,7 @@ export default {
{ required: true, message: '请输入流程发起部门!' } { required: true, message: '请输入流程发起部门!' }
], ],
materialType: { rules:[ materialType: { rules:[
{ required: true, message: '请输入物资类型!'}, { required: true, message: '请选择物资类型!'},
]}, ]},
}, },
// //
@ -286,12 +289,20 @@ export default {
add: '/burst/processIndustrialScraps/add', add: '/burst/processIndustrialScraps/add',
addApply:'/burst/processIndustrialScraps/addApply', addApply:'/burst/processIndustrialScraps/addApply',
edit: '/burst/processIndustrialScraps/edit', edit: '/burst/processIndustrialScraps/edit',
processIndustrialUrlList: '/burst/processIndustrial/list', // ownList: "/burst/processIndustrialScraps/ownList",
processIndustrialUrlList: '/burst/processIndustrialScraps/list', //
processIndustrialScrapMaterial: { processIndustrialScrapMaterial: {
list: '/burst/processIndustrialScraps/queryProcessIndustrialScrapMaterialByMainId' list: '/burst/processIndustrialScraps/queryProcessIndustrialScrapMaterialByMainId'
} }
} },
isShifu: false, //
MBShuJuList: [], //
MBShuJu: {}, //
historyNumList: [], //
qeihuan : '' ,//
describes: '',//
} }
}, },
props: { props: {
/*流程数据*/ /*流程数据*/
@ -335,12 +346,177 @@ export default {
this.isabled = false; this.isabled = false;
this.qeihuan = val; this.qeihuan = val;
// //
this.assigneesText = val // this.assigneesText = val
await this.searchInformation(); // await this.searchInformation();
} }
}, },
//
async getMBShuJu(v){
let par ={};
let url = '';
console.log("v>>>>>>>>>",v)
//
if(!!v){
par.id = v;
url = this.url.queryById;
} else {
url = this.url.ownList;
}
//
par.materialType = this.assigneesText;
await getAction(url,par).then(res => {
if(res.success){
if(!!v){
this.MBShuJu = res.result;
}else{
this.MBShuJuList = res.result.records;
this.initialData(this.MBShuJuList);
}
}
})
},
//
async initialData(newList){
console.log("-=-=-=",newList);
await this.getSurface();
if (this.processIndustrialScrapMaterialTable.columns[1].options.length > 0) {
this.processIndustrialScrapMaterialTable.columns[1].options = [];
}
// if (this.processIndustrialPurchaseMaterialTable.columns[2].options.length > 0) {
// this.processIndustrialPurchaseMaterialTable.columns[2].options = [];
// }
let qc = [];
newList.forEach(item => {
console.log(item.pyrotechnics)
qc.push({
title: item.pyrotechnics,
value: item.id,
disabled: false
})
})
this.historyNumList.forEach( item => {
qc.forEach(it =>{
if(it.value == item.materialNumber){
it.disabled = true;
}
})
});
this.processIndustrialScrapMaterialTable.columns[1].options = qc;
},
getSurface(){
//
return new Promise(async(resolve, reject) => {
await this.$refs.processIndustrialScrapMaterial.getValuesPromise().then(re => {
this.historyNumList = re;
})
resolve(this.historyNumList);
})
},
//
qingKong(id){
let values = [
{
rowKey: id,
values: {
'materialGroup': null,
'industrialName': '',
'unit': undefined,
'materialPrice': '',
'quantity': '',
'amount': '',
'money': '',
'scrapCause': '',
'remarks': '',
}
}
]
this.$refs.processIndustrialScrapMaterial.setValues(values);
},
//
fuZhi(id,v){
console.log("vvv",v);
let values = [
{
rowKey: id,
values: {
'materialGroup': v.materialClassify,
'equipment': v.id,
'materialSeries': v.pyrotechnics ,
'industrialName': v.pyrotechnicsName,
'unit': v.unit,
'materialPrice': v.manufacturer,
'quantity': v.number,
'amount': '',
'money': '',
'scrapCause': null,
'remarks': null
}
}
]
// console.log(values);
this.$refs.processIndustrialScrapMaterial.setValues(values)
},
async onSelect(record){ async onSelect(record){
console.log("record>>>>>>>>>>>>>>>>>>>>>>>>>",record) console.log("record>>>>>>>>>>>>>>>>>>>>>>>>>",record)
// console.log("=-",record);
await this.getSurface();
if(!!record.row.id){
let same = false;
this.historyNumList.forEach( item =>{
// console.log("=-",record);
// console.log("====",item);
if(!!item.equipment && !!item.equipment && item.equipment == record.value ){
this.qingKong(record.row.id);
same = true;
}
});
if(same){
return ;
}
}
if ( record.column.key == "equipment" && !!record.row.equipment
|| record.column.key =="equipment" && !!record.row.equipment ) {
// console.log("select==",record.row);
this.qingKong(record.row.id);
return
}
if(this.isShifu && !!record.row.id){
//
await this.getMBShuJu(record.value);
this.isShifu = false;
this.fuZhi(record.row.id,this.MBShuJu);
}
if(record.column.key === "materialNumber" && !!record.row.id ){
this.MBShuJuList.forEach(item =>{
if(item.id === record.value){
this.fuZhi(record.row.id,item);
return
}
})
}
//
if (!!record.row.materialQuantity && !!record.row.materialPrice && !!record.row.id ) {
// record.row.materialAmount = record.row.materialQuantity * record.row.materialPrice;
console.log("3出发了");
//
if (record.row.id !== undefined) {
let values = [
{
rowKey: record.row.id,
values: {
'materialQuantity': record.row.materialQuantity,
'materialAmount': accMul(record.row.materialQuantity,record.row.materialPrice),
}
}
]
this.$refs.processIndustrialScrapMaterial.setValues(values)
}
}
// // // //
// if(record.column.key == "equipment" && !!record.row.id || record.column.key == "materialName" && !!record.row.id ){ // if(record.column.key == "equipment" && !!record.row.id || record.column.key == "materialName" && !!record.row.id ){
// await this.pastSla(); // await this.pastSla();
@ -421,54 +597,55 @@ export default {
passTask() { passTask() {
}, },
// //
searchInformation(value){ // searchInformation(value){
// console.log("")
return new Promise( (resolve, reject) => { // return new Promise( (resolve, reject) => {
let par = { // console.log("this.accounting>>>>>>>>>>>>>>"+this.accounting);
materialType: this.accounting, // let par = {
pageNo: 1, // materialType: this.accounting,
pageSize: 50 // pageNo: 1,
} // pageSize: 50
let numberList = []; // }
this.$refs.processIndustrialScrapMaterial.getValues((a, b, c) => { // let numberList = [];
b.forEach(item => { // this.$refs.processIndustrialScrapMaterial.getValues((a, b, c) => {
if (!!item.equipment) { // b.forEach(item => {
numberList.push(item.equipment) // if (!!item.equipment) {
} // numberList.push(item.equipment)
}) // }
}) // })
// // })
console.log("par=-=-=-",par); // //
getAction(this.url.processIndustrialUrlList,par).then(res =>{ // console.log("par=-=-=-",par);
if(res.success){ // getAction(this.url.ownList,par).then(res =>{
this.equipmentList = res.result.records; // if(res.success){
let nu = res.result.records || res.result; // this.equipmentList = res.result.records;
let qc = []; // let nu = res.result.records || res.result;
if (this.processIndustrialScrapMaterialTable.columns[1].options.length > 0) { // let qc = [];
this.processIndustrialScrapMaterialTable.columns[1].options = [] // if (this.processIndustrialScrapMaterialTable.columns[1].options.length > 0) {
} // this.processIndustrialScrapMaterialTable.columns[1].options = []
nu.forEach(item =>{ // }
qc.push({ // nu.forEach(item =>{
title: item.coding, // qc.push({
value: item.id, // title: item.coding,
disabled: false // value: item.id,
}) // disabled: false
}) // })
numberList.forEach( it => { // })
// console.log("000000",it); // numberList.forEach( it => {
qc.forEach(item =>{ // // console.log("000000",it);
if( it == item.value ){ // qc.forEach(item =>{
item.disabled = true; // if( it == item.value ){
} // item.disabled = true;
}) // }
}) // })
this.processIndustrialScrapMaterialTable.columns[1].options = qc; // })
} // this.processIndustrialScrapMaterialTable.columns[1].options = qc;
resolve(); // }
}) // resolve();
}) // })
// })
}, // },
// //
applySubmit(e) { applySubmit(e) {
this.getAllTable().then(tables => { this.getAllTable().then(tables => {

2
src/views/regime/ProcessRegimeList.vue

@ -140,6 +140,7 @@
import { mixinDevice } from '@/utils/mixin' import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin' import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessRegimeModal from './modules/ProcessRegimeModal' import ProcessRegimeModal from './modules/ProcessRegimeModal'
import { getAction } from '../../api/manage'
export default { export default {
name: 'ProcessRegimeList', name: 'ProcessRegimeList',
@ -244,6 +245,7 @@
let fieldList=[]; let fieldList=[];
fieldList.push({type:'string',value:'title',text:'标题',dictCode:''}) fieldList.push({type:'string',value:'title',text:'标题',dictCode:''})
fieldList.push({type:'Text',value:'contentDetails',text:'内容',dictCode:''}) fieldList.push({type:'Text',value:'contentDetails',text:'内容',dictCode:''})
fieldList.push({type:'Text',value:'contentDetails',text:'内容',dictCode:''})
fieldList.push({type:'date',value:'createTime',text:'创建时间'}) fieldList.push({type:'date',value:'createTime',text:'创建时间'})
fieldList.push({type:'int',value:'states',text:'状态',dictCode:''}) fieldList.push({type:'int',value:'states',text:'状态',dictCode:''})
fieldList.push({type:'int',value:'delFalg',text:'删除标志',dictCode:''}) fieldList.push({type:'int',value:'delFalg',text:'删除标志',dictCode:''})

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

@ -8,6 +8,16 @@
<a-input v-model="model.title" placeholder="请输入标题" ></a-input> <a-input v-model="model.title" placeholder="请输入标题" ></a-input>
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
<a-col :span="24" >
<a-form-item label="附件" >
<j-upload v-decorator="['fileId']" :trigger-change="true" style="z-index: 999"></j-upload>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="文件" prop="ossFileList" v-show="false">
<FileList v-decorator="['ossFileList']"></FileList>
</a-form-model-item>
</a-col>
<a-col :span="24"> <a-col :span="24">
<a-form-model-item label="内容" prop="contentDetails"> <a-form-model-item label="内容" prop="contentDetails">
<j-editor v-model="model.contentDetails" /> <j-editor v-model="model.contentDetails" />
@ -31,12 +41,15 @@
<script> <script>
import { httpAction, getAction } from '@/api/manage' import { httpAction, getAction,getRecord } from '@/api/manage'
import JUpload from '@/components/jeecg/JUpload'
import { validateDuplicateValue } from '@/utils/util' import { validateDuplicateValue } from '@/utils/util'
import pick from 'lodash.pick'
export default { export default {
name: 'ProcessRegimeForm', name: 'ProcessRegimeForm',
components: { components: {
JUpload
}, },
props: { props: {
// //
@ -88,6 +101,10 @@
this.edit(this.modelDefault); this.edit(this.modelDefault);
}, },
edit (record) { edit (record) {
if (record.id) {
//1
record = getRecord(record)
}
this.model = Object.assign({}, record); this.model = Object.assign({}, record);
this.visible = true; this.visible = true;
}, },

2
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

@ -67,6 +67,7 @@
:pagination="ipagination" :pagination="ipagination"
:loading="loading" :loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
:height="gloable_tableHeight"
@change="handleTableChange"> @change="handleTableChange">
<span slot="merchandiseName" slot-scope="text, record"> <span slot="merchandiseName" slot-scope="text, record">
@ -116,7 +117,6 @@
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { deleteAction, getAction } from '@api/manage' import { deleteAction, getAction } from '@api/manage'
export default { export default {
name: 'ProcessSuppliesStrongerList', name: 'ProcessSuppliesStrongerList',
mixins:[JeecgListMixin, mixinDevice], mixins:[JeecgListMixin, mixinDevice],

Loading…
Cancel
Save