From 79ebf22cc7d55677dcb6822c2dcdf18883816738 Mon Sep 17 00:00:00 2001
From: caoyizhong <1270296080@qq.com>
Date: Thu, 27 Oct 2022 18:08:46 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=87=E5=87=86=E5=AD=97?=
=?UTF-8?q?=E5=85=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../form/ProcessMaterialsDeliveryForm.vue | 34 +-
.../activiti/form/ProcessUdgetPlanForm.vue | 35 +-
.../dictionaries/ProcessDictionariesList.vue | 160 +++++--
.../ProcessLibraryAssociationList.vue | 234 +++++++++
.../ProcessMerchandiseNewsList.vue | 347 ++++++++++++++
.../dictionaries/ProcessSupplierList.vue | 231 +++++++++
.../modules/ProcessDictionariesForm.vue | 444 ------------------
.../modules/ProcessDictionariesModal.vue | 153 ++++--
.../ProcessLibraryAssociationModal.vue | 171 +++++++
.../modules/ProcessMerchandiseNewsModal.vue | 284 +++++++++++
.../modules/ProcessSupplierModal.vue | 224 +++++++++
.../supplier/modules/ProcessSupplierForm.vue | 4 +-
.../ProcessSuppliesStrongerList.vue | 2 +-
.../ProcessSuppliesStrongerLists.vue | 2 +-
14 files changed, 1792 insertions(+), 533 deletions(-)
create mode 100644 src/views/dictionaries/ProcessLibraryAssociationList.vue
create mode 100644 src/views/dictionaries/ProcessMerchandiseNewsList.vue
create mode 100644 src/views/dictionaries/ProcessSupplierList.vue
delete mode 100644 src/views/dictionaries/modules/ProcessDictionariesForm.vue
create mode 100644 src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue
create mode 100644 src/views/dictionaries/modules/ProcessMerchandiseNewsModal.vue
create mode 100644 src/views/dictionaries/modules/ProcessSupplierModal.vue
diff --git a/src/views/activiti/form/ProcessMaterialsDeliveryForm.vue b/src/views/activiti/form/ProcessMaterialsDeliveryForm.vue
index 2779b1d..fead6c2 100644
--- a/src/views/activiti/form/ProcessMaterialsDeliveryForm.vue
+++ b/src/views/activiti/form/ProcessMaterialsDeliveryForm.vue
@@ -40,7 +40,7 @@
-
+
@@ -216,22 +216,22 @@ import JSelectCompany from '../../../components/jeecgbiz/JSelectCompany'
placeholder: '请输入${title}',
defaultValue:'',
},
- {
- title: '删除标志',
- key: 'delFlag',
- type: FormTypes.inputNumber,
- width:"200px",
- placeholder: '请输入${title}',
- defaultValue:'',
- },
- {
- title: '删除时间',
- key: 'delTime',
- type: FormTypes.date,
- width:"200px",
- placeholder: '请输入${title}',
- defaultValue:'',
- },
+ // {
+ // title: '删除标志',
+ // key: 'delFlag',
+ // type: FormTypes.inputNumber,
+ // width:"200px",
+ // placeholder: '请输入${title}',
+ // defaultValue:'',
+ // },
+ // {
+ // title: '删除时间',
+ // key: 'delTime',
+ // type: FormTypes.date,
+ // width:"200px",
+ // placeholder: '请输入${title}',
+ // defaultValue:'',
+ // },
]
},
url: {
diff --git a/src/views/activiti/form/ProcessUdgetPlanForm.vue b/src/views/activiti/form/ProcessUdgetPlanForm.vue
index b3fe185..d50ed7c 100644
--- a/src/views/activiti/form/ProcessUdgetPlanForm.vue
+++ b/src/views/activiti/form/ProcessUdgetPlanForm.vue
@@ -71,10 +71,25 @@
:dataSource="processUdgetPlanMaterialTable.dataSource"
@valueChange ="onSelect"
:maxHeight="300"
+ :action-button="true"
:rowNumber="true"
:rowSelection="true"
- :actionButton="true"/>
+ :actionButton="true">
+
+
+
+ 23
+ 45
+ 56
+ 12
+
+ 查看
+
+
+
+
+
@@ -278,11 +293,13 @@
},
{
title: '对比单价',
- key: 'contrastPrice',
- type: FormTypes.normal,
- width: '200px',
- placeholder: '请输入${title}',
- defaultValue: ''
+ key: 'action',
+ type: FormTypes.slot,
+ //width: '200px',
+ // placeholder: '请输入${title}',
+ // defaultValue: '',
+ slotName: 'action'
+ // scopedSlots: {customRender: 'fileSlot'}
},
{
title: '数量',
@@ -406,6 +423,12 @@
this.fetchData();
},
methods: {
+
+ chaKan(log){
+ console.log(log);
+ },
+
+
onSelect(record) {
// console.log(record.row);
if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined && record.row.materialNumber === ''){
diff --git a/src/views/dictionaries/ProcessDictionariesList.vue b/src/views/dictionaries/ProcessDictionariesList.vue
index ed06a6b..375264c 100644
--- a/src/views/dictionaries/ProcessDictionariesList.vue
+++ b/src/views/dictionaries/ProcessDictionariesList.vue
@@ -4,6 +4,24 @@
+
+ 新增
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
@@ -11,19 +29,13 @@
-
新增
-
导出
-
- 导入
-
+
+
+
+
+
-
-
-
- 删除
-
- 批量操作
-
+
@@ -44,7 +56,8 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
+ :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type:'radio'}"
+ :customRow="clickThenSelect"
@change="handleTableChange">
@@ -74,9 +87,6 @@
更多
-
- 详情
-
handleDelete(record.id)">
删除
@@ -89,7 +99,19 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -97,6 +119,10 @@
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessDictionariesModal from './modules/ProcessDictionariesModal'
+ import { getAction } from '@/api/manage'
+ import ProcessLibraryAssociationList from './ProcessLibraryAssociationList'
+ import ProcessSupplierList from './ProcessSupplierList'
+ import ProcessMerchandiseNewsList from './ProcessMerchandiseNewsList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
@@ -104,28 +130,22 @@
name: "ProcessDictionariesList",
mixins:[JeecgListMixin],
components: {
+ ProcessLibraryAssociationList,
+ ProcessSupplierList,
+ ProcessMerchandiseNewsList,
ProcessDictionariesModal,
JSuperQuery
},
data () {
return {
description: '标准字典分类表管理页面',
+ tabKey: '1',
// 表头
columns: [
- {
- title: '#',
- dataIndex: '',
- key:'rowIndex',
- width:60,
- align:"center",
- customRender:function (t,r,index) {
- return parseInt(index)+1;
- }
- },
{
title:'所属部门',
align:"center",
- dataIndex: 'sysOrgCode_dictText'
+ dataIndex: 'sysOrgCode_dictText',
},
{
title:'字典标号',
@@ -157,9 +177,23 @@
deleteBatch: "/dictionaries/processDictionaries/deleteBatch",
exportXlsUrl: "/dictionaries/processDictionaries/exportXls",
importExcelUrl: "dictionaries/processDictionaries/importExcel",
-
},
- dictOptions:{},
+ dictOptions:{
+ sysOrgCode:[],
+ },
+ /* 分页参数 */
+ ipagination:{
+ current: 1,
+ pageSize: 5,
+ pageSizeOptions: ['5', '10', '50'],
+ showTotal: (total, range) => {
+ return range[0] + "-" + range[1] + " 共" + total + "条"
+ },
+ showQuickJumper: true,
+ showSizeChanger: true,
+ total: 0
+ },
+ selectedMainId:'',
superFieldList:[],
}
},
@@ -173,13 +207,71 @@
},
methods: {
initDictConfig(){
+ // initDictOptions('sys_depart,depart_name,id').then((res) => {
+ // if (res.success) {
+ // this.$set(this.dictOptions, 'sysOrgCode', res.result)
+ // }
+ // })
+ },
+ clickThenSelect(record) {
+ return {
+ on: {
+ click: () => {
+ this.onSelectChange(record.id.split(","), [record]);
+ }
+ }
+ }
+ },
+ onClearSelected() {
+ this.selectedRowKeys = [];
+ this.selectionRows = [];
+ this.selectedMainId=''
+ },
+ onSelectChange(selectedRowKeys, selectionRows) {
+ // this.tabKey= '3';
+ if(selectionRows[0].typeName === '库房编码'){
+ this.tabKey= '1';
+ }
+ if(selectionRows[0].typeName === '物资信息'){
+ this.tabKey= '3';
+ }
+ if(selectionRows[0].typeName === '供应商编码'){
+ this.tabKey= '2';
+ }
+ // console.log(selectedRowKeys,selectionRows)
+ this.selectedMainId=selectedRowKeys[0]
+ this.selectedRowKeys = selectedRowKeys;
+ this.selectionRows = selectionRows;
+ },
+ loadData(arg) {
+ if(!this.url.list){
+ this.$message.error("请设置url.list属性!")
+ return
+ }
+ //加载数据 若传入参数1则加载第一页的内容
+ if (arg === 1) {
+ this.ipagination.current = 1;
+ }
+ this.onClearSelected()
+ var params = this.getQueryParams();//查询条件
+ this.loading = true;
+ getAction(this.url.list, params).then((res) => {
+ if (res.success) {
+ this.dataSource = res.result.records;
+ this.ipagination.total = res.result.total;
+ }
+ if(res.code===510){
+ this.$message.warning(res.message)
+ }
+ this.loading = false;
+ })
},
getSuperFieldList(){
let fieldList=[];
- fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'所属部门'})
- fieldList.push({type:'string',value:'dictionaryLabel',text:'字典标号',dictCode:''})
- fieldList.push({type:'string',value:'typeName',text:'类型名称',dictCode:''})
- fieldList.push({type:'string',value:'explainType',text:'类型说明',dictCode:''})
+ fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'所属部门'})
+ fieldList.push({type:'string',value:'dictionaryLabel',text:'字典标号',dictCode:''})
+ fieldList.push({type:'string',value:'typeName',text:'类型名称',dictCode:''})
+ fieldList.push({type:'string',value:'explainType',text:'类型说明',dictCode:''})
this.superFieldList = fieldList
}
}
diff --git a/src/views/dictionaries/ProcessLibraryAssociationList.vue b/src/views/dictionaries/ProcessLibraryAssociationList.vue
new file mode 100644
index 0000000..73e7390
--- /dev/null
+++ b/src/views/dictionaries/ProcessLibraryAssociationList.vue
@@ -0,0 +1,234 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
新增
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 删除
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无图片
+
+
+
+ 无文件
+
+ 下载
+
+
+
+
+ 编辑
+
+ handleDelete(record.id)">
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/dictionaries/ProcessMerchandiseNewsList.vue b/src/views/dictionaries/ProcessMerchandiseNewsList.vue
new file mode 100644
index 0000000..d7d5f57
--- /dev/null
+++ b/src/views/dictionaries/ProcessMerchandiseNewsList.vue
@@ -0,0 +1,347 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
新增
+
+
+
+
+
+
+
+
+ 删除
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无图片
+
+
+
+ 无文件
+
+ 下载
+
+
+
+
+ 编辑
+
+
+
+ 更多
+
+
+
+
+
+ handleDelete(record.id)">
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/dictionaries/ProcessSupplierList.vue b/src/views/dictionaries/ProcessSupplierList.vue
new file mode 100644
index 0000000..6a2069e
--- /dev/null
+++ b/src/views/dictionaries/ProcessSupplierList.vue
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
+
+
+
+
+
+
+
+
新增
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 删除
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无图片
+
+
+
+ 无文件
+
+ 下载
+
+
+
+
+ 编辑
+
+ handleDelete(record.id)">
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/dictionaries/modules/ProcessDictionariesForm.vue b/src/views/dictionaries/modules/ProcessDictionariesForm.vue
deleted file mode 100644
index 3cfe23a..0000000
--- a/src/views/dictionaries/modules/ProcessDictionariesForm.vue
+++ /dev/null
@@ -1,444 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/dictionaries/modules/ProcessDictionariesModal.vue b/src/views/dictionaries/modules/ProcessDictionariesModal.vue
index 65bf1a9..b381f17 100644
--- a/src/views/dictionaries/modules/ProcessDictionariesModal.vue
+++ b/src/views/dictionaries/modules/ProcessDictionariesModal.vue
@@ -1,45 +1,113 @@
-
+ @cancel="handleCancel"
+ cancelText="关闭">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 库房编码
+ 物资信息
+ 供应商编码
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue b/src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue
new file mode 100644
index 0000000..02f9201
--- /dev/null
+++ b/src/views/dictionaries/modules/ProcessLibraryAssociationModal.vue
@@ -0,0 +1,171 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 账外物资库房编码
+ 废旧物资库房编码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/dictionaries/modules/ProcessMerchandiseNewsModal.vue b/src/views/dictionaries/modules/ProcessMerchandiseNewsModal.vue
new file mode 100644
index 0000000..db364a2
--- /dev/null
+++ b/src/views/dictionaries/modules/ProcessMerchandiseNewsModal.vue
@@ -0,0 +1,284 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/dictionaries/modules/ProcessSupplierModal.vue b/src/views/dictionaries/modules/ProcessSupplierModal.vue
new file mode 100644
index 0000000..b403953
--- /dev/null
+++ b/src/views/dictionaries/modules/ProcessSupplierModal.vue
@@ -0,0 +1,224 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{item.rank}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/supplier/modules/ProcessSupplierForm.vue b/src/views/supplier/modules/ProcessSupplierForm.vue
index 48784d5..b420b46 100644
--- a/src/views/supplier/modules/ProcessSupplierForm.vue
+++ b/src/views/supplier/modules/ProcessSupplierForm.vue
@@ -146,7 +146,7 @@
this.edit({});
},
edit (record) {
- console.log(record);
+ // console.log(record);
let dis = false;
if(record.state !== undefined ){
dis =true;
@@ -162,6 +162,8 @@
}else{
this.model.state = "停用"
}
+ }else{
+ this.hideDis = true;
}
this.form.setFieldsValue(pick(this.model,'coding','supplierName','rank','state','delFlag'))
})
diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
index b171a17..cd19c1a 100644
--- a/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
+++ b/src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
@@ -132,7 +132,7 @@
bigId:[],
columns: [
{
- title: '#',
+ title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
diff --git a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
index e8afa0e..7cacc54 100644
--- a/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
+++ b/src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
@@ -172,7 +172,7 @@
description: '物资总库管理详情页面',
columns: [
{
- title: '#',
+ title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,