Browse Source

修改bug

dev
caoyizhong 2 years ago
parent
commit
f54b01cc33
  1. 6
      src/components/jeecgbiz/JSelectUserByDep.vue
  2. 17
      src/components/jeecgbiz/modal/JSelectUserByDepModal.vue
  3. 46
      src/views/activiti/Schedule.vue
  4. 10
      src/views/activiti/form/ProcessMaterialWarehousingForm.vue
  5. 2
      src/views/activiti/form/ProcessPermissionAuthorization.vue
  6. 42
      src/views/activiti/form/ProcessPermissionAuthorizationForm.vue
  7. 29
      src/views/activiti/form/ProcessUdgetPlan.vue
  8. 10
      src/views/activiti/form/ProcessUdgetPlanForm.vue
  9. 19
      src/views/dashboard/HomePage.vue
  10. 103
      src/views/materialstorage/modules/ProcessMaterialStorageForm.vue
  11. 44
      src/views/office/OfficeConfig.vue
  12. 2
      src/views/statisticanalysis/costecharts/CaseCost.vue
  13. 2
      src/views/statisticanalysis/costecharts/Cost.vue
  14. 4
      src/views/statisticanalysis/costecharts/ItemCost.vue
  15. 26
      src/views/system/modules/DeptUserInfo.vue
  16. 5
      src/views/system/modules/UserModal.vue
  17. 2
      src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue

6
src/components/jeecgbiz/JSelectUserByDep.vue

@ -10,7 +10,7 @@
>
<a-button slot="enterButton" :disabled="disabled">选择用户</a-button>
</a-input-search>
<j-select-user-by-dep-modal ref="selectModal" :modal-width="modalWidth" :multi="multi" @ok="selectOK" :user-ids="value" @initComp="initComp"/>
<j-select-user-by-dep-modal ref="selectModal" :modal-width="modalWidth" :multi="multi" @ok="selectOK" :user-ids="value" @initComp="initComp" :xuan ="xuan"/>
</div>
</template>
@ -30,6 +30,10 @@
type: String,
required: false
},
xuan: {
type: String,
required: false
},
disabled: {
type: Boolean,
required: false,

17
src/components/jeecgbiz/modal/JSelectUserByDepModal.vue

@ -68,7 +68,7 @@
export default {
name: 'JSelectUserByDepModal',
components: {},
props: ['modalWidth', 'multi', 'userIds'],
props: ['modalWidth', 'multi', 'userIds','xuan'],
data() {
return {
queryParam: {
@ -261,10 +261,19 @@
},
handleSubmit() {
let that = this
this.getSelectUserRows()
that.$emit('ok', that.selectUserRows, that.selectUserIds)
that.searchReset(0)
that.close()
console.log(">>>>>>>>", that.selectUserRows)
console.log(">>>>>>>>", that.xuan);
if(!!that.xuan && that.selectionRows[0].username == that.xuan ){
this.$message.warning("授权人与被授权人不能相同!!");
}else {
that.$emit('ok', that.selectUserRows, that.selectUserIds)
that.searchReset(0)
that.close()
}
},
//
getSelectUserRows(rowId) {

46
src/views/activiti/Schedule.vue

@ -227,7 +227,8 @@
<component :disabled="lcModa.disabled" v-if="lcModa.visible" :is="lcModa.formComponent"
:processData="lcModa.processData" :isNew="lcModa.isNew" :isPlanType="lcModa.isPlanType"
:isSourceCapital="lcModa.isSourceCapital"
:task="true" :hieg="lcModa.hieg"
:task="lcModa.task"
:hieg="lcModa.hieg"
:routePlanName="lcModa.routePlanName"
:isTable="lcModa.isTable"
:itemId="lcModa.itemId"
@ -236,6 +237,7 @@
:allotBaoNumber = "lcModa.allotBaoNumber"
:isBuyerName = "lcModa.isBuyerName"
:lead = "lcModa.lead"
:rname = "lcModa.rname"
@afterSubmit="afterSub"
@passTask="()=>passTask(lcModa.processData)"
@backTask="()=>backTask(lcModa.processData)" :procInstId="lcModa.procInstId"
@ -478,6 +480,7 @@ export default {
back: '/actTask/back',
backToTask: '/actTask/backToTask',
delegate: '/actTask/delegate',
getNode: '/activiti_process/getNode',
},
processModalVisible: null,
activeKeyAll: [],
@ -498,11 +501,21 @@ export default {
procInstId:'',
pictureId:'',
itemId:'',
task: false,
},
form:{
priority:0,
assignees:[],
sendMessage:true
sendMessage:true,
id: '',
userId: '',
procInstId: '',
comment: '',
type: 0,
backTaskKey: '-1',
sendSms: false,
sendEmail: false
},
modalVisible: false,
showAssign: false,
@ -516,7 +529,9 @@ export default {
procInstId: '',
modalCancelVisible: false,
cancelForm: {},
loadingData: false
loadingData: false,
processNa: '', //
departIdsList: '', //ID
}
},
created(){
@ -573,7 +588,9 @@ export default {
this.loading = false;
})
},
//
changeBackTask(v) {
// console.log('>>>>',v);
if (v == '-1') {
return
}
@ -581,9 +598,16 @@ export default {
let param = {}
param.tableName = this.tableName
param.tableId = this.tableId
param.nodeId = v
param.nodeId = v;
if(this.processNa == '预算计划采购流程' || this.processNa == '权限授权流程 '){
param.departCode = '';
}else if(!!this.departIdsList) {
param.departCode = this.departIdsList;
}
// console.log(">>>>",param);
this.getAction(this.url.getNode, param).then(res => {
this.userLoading = false
this.userLoading = false;
// console.log("==",res.result);
if (res.success) {
if (res.result.users && res.result.users.length > 0) {
this.assigneeList = res.result.users
@ -744,14 +768,16 @@ export default {
},
async details(r) {
console.log("rrrr==================rrrrrrr",r)
console.log("rrrr==================rrrrrrr",r);
this.departIdsList = r.departIds;
this.processNa = r.processName;
if(r.name === '项目部经理' && r.processName === '物资出库流程' || r.name === '所属项目部经理' && r.processName === '物资出库流程'){
// console.log(" ===")
this.lcModa.actualNumber = false;
}else{
this.lcModa.actualNumber = true;
}
console.log(">>>>r.name",r.name);
if(r.name === '生产供应站' && r.processName === '物资调拨流程'){
// console.log(" =======")
this.lcModa.allotShuNumber = false;
@ -791,6 +817,10 @@ export default {
// console.log('-==========11',r);
this.lcModa.lead = true;
}
if(r.name === '生产供应站'){
// console.log('-==========11',r);
this.lcModa.rname = 1;
}
let param = {}
// param.id = r.procDefId
param.id = r.procInstId
@ -1050,6 +1080,7 @@ export default {
}
this.lcModa.procInstId=r.procInstId;
this.lcModa.isNew = false;
this.lcModa.task = false;
this.lcModa.visible = true;
},
remove(r) {
@ -1132,6 +1163,7 @@ export default {
this.$message.success("操作成功!请前往我的申请列表提交审批!")
},
reloadData(){
this.$message.success("操作成功!")
this.loadData();
}
}

10
src/views/activiti/form/ProcessMaterialWarehousingForm.vue

@ -126,7 +126,7 @@
<a-form-item v-if="!disabled" :wrapperCol="{ span: 24 }" style="text-align: center">
<span v-if="quantityChange">
<a-button type="primary" :disabled="disabled||btndisabled" @click="handleSubmit">保存</a-button>
<a-button style="margin-left: 8px" type="primary" :disabled="disabled||btndisabled" @click="applySubmit">提交申请
<a-button style="margin-left: 8px" type="primary" :disabled="disabled||btndisabled " @click="applySubmit">提交申请
</a-button>
<!-- <a-button style="margin-left: 8px" :disabled="disabled" @click="close">取消</a-button>-->
</span>
@ -504,7 +504,7 @@
}
})
params.historyId=record.row.id;
console.log('表单回显数据11', this.planQuantity)
// console.log('11', this.planQuantity)
await this.getAction(this.url.queryQuantityByProcessUdgetPlanId,params).then((res) => {
if (res.success) {
if(res.result!=null){
@ -512,13 +512,13 @@
}
}
})
console.log('表单回显数据2', this.warehousingQuantity)
// console.log('2', this.warehousingQuantity)
if(this.planQuantity-this.warehousingQuantity-record.row.materialQuantity<0){
this.$message.error('入库数量不能大于采购数量')
this.quantityChange=false;
this.btndisabled=true;
return;
}else {
this.quantityChange=true;
this.btndisabled=false;
}
console.log(record.row.materialQuantity,"----------++++");
this.$refs.processMaterialWarehousingList.setValues(values)

2
src/views/activiti/form/ProcessPermissionAuthorization.vue

@ -5,7 +5,7 @@
<a-tab-pane tab="流程正文" key="1" forceRender>
<process-permission-authorization-form :isNew="isNew" :processData="processData" :disabled="disabled"
@afterSubmit="afterSub" @close="close" :task="task" @passTask="passTask"
@backTask="backTask" @loadData="loadData"/>
@backTask="backTask" @loadData="loadData" />
</a-tab-pane>
<a-tab-pane tab="流程节点图" key="2" forceRender>

42
src/views/activiti/form/ProcessPermissionAuthorizationForm.vue

@ -30,12 +30,12 @@
</a-col>
<a-col :span="12">
<a-form-item label="授权人" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-select-user-by-dep v-decorator="['authorizationPerson',validatorRules.authorizationPerson]" :multi="false"/>
<j-select-user-by-dep v-decorator="['authorizationPerson',validatorRules.authorizationPerson]" :multi="false" @change="souXuan" :xuan="bei"/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="被授权人" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-select-user-by-dep v-decorator="['authorizedPerson',validatorRules.authorizedPerson]" :multi="false" />
<j-select-user-by-dep v-decorator="['authorizedPerson',validatorRules.authorizedPerson]" :multi="false" @change="beiXuan" :xuan="sou"/>
</a-form-item>
</a-col>
<a-col :span="12">
@ -69,7 +69,7 @@
<!-- </a-form-item>-->
<!-- </a-col>-->
<a-col :span="8" >
<a-form-item label="文件" :labelCol="labelCol3" :wrapperCol="wrapperCol3" style="z-index: 10000">
<a-form-item label="文件" :labelCol="labelCol3" :wrapperCol="wrapperCol3" style="z-index: 8">
<j-upload v-decorator="['fileId']" :trigger-change="true" ></j-upload>
</a-form-item>
</a-col>
@ -175,11 +175,11 @@
},
labelCol3: {
xs: { span: 24 },
sm: { span: 5 },
sm: { span: 7 },
},
wrapperCol3: {
xs: { span: 24 },
sm: { span: 5 },
xs: { span: 20 },
sm: { span: 6 },
},
confirmLoading: false,
url: {
@ -192,6 +192,8 @@
queryById: "/hy/processPermissionAuthorization/queryById"
},
btndisabled: false,
sou : '',
bei: '',
assignees:'',
validatorRules: {
// 'blur'
@ -244,6 +246,16 @@
}
},
methods: {
//
souXuan(v){
console.log("选择授权人===",v);
this.sou = v;
},
//
beiXuan(v){
console.log("选择被授权人=== authorizedPerson",v);
this.bei = v;
},
getHeight(){
this.conheight.height=window.innerHeight-230+'px';
},
@ -337,8 +349,8 @@
formData.title = this.processData.title
formData.processInstanceId = this.processData.id
}
console.log('格式化后的数据---',method)
console.log("表单提交数据",formData)
// console.log('---',method)
// console.log("",formData)
if (new Date(formData.privilegedTimeStart).getTime()/100>=new Date(formData.privilegedTimeEnd).getTime()/100){
this.$message.error("授权开始时间不能大于授权结束时间")
return;
@ -347,8 +359,18 @@
this.btndisabled = true;
httpAction(httpurl,formData,method).then((res)=>{
if(res.success){
this.$emit('loadData')
this.close();
// console.log("");
this.$message.success("授权流程,提交成功!");
this.$emit('loadData');
this.form.setFieldsValue({
authorizationPerson: '',
authorizedPerson: '',
privilegedTimeStart: '',
privilegedTimeEnd: '',
authorizationNumberDays: '',
fileId: '',
})
// this.close();
}else{
that.$message.warning(res.message);
}

29
src/views/activiti/form/ProcessUdgetPlan.vue

@ -5,6 +5,7 @@
<a-tab-pane tab="流程正文" key="1" forceRender >
<process-udget-plan-form :isNew="isNew" :processData="processData" :disabled="disabled" @afterSubmit="afterSub" @close="close" :task="task"
@passTask="passTask" @backTask="backTask" :hieg="hieg" @loadData="loadData" :isPlanType="isPlanType" :lead="lead"
:rname = "rname"
:isSourceCapital="isSourceCapital" :routePlanName="routePlanName" :itemId="itemId" :is-buyer-name="isBuyerName"/>
</a-tab-pane>
@ -14,8 +15,8 @@
<a-tab-pane tab="审批历史" key="3" forceRender>
<historic-detail :pictureId="pictureId" :procInstId="procInstId"/>
</a-tab-pane>
<a-tab-pane tab="制式表格" key="4" forceRender v-if="isTable">
<ProcessMaterialsPlanList :isTable="isTable" :materWared="this.$route.query.item" :procInstId="this.$route.query.procInstId"/>
<a-tab-pane tab="制式表格" key="4" forceRender v-if="isTables">
<ProcessMaterialsPlanList :isTable="isTables" :materWared="this.$route.query.item" :procInstId="this.$route.query.procInstId"/>
</a-tab-pane>
</a-tabs>
@ -48,7 +49,8 @@
return {
tabKey:2,
noDisabled:true,
onlineDisabled:true
onlineDisabled:true,
isTables : false,
}
},
props: {
@ -56,6 +58,7 @@
isNew: {type: Boolean, default: false, required: false},
task: {type: Boolean, default: false, required: false},
isTable:{type: Boolean, default: false, required: false},
rname:{type: String, required: false},
/*采购类型*/
isPlanType: {type: Boolean, default: false, required: false},
/*资金来源*/
@ -89,6 +92,19 @@
default: true,
required: false
},
//data
formData: {
type: Object,
default: () => {
},
required: false
},
//false true
formBpm: {
type: Boolean,
default: false,
required: false
},
},
// props: {
// /**/
@ -122,12 +138,15 @@
// }
// },
created() {
//
console.log(this.itemId);
if (this.itemId){
this.isTable=true
this.isTables=true
}
console.log(this.itemId,this.procInstId,"***********")
// console.log(this.itemId,this.procInstId,"***********")
this.$route.query.item=this.itemId
this.$route.query.procInstId=this.procInstId
console.log("this.this.",this.task);
},
methods: {
afterSub(formData){

10
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -135,6 +135,7 @@
@bumen="bumen"
@descriptionFetch="fetchMerchandiseNews"
>
<!-- :actionButton="!task" 去除新增按钮 -->
<template v-slot:action="props">
<a-tooltip placement="top">
<template v-slot:title="props">
@ -610,6 +611,7 @@
isNew: { type: Boolean, default: false, required: false },
/*是否处理流程*/
task: { type: Boolean, default: false, required: false },
allotShuNumber: { type: Boolean, default: false, required: false }, ////
isBuyerName: { type: Boolean, default: false, required: false },
lead: { type: Boolean, default: false, required: false },
/*采购类型*/
@ -617,6 +619,7 @@
/*资金来源*/
isSourceCapital: { type: Boolean, default: false, required: false },
routePlanName: { type: String, default: '', required: false },
rname: { type: String, default: '', required: false },
//data
formData: {
type: Object,
@ -671,11 +674,15 @@
}
},
created() {
console.log("是否通过!!!",this.task);
//data
//this.showFlowData()
if (!this.isPlanType) {
this.isGetOneAndLast = true
}
if(!!this.rname){
this.isabled = false;
}
this.getAllTable()
let company = sessionStorage.getItem('PARENT_ID')
@ -1084,7 +1091,8 @@
}
]
this.$refs.processUdgetPlanMaterial.setValues(values)
this.isabled = true
this.isabled = true;
console.log("执行了333===",this.allotShuNumber);
}
}

19
src/views/dashboard/HomePage.vue

@ -111,7 +111,7 @@
<!-- <j-ellipsis :value="text" :length="5" />-->
<!-- </span>-->
<span slot="post" slot-scope="text, record" @click="regimeTextClick(record)" >
<j-ellipsis :value="text" :length="16" />
<j-ellipsis :value="text" :length="15" />
</span>
<span slot="filename" slot-scope="text, record" @click="regimeFileClick(record)">
<j-ellipsis :value="text" :length="15"/>
@ -291,12 +291,13 @@ export default {
},
// {
// align:"left",
// dataIndex: 'title',
// ellipsis: true,
// sorter: true
// },
{
align:"left",
dataIndex: 'createBy',
width:50,
// ellipsis: true,
// sorter: true
},
// {
// align:"left",
// dataIndex: 'contentDetails',
@ -750,7 +751,7 @@ export default {
loginList(){
let param = Object.assign({} );
getAction(this.url.listSregime,param).then((res) => {
// console.log(res.result,"111111=======")
console.log(res.result,"111111=======")
// if (res.success) {
// this.loading = false
// this.loginLogs = res.result.records
@ -761,7 +762,7 @@ export default {
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;
}
})

103
src/views/materialstorage/modules/ProcessMaterialStorageForm.vue

@ -9,8 +9,7 @@
<a-auto-complete
v-decorator="['supplierId',validatorRules.supplierId]" placeholder="请输入供应商"
:data-source="bigSupplierId"
@select="onSelectRake"
@search="onSearchSupplier"
disabled
/>
</a-form-item>
</a-col>
@ -20,20 +19,19 @@
<a-auto-complete
v-decorator="['merchandiseNewsId',validatorRules.merchandiseNewsId]" placeholder="请输入物料名称"
:data-source="bigMerchandiseId"
@select="onSelectRake"
@select="onSelectRakeSearchMerchandiseNews"
@search="onSearchMerchandiseNews"
/>
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item label="物料编号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-form-item label="物料编号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<!-- <a-input v-decorator="['descriptionId']" placeholder="请输入品名类" ></a-input>-->
<a-auto-complete
v-decorator="['descriptionId',validatorRules.descriptionId]" placeholder="请输入品名类"
:data-source="bigId"
@select="onSelectRake"
@search="onSearch"
disabled
/>
</a-form-item>
</a-col>
@ -62,14 +60,15 @@
:data-source="bigIdUnit"
@select="onSelectRake"
@search="onSearchRake"
disabled
/>
</a-form-item>
</a-col>
<!-- <a-col :span="8">-->
<!-- <a-form-item label="删除标志" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <a-input-number v-decorator="['delFlag']" placeholder="请输入删除标志" style="width: 100%" />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<a-col :span="8">
<a-form-item label="大品类" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input-number v-decorator="['classify']" placeholder="请输入大品类" style="width: 100%" disabled />
</a-form-item>
</a-col>
<!-- <a-col :span="8">-->
<!-- <a-form-item label="删除时间" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <j-date placeholder="请选择删除时间" v-decorator="['delTime']" :trigger-change="true" style="width: 100%" />-->
@ -196,28 +195,57 @@
this.fetchDataMerchandiseNews()
},
methods: {
onSearchSupplier(searchText) { //
console.log(searchText)
// this.dataSource = !searchText ? [] : [searchText];
this.fetchDataSupplier(searchText);
},
// onSearchSupplier(searchText) { //
// console.log(searchText)
// // this.dataSource = !searchText ? [] : [searchText];
// this.fetchDataSupplier(searchText);
// },
onSearchRake(searchText) { //
console.log(searchText)
// this.dataSource = !searchText ? [] : [searchText];
this.fetchDataRake(searchText);
},
onSearch(searchText) { //
console.log(searchText)
// this.dataSource = !searchText ? [] : [searchText];
this.fetchData(searchText);
},
// onSearch(searchText) { //
// console.log(searchText)
// // this.dataSource = !searchText ? [] : [searchText];
// this.fetchData(searchText);
// },
onSearchMerchandiseNews(searchText) { //
console.log(searchText)
console.log("searchTextsearchText",searchText)
// this.dataSource = !searchText ? [] : [searchText];
this.fetchDataMerchandiseNews(searchText);
},
onSelectRake(value) {
console.log('onSelect', value);
//
// this.bigMerchandiseIdList.forEach(is =>{
// console.log(is);
// if(is.merchandiseName === value){
// this.form.setFieldsValue({
// supplierId: is.supplierId,
// descriptionId: is.descriptionId,
// unit: is.materialsUnit
// })
// }
// });
},
onSelectRakeSearchMerchandiseNews(value) {
// console.log('onSelect', value);
this.bigMerchandiseIdList.forEach(is =>{
// console.log(is);
if(is.merchandiseName === value){
// console.log(is);
this.form.setFieldsValue({
supplierId: is.supplierId,
descriptionId: is.descriptionId,
unit: is.materialsUnit,
classify : is.classify
})
}
});
},
fetchDataMerchandiseNews (value){
//
@ -229,7 +257,7 @@
this.bigMerchandiseId = [];
getAction(this.url.merchandiseNewsList,par).then((res)=>{
if(res.success){
console.log(res.result);
console.log("查询数据",res.result);
// this.bigId = res.result.records;
res.result.records.forEach( item => {
this.bigMerchandiseId.push(item.merchandiseName);
@ -347,26 +375,27 @@
that.confirmLoading = false;
})
}
})
},
dispose(item){
// console.log(this.bigSupplierIdList);
// console.log(this.bigIdList);
// console.log(this.bigMerchandiseIdList);
this.bigSupplierIdList.forEach( is => { //
if(is.supplierName === item.supplierId){
item.supplierId = is.id;
}
});
this.bigIdList.forEach(is =>{
if(is.descriptionName === item.descriptionId){
item.descriptionId = is.id;
}
});
// console.log("this.bigSupplierIdList",this.bigSupplierIdList);
// console.log("item",item);
// console.log("this.bigIdList",this.bigIdList);
// console.log("this.bigMerchandiseIdList",this.bigMerchandiseIdList);
// this.bigSupplierIdList.forEach( is => { //
// if(is.supplierName === item.supplierId){
// item.supplierId = is.id;
// }
// });
// this.bigIdList.forEach(is =>{
// if(is.descriptionName === item.descriptionId){
// item.descriptionId = is.id;
// }
// });
this.bigMerchandiseIdList.forEach(is =>{
if(is.merchandiseName === item.merchandiseNewsId){
item.merchandiseNewsId = is.id;
}
});
},

44
src/views/office/OfficeConfig.vue

@ -24,6 +24,9 @@
<!-- 操作按钮区域 -->
<div class="table-operator" style="border-top: 5px">
<a-button @click="handleAdd" type="primary" icon="plus" >添加科室</a-button>
<a-dropdown v-if="selectedRowKeys.length > 0" >
<a-button style="margin-left: 8px" @click="batchDels"><a-icon type="delete" />删除</a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
@ -93,7 +96,7 @@
<script>
import OfficeConfigModal from './modules/OfficeConfigModal'
import {putAction,getFileAccessHttpUrl} from '@/api/manage';
import { putAction, getFileAccessHttpUrl, deleteAction } from '@/api/manage'
import {frozenBatch} from '@/api/api'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import JInput from '@/components/jeecg/JInput'
@ -181,7 +184,7 @@
syncUser: "/act/process/extActProcess/doSyncUser",
list: "/officeConfig/pageList",
delete: "/officeConfig/delete",
deleteBatch: "/sys/user/deleteBatch",
deleteBatch: "/officeConfig/deleteBatch",
exportXlsUrl: "/sys/user/exportXls",
importExcelUrl: "sys/user/importExcel",
},
@ -193,6 +196,43 @@
}
},
methods: {
//
batchDels () {
if(!this.url.deleteBatch){
this.$message.error("请设置url.deleteBatch属性!")
return
}
if (this.selectedRowKeys.length <= 0) {
this.$message.warning('请选择一条记录!');
return;
} else {
var ids = "";
for (var a = 0; a < this.selectedRowKeys.length; a++) {
ids += this.selectedRowKeys[a] + ",";
}
var that = this;
this.$confirm({
title: "确认删除",
content: "是否删除选中数据?",
onOk: function () {
that.loading = true;
deleteAction(that.url.deleteBatch, {ids: ids}).then((res) => {
if (res.success) {
that.$message.success(res.message);
that.loadData();
that.onClearSelected();
} else {
that.$message.warning(res.message);
}
}).finally(() => {
that.loading = false;
});
}
});
}
},
setimgurl(avatar){
this.imgurl=this.getAvatarView(avatar)
document.getElementById('imgs').click();

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

@ -1,6 +1,6 @@
<template>
<!-- <div>项目成本情况</div>-->
<div style="width: 100%;height:100%;background-color: #ffffff;border-radius:15px;z-index: 999 ">
<div style="width: 100%;height:100%;background-color: #ffffff;border-radius:15px;z-index: 99 ">
<div style="height: 10%;margin-left: 2%;padding-top: 1%">
<div style="font-size: 25px;margin-bottom: 5px">项目部成本情况
<!-- <j-dict-select-tag type="list" v-model="formData.materialType" style="width: 20%;float: right;margin-right: 2%"-->

2
src/views/statisticanalysis/costecharts/Cost.vue

@ -2,7 +2,7 @@
<div style="width: 95%;height:100% ;background-color: #ffffff;margin-top: 2%;border-radius: 10px">
<div style="height: 20%;margin-left: 6%;padding-top: 2%">
<div style="font-size: 25px;margin-bottom: 5px;margin-bottom: 2%">公司成本
<span style="margin-left: 9%;margin-right: 2%"> <a-month-picker placeholder="选择日期" @change="disabledDate" v-model="formData.dateItem"/> </span>
<span style="margin-left: 7%;margin-right: 1%"> <a-month-picker placeholder="选择日期" @change="disabledDate" style="width: 25%" v-model="formData.dateItem"/> </span>
<j-dict-select-tag type="list" v-model="formData.materialType" style="width: 30%;margin-left: 2%"
:trigger-change="true" dictCode="material_type"
placeholder="请选择物资类型" @change="handleChange"/>

4
src/views/statisticanalysis/costecharts/ItemCost.vue

@ -1,9 +1,9 @@
<template>
<!-- <div>项目成本</div>-->
<div style="width: 95%;height:100% ;background-color: #ffffff;margin-top: 2%;border-radius: 10px">
<div style="height: 20%;margin-left: 6%;padding-top: 2%">
<div style="height: 20%;margin-left: 6%;padding-top: 2%;width: 100%">
<div style="font-size: 25px;margin-bottom: 5px;margin-bottom: 2%">项目部成本
<span style="margin: 0% 4%"> <a-month-picker placeholder="选择日期" @change="disabledDate" v-model="formData.dateItem"/> </span>
<span style="margin: 0% 2%"> <a-month-picker placeholder="选择日期" @change="disabledDate" style="width: 24%" v-model="formData.dateItem"/> </span>
<j-dict-select-tag type="list" v-model="formData.materialType" style="width: 30%"
dictCode="material_type" placeholder="请选择物资类型" @input="handleChange"/>
</div>

26
src/views/system/modules/DeptUserInfo.vue

@ -27,8 +27,8 @@
<!-- 操作按钮区域 -->
<div class="table-operator" :md="24" :sm="24" style="margin-top: -15px">
<!--<a-button @click="handleEdit" type="primary" icon="edit" style="margin-top: 16px">用户编辑</a-button>-->
<a-button @click="handleAddUserDepart" type="primary" icon="plus">添加已有用户</a-button>
<a-button @click="handleAdd" type="primary" icon="plus" style="margin-top: 16px">新建用户</a-button>
<a-button @click="handleAddUserDepart" type="primary" icon="plus" v-has="'DeptUserInfo: onceadd'">添加已有用户</a-button>
<a-button @click="handleAdd" type="primary" icon="plus" style="margin-top: 16px" v-has="'DeptUserInfo:add'">新建用户</a-button>
<!-- <a-dropdown v-if="selectedRowKeys.length > 0">-->
<!-- <a-menu slot="overlay">-->
@ -41,8 +41,8 @@
<!-- <a-icon type="down"/>-->
<!-- </a-button>-->
<!-- </a-dropdown>-->
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-button style="margin-left: 8px" @click="batchDel"> 取消关联
<a-dropdown v-if="selectedRowKeys.length > 0" v-has="'DeptUserInfo:disassociates'">
<a-button style="margin-left: 8px" @click="batchDel" > 取消关联
<a-icon type="delete"/>
</a-button>
</a-dropdown>
@ -72,25 +72,25 @@
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">编辑</a>
<a @click="handleEdit(record)" v-has="'DeptUserInfo:edit'">编辑</a>
<a-divider type="vertical"/>
<a-divider type="vertical" v-has="'DeptUserInfo:edit'" />
<a-dropdown>
<a-dropdown v-has="'DeptUserInfo:more'">
<a class="ant-dropdown-link">
更多 <a-icon type="down"/>
</a>
<a-menu slot="overlay">
<a-menu-item>
<a href="javascript:;" @click="handleDeptRole(record)">分配部门角色</a>
<a-menu-item >
<a href="javascript:;" @click="handleDeptRole(record)" v-has="'DeptUserInfo:roles'">分配部门角色</a>
</a-menu-item>
<a-menu-item>
<a href="javascript:;" @click="handleDetail(record)">用户详情</a>
<a-menu-item v-has="'DeptUserInfo:details'">
<a href="javascript:;" @click="handleDetail(record)" >用户详情</a>
</a-menu-item>
<a-menu-item>
<a-popconfirm title="确定取消与选中部门关联吗?" @confirm="() => handleDelete(record.id)">
<a-menu-item v-has="'DeptUserInfo:disassociate'">
<a-popconfirm title="确定取消与选中部门关联吗?" @confirm="() => handleDelete(record.id)" >
<a>取消关联</a>
</a-popconfirm>
</a-menu-item>

5
src/views/system/modules/UserModal.vue

@ -608,15 +608,15 @@
},
moment,
handleSubmit () {
const that = this;
//
this.form.validateFields((err, values) => {
if (!err) {
// console.log("===",this.checkedDepartNameString);
if(!!this.confirmNum){
this.checkedDepartNameString =this.userDepartModel.departIdList;
}else{
if (!!this.checkedDepartNameString){
if (!this.checkedDepartNameString){
this.$message.error("部门分配不能为空")
return;
}
@ -823,6 +823,7 @@
//
modalFormOk (formData) {
console.log("formData",formData);
this.checkedDepartNames = [];
this.selectedDepartKeys = [];
this.checkedDepartNameString = '';

2
src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue

@ -60,7 +60,7 @@
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus" v-has="'unitWaste:add'">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('单位、废旧库房编码')" v-has="'unitWaste:export'">导出</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('单位、废旧库房编码')" v-has="'unitWaste:exprot'">导出</a-button>
<a-button type="primary" icon="download" @click="downloadText('/static/excle/废旧物资存储库房编码模板.xlsx','废旧物资存储库房编码导入模板.xlsx')" v-has="'unitWaste:download'">废旧库房导入模板</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import" v-has="'unitWaste:import'">导入</a-button>

Loading…
Cancel
Save