diff --git a/src/views/activiti/form/ProcessPermissionAuthorizationForm.vue b/src/views/activiti/form/ProcessPermissionAuthorizationForm.vue
new file mode 100644
index 0000000..f068b04
--- /dev/null
+++ b/src/views/activiti/form/ProcessPermissionAuthorizationForm.vue
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提 交
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/activiti/form/ProcessUdgetPlanForm.vue b/src/views/activiti/form/ProcessUdgetPlanForm.vue
index 2661e7a..b3fe185 100644
--- a/src/views/activiti/form/ProcessUdgetPlanForm.vue
+++ b/src/views/activiti/form/ProcessUdgetPlanForm.vue
@@ -1,9 +1,9 @@
-
+
-
+
@@ -32,10 +32,9 @@
-
-
-
+
+
@@ -45,15 +44,15 @@
-
-
+
+
+
+
+
+
+
-
-
-
-
-
@@ -120,6 +119,8 @@
data() {
return {
bigId:[],
+ bigIdMerchandiseNews:[],
+ bigIdMerchandiseNewsList:[],
labelCol: {
xs: { span: 24 },
sm: { span: 6 }
@@ -172,7 +173,7 @@
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
- defaultValue: ''
+ options: [],
},
// {
// title: '物料描述',
@@ -241,7 +242,8 @@
{
title: '物料名称及规格型号',
key: 'materialName',
- type: FormTypes.sel_search,
+ type: FormTypes.input,
+ // type: FormTypes.sel_search,
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
@@ -250,7 +252,7 @@
{
title: '系列',
key: 'materialSeries',
- type: FormTypes.sel_search,
+ type: FormTypes.input,
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
@@ -259,7 +261,8 @@
{
title: '单位',
key: 'materialUnit',
- type: FormTypes.select,
+ type: FormTypes.input,
+ // type: FormTypes.select,
dictCode: '',
width: '200px',
placeholder: '请输入${title}',
@@ -404,17 +407,55 @@
},
methods: {
onSelect(record) {
- // this.$refs.processUdgetPlanMaterial.getValues((error, values) => {
- //
- // console.log(error, values)
- // })
-
- console.log(record.row);
- console.log(record.row.materialGroup);
- if(record.row.materialGroup.length > 0){
- console.log("执行l")
+ // console.log(record.row);
+ if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined && record.row.materialNumber === ''){
+ // console.log("执行materialGroup")
this.fetchMerchandiseNews(record.row.materialGroup);
}
+ if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined && record.row.materialNumber !== ''){
+ // console.log("执行materialNumber")
+ let materialName = { }
+ this.bigIdMerchandiseNewsList.forEach( item => {
+ if( item.id === record.row.materialNumber ){
+ materialName ={
+ name: item.merchandiseName,
+ unit: item.materialsUnit,
+ }
+
+ }
+ })
+ let values = [
+ {
+ rowKey: record.row.id,
+ values: {
+ 'materialNumber': record.row.materialNumber,
+ 'materialGroup': record.row.materialGroup,
+ 'materialSeries':"SM-JD36-BA",
+ 'materialName': materialName.name,
+ 'materialUnit': materialName.unit,
+ },
+ },
+ ]
+ this.$refs.processUdgetPlanMaterial.setValues(values);
+ }
+
+ if(record.row.materialQuantity !== '' && record.row.materialPrice !== '' && record.row.materialQuantity !== undefined && record.row.materialPrice !== undefined){
+ // record.row.materialAmount = record.row.materialQuantity * record.row.materialPrice;
+ let values = [
+ {
+ rowKey: record.row.id,
+ values: {
+ 'materialNumber': record.row.materialNumber,
+ 'materialGroup': record.row.materialGroup,
+ 'materialSeries': record.row.materialSeries,
+ 'materialName': record.row.materialName,
+ 'materialUnit': record.row.materialUnit,
+ 'materialAmount': record.row.materialQuantity * record.row.materialPrice
+ },
+ },
+ ]
+ this.$refs.processUdgetPlanMaterial.setValues(values);
+ }
},
fetchMerchandiseNews(value){ //查询物料组
@@ -423,16 +464,54 @@
delFlag: 0,
descriptionId:value,
}
- this.bigId = [];
+ this.bigIdMerchandiseNews = [];
+ this.bigIdMerchandiseNewsList = [];
+ let qc = [];
+ let numberList = [];
+ if(this.processUdgetPlanMaterialTable.columns[1].options.length > 0){
+ this.processUdgetPlanMaterialTable.columns[1].options = [];
+ }
+ this.$refs.processUdgetPlanMaterial.getValues((a,b,c)=>{
+ // console.log(a,b,c)
+ b.forEach(item =>{
+ if(item.materialNumber !== '' && item.materialNumber !== undefined && item.materialNumber !== null){
+ numberList.push(item.materialNumber);
+ }
+ });
+ });
getAction(this.url.merchandiseNewsList,par).then((res)=>{
if(res.success){
- console.log(res.result);
- // res.result.forEach( item => {
- // this.processUdgetPlanMaterialTable.columns[0].options.push({
- // title : item.descriptionName,
- // value : item.id,
- // })
- // })
+ // console.log(res.result);
+ let newList = res.result;
+ // console.log("12312312:"+numberList.length);
+ if(numberList.length > 0){
+ newList.forEach( item => {
+ qc.push({
+ title : item.materialsNumber,
+ value : item.id,
+ disabled : false
+ })
+ })
+ numberList.forEach( num => {
+ qc.forEach( i => {
+ if(num === i.value){
+ console.log(num,i.value);
+ i.disabled = true;
+ }
+ });
+ })
+ this.processUdgetPlanMaterialTable.columns[1].options = qc;
+ }else{
+ newList.forEach( item => {
+ this.processUdgetPlanMaterialTable.columns[1].options.push({
+ title : item.materialsNumber,
+ value : item.id,
+ disabled : false
+ })
+ })
+ }
+ // console.log(this.processUdgetPlanMaterialTable.columns[1].options);
+ this.bigIdMerchandiseNewsList = res.result;
}
});
},
@@ -445,7 +524,10 @@
this.bigId = [];
getAction(this.url.descriptionRake,par).then((res)=>{
if(res.success){
- console.log(res.result);
+ // console.log(res.result);
+ if(this.processUdgetPlanMaterialTable.columns[0].options.length > 0){
+ this.processUdgetPlanMaterialTable.columns[0].options = [];
+ }
res.result.forEach( item => {
this.processUdgetPlanMaterialTable.columns[0].options.push({
title : item.descriptionName,
diff --git a/src/views/processmaterials/ProcessPermissionAuthorizationList.vue b/src/views/processmaterials/ProcessPermissionAuthorizationList.vue
new file mode 100644
index 0000000..21d8612
--- /dev/null
+++ b/src/views/processmaterials/ProcessPermissionAuthorizationList.vue
@@ -0,0 +1,180 @@
+
+
+
+
+
+
+
+
+
新增
+
导出
+
+ 导入
+
+
+
+
+
+ 删除
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无图片
+
+
+
+ 无文件
+
+ 下载
+
+
+
+
+ 编辑
+
+
+
+ 更多
+
+
+ 详情
+
+
+ handleDelete(record.id)">
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/processmaterials/modules/ProcessPermissionAuthorizationForm.vue b/src/views/processmaterials/modules/ProcessPermissionAuthorizationForm.vue
new file mode 100644
index 0000000..f068b04
--- /dev/null
+++ b/src/views/processmaterials/modules/ProcessPermissionAuthorizationForm.vue
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提 交
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal.vue b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal.vue
new file mode 100644
index 0000000..6904d32
--- /dev/null
+++ b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal__Style#Drawer.vue b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal__Style#Drawer.vue
new file mode 100644
index 0000000..4043b1e
--- /dev/null
+++ b/src/views/processmaterials/modules/ProcessPermissionAuthorizationModal__Style#Drawer.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
index 41e914b..b171a17 100644
--- a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
+++ b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
@@ -2,122 +2,31 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{item.itemGroup}}
-
+
-
+
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -133,8 +42,6 @@
查询
重置
-
-
删除
@@ -186,9 +93,7 @@
-
- 详情
-
+ 详情
@@ -197,7 +102,6 @@
-
@@ -223,7 +127,6 @@
},
data () {
return {
- // item:false,
description: '物资总库管理页面',
// 表头
bigId:[],
@@ -238,21 +141,6 @@
return parseInt(index)+1;
}
},
- // {
- // title:'流程表单号',
- // align:"center",
- // dataIndex: 'processId'
- // },
- {
- title:'供应商',
- align:"center",
- dataIndex: 'supplierId'
- },
- // {
- // title:'供应商描述',
- // align:"center",
- // dataIndex: 'supplierDescription_dictText'
- // },
{
title:'物料组',
align:"center",
@@ -278,69 +166,10 @@
align:"center",
dataIndex: 'amount'
},
- // {
- // title:'价格',
- // align:"center",
- // dataIndex: 'price'
- // },
- // {
- // title:'金额',
- // align:"center",
- // dataIndex: 'rates'
- // },
- // {
- // title:'仓储地点_id',
- // align:"center",
- // dataIndex: 'unitWasteWarehouseCodeId_dictText'
- // },
- // {
- // title:'存储仓位',
- // align:"center",
- // dataIndex: 'freightSpace_dictText'
- // },
- // {
- // title:'生产时间',
- // align:"center",
- // dataIndex: 'productionTime',
- // customRender:function (text) {
- // return !text?"":(text.length>10?text.substr(0,10):text)
- // }
- // },
- // {
- // title:'保质期',
- // align:"center",
- // dataIndex: 'expirationDate',
- // customRender:function (text) {
- // return !text?"":(text.length>10?text.substr(0,10):text)
- // }
- // },
- // {
- // title:'批次',
- // align:"center",
- // dataIndex: 'batch_dictText'
- // },
- // {
- // title:'是否到货',
- // align:"center",
- // dataIndex: 'arrivalNotice'
- // },
- // {
- // title:'入库时间',
- // align:"center",
- // dataIndex: 'inboundTime',
- // customRender:function (text) {
- // return !text?"":(text.length>10?text.substr(0,10):text)
- // }
- // },
- // {
- // title:'入库人',
- // align:"center",
- // dataIndex: 'librarySign_dictText'
- // },
{
title:'核算属性',
align:"center",
- dataIndex: 'accountingAttributes'
+ dataIndex: 'accountingAttributes_dictText'
},
{
title: '详情',
@@ -372,36 +201,31 @@
},
},
methods: {
- handleDetaills(){
- // this.item = true;
- this.$router.push({path:'/src/views/suppliesstronger/ProcessSuppliesStrongerLists'})
- },
- strongerExit(){
- this.item = false;
+ handleDetaills(record){
+ this.$router.push({name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',params:{item: record.item}})
},
-
initDictConfig(){
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'string',value:'processId',text:'流程表单号',dictCode:''})
- fieldList.push({type:'string',value:'supplierId',text:'供应商',dictCode:''})
- fieldList.push({type:'sel_search',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'supplier',text:'供应商',dictCode:''})
+ fieldList.push({type:'string',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'string',value:'unitMeasurement',text:'计量单位',dictCode:''})
fieldList.push({type:'int',value:'amount',text:'数量',dictCode:''})
fieldList.push({type:'BigDecimal',value:'price',text:'单价',dictCode:''})
fieldList.push({type:'BigDecimal',value:'rates',text:'金额',dictCode:''})
- fieldList.push({type:'sel_search',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'date',value:'productionTime',text:'生产时间'})
fieldList.push({type:'string',value:'expirationDate',text:'保质期'})
- fieldList.push({type:'sel_search',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'string',value:'arrivalNotice',text:'是否到货',dictCode:''})
fieldList.push({type:'date',value:'inboundTime',text:'入库时间'})
- fieldList.push({type:'sel_search',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'string',value:'accountingAttributes',text:'核算属性',dictCode:''})
this.superFieldList = fieldList
diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
index bb81ab6..e8afa0e 100644
--- a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
+++ b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
@@ -1,95 +1,54 @@
-
-
- 总库物资管理详情页
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
-
-
-
@@ -97,24 +56,9 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -122,7 +66,6 @@
-
新增
导出
导入
@@ -183,18 +126,6 @@
-
-
-
-
-
-
- 查看详情
-
-
-
-
-
@@ -211,6 +142,7 @@
import JDate from '@/components/jeecg/JDate.vue'
import JSearchSelectTag from '@/components/dict/JSearchSelectTag'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
+ import { getAction } from '@api/manage'
export default {
@@ -224,8 +156,20 @@
},
data () {
return {
+ queryParam: {
+ supplier: null,
+ itemGroup: null,
+ item: this.$route.params.item,
+ itemDescription: null,
+ unitWasteWarehouseCodeId: null,
+ freightSpace: null,
+ productionTime: null,
+ batch: null,
+ expirationDate: null,
+ inboundTime: null,
+ librarySign: null,
+ },
description: '物资总库管理详情页面',
- // 表头
columns: [
{
title: '#',
@@ -245,7 +189,7 @@
{
title:'供应商',
align:"center",
- dataIndex: 'supplierId'
+ dataIndex: 'supplier'
},
{
title:'供应商描述',
@@ -308,10 +252,7 @@
{
title:'保质期',
align:"center",
- dataIndex: 'expirationDate',
- customRender:function (text) {
- return !text?"":(text.length>10?text.substr(0,10):text)
- }
+ dataIndex: 'expirationDate'
},
{
title:'批次',
@@ -339,19 +280,11 @@
{
title:'核算属性',
align:"center",
- dataIndex: 'accountingAttributes'
- },
- // {
- // title: '详情',
- // dataIndex: 'action',
- // align:"center",
- // fixed:"right",
- // width:147,
- // scopedSlots: { customRender: 'action' }
- // }
+ dataIndex: 'accountingAttributes_dictText'
+ }
],
url: {
- list: "/suppliesstronger/processSuppliesStronger/list",
+ list: "/suppliesstronger/processSuppliesStronger/lists",
delete: "/suppliesstronger/processSuppliesStronger/delete",
deleteBatch: "/suppliesstronger/processSuppliesStronger/deleteBatch",
exportXlsUrl: "/suppliesstronger/processSuppliesStronger/exportXls",
@@ -363,7 +296,15 @@
}
},
created() {
- this.getSuperFieldList();
+ // 判断路由上是否存在参数,如果没有则跳转回帐外物资管理页面
+ this.judgeRouterParam();
+ this.getSuperFieldList();
+ },
+ watch: {
+ $route() {
+ this.queryParam.item = this.$route.params.item
+ this.loadData()
+ }
},
computed: {
importExcelUrl: function(){
@@ -371,34 +312,61 @@
},
},
methods: {
- handleDetaills(){
- this.item = true;
+ searchReset(){
+ this.queryParam = {
+ supplier: null,
+ itemGroup: null,
+ item: this.$route.params.item,
+ itemDescription: null,
+ unitWasteWarehouseCodeId: null,
+ freightSpace: null,
+ productionTime: null,
+ batch: null,
+ expirationDate: null,
+ inboundTime: null,
+ librarySign: null,
+ del_flag: 0
+ },
+ getAction(this.url.list,this.queryParam).then((res)=>{
+ if(res.success){
+ this.dataSource=res.result.records;
+ }
+ });
},
- handlereturn(){
- this.$emit("strongerExit",false);
+ judgeRouterParam(){
+ if (this.$route.params.item == null){
+ this.$router.go(-1);
+ }
},
initDictConfig(){
},
+ loadData(){
+ getAction(this.url.list,this.queryParam).then((res)=>{
+ if(res.success){
+ this.dataSource=res.result.records;
+ }
+ });
+ },
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'string',value:'processId',text:'流程表单号',dictCode:''})
- fieldList.push({type:'string',value:'supplierId',text:'供应商',dictCode:''})
- fieldList.push({type:'sel_search',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'supplier',text:'供应商',dictCode:''})
+ fieldList.push({type:'string',value:'supplierDescription',text:'供应商描述',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'itemGroup',text:'物料组',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'item',text:'物料',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'itemDescription',text:'物料描述',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'string',value:'unitMeasurement',text:'计量单位',dictCode:''})
fieldList.push({type:'int',value:'amount',text:'数量',dictCode:''})
fieldList.push({type:'BigDecimal',value:'price',text:'单价',dictCode:''})
fieldList.push({type:'BigDecimal',value:'rates',text:'金额',dictCode:''})
- fieldList.push({type:'sel_search',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''})
- fieldList.push({type:'sel_search',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'unitWasteWarehouseCodeId',text:'仓储地点',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'freightSpace',text:'存储仓位',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'date',value:'productionTime',text:'生产时间'})
- fieldList.push({type:'date',value:'expirationDate',text:'保质期'})
- fieldList.push({type:'sel_search',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'String',value:'expirationDate',text:'保质期'})
+ fieldList.push({type:'string',value:'batch',text:'批次',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'int',value:'arrivalNotice',text:'是否到货',dictCode:''})
fieldList.push({type:'date',value:'inboundTime',text:'入库时间'})
- fieldList.push({type:'sel_search',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''})
+ fieldList.push({type:'string',value:'librarySign',text:'入库人',dictTable:'', dictText:'', dictCode:''})
fieldList.push({type:'string',value:'accountingAttributes',text:'核算属性',dictCode:''})
this.superFieldList = fieldList
}
diff --git a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue
index c7cb6c8..0eed1d1 100644
--- a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue
+++ b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue
@@ -10,7 +10,7 @@
-
+
@@ -251,7 +251,7 @@
that.confirmLoading = false;
})
}
-
+
})
},
popupCallback(row){
diff --git a/src/views/wastematerials/ProcessWasteMaterialsLists.vue b/src/views/wastematerials/ProcessWasteMaterialsLists.vue
index 6862029..c2b1057 100644
--- a/src/views/wastematerials/ProcessWasteMaterialsLists.vue
+++ b/src/views/wastematerials/ProcessWasteMaterialsLists.vue
@@ -20,11 +20,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -267,6 +267,12 @@
this.judgeRouterParam();
this.getSuperFieldList();
},
+ watch: {
+ $route() {
+ this.queryParam.material = this.$route.params.material
+ this.loadData()
+ }
+ },
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;