From 9400c9b1eb30dd02e34cef926a838442a19d2c87 Mon Sep 17 00:00:00 2001
From: caoyizhong <1270296080@qq.com>
Date: Wed, 19 Oct 2022 15:49:51 +0800
Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E5=9F=BA=E7=A1=80=E9=A1=B5?=
=?UTF-8?q?=E9=9D=A21?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../description/ProcessDescriptionList.vue | 4 +-
src/views/supplier/ProcessSupplierList.vue | 36 ++-
.../ProcessUnitWasteWarehouseCodeList.vue | 218 +++++++++++++++++
.../ProcessUnitWasteWarehouseCodeForm.vue | 171 ++++++++++++++
.../ProcessUnitWasteWarehouseCodeModal.vue | 60 +++++
...tWasteWarehouseCodeModal__Style#Drawer.vue | 83 +++++++
.../ProcessWasteMaterialsList.vue | 205 +++++++++-------
.../wastematerials/modules/ProcessWaste.vue | 222 ++++++++++++++++++
8 files changed, 901 insertions(+), 98 deletions(-)
create mode 100644 src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue
create mode 100644 src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeForm.vue
create mode 100644 src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal.vue
create mode 100644 src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal__Style#Drawer.vue
create mode 100644 src/views/wastematerials/modules/ProcessWaste.vue
diff --git a/src/views/description/ProcessDescriptionList.vue b/src/views/description/ProcessDescriptionList.vue
index 744d59f..e08a98a 100644
--- a/src/views/description/ProcessDescriptionList.vue
+++ b/src/views/description/ProcessDescriptionList.vue
@@ -141,7 +141,7 @@
// 表头
columns: [
{
- title: '#',
+ title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
@@ -180,7 +180,7 @@
deleteBatch: "/description/processDescription/deleteBatch",
exportXlsUrl: "/description/processDescription/exportXls",
importExcelUrl: "description/processDescription/importExcel",
-
+
},
dictOptions:{},
superFieldList:[],
diff --git a/src/views/supplier/ProcessSupplierList.vue b/src/views/supplier/ProcessSupplierList.vue
index df035a6..9b2785c 100644
--- a/src/views/supplier/ProcessSupplierList.vue
+++ b/src/views/supplier/ProcessSupplierList.vue
@@ -137,7 +137,7 @@
// 表头
columns: [
{
- title: '#',
+ title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
@@ -159,18 +159,38 @@
{
title:'级别',
align:"center",
- dataIndex: 'rank'
+ dataIndex: 'rank',
+ customRender:function (t,r,index) {
+ // console.log(t,r,index);
+ let name = '';
+ if(r.rank === 0){
+ name = "一级物资供应商";
+ }else if(r.rank === 1){
+ name = "非集中采购物资供应商";
+ }
+ return name;
+ }
},
{
title:'状态',
align:"center",
- dataIndex: 'state_dictText'
- },
- {
- title:'删除标志',
- align:"center",
- dataIndex: 'delFlag'
+ dataIndex: 'state',
+ customRender:function (t,r,index) {
+ // console.log(t,r,index);
+ let name = '';
+ if(r.state === 0){
+ name = "正常";
+ }else if(r.state === 1){
+ name = "停用";
+ }
+ return name;
+ }
},
+ // {
+ // title:'删除标志',
+ // align:"center",
+ // dataIndex: 'delFlag'
+ // },
{
title: '操作',
dataIndex: 'action',
diff --git a/src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue b/src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue
new file mode 100644
index 0000000..2210884
--- /dev/null
+++ b/src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue
@@ -0,0 +1,218 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+ {{ toggleSearchStatus ? '收起' : '展开' }}
+
+
+
+
+
+
+
+
+
+
+
+
新增
+
导出
+
+ 导入
+
+
+
+
+
+ 删除
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无图片
+
+
+
+ 无文件
+
+ 下载
+
+
+
+
+ 编辑
+
+
+
+ 更多
+
+
+ 详情
+
+
+ handleDelete(record.id)">
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeForm.vue b/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeForm.vue
new file mode 100644
index 0000000..cc8acde
--- /dev/null
+++ b/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeForm.vue
@@ -0,0 +1,171 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提 交
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal.vue b/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal.vue
new file mode 100644
index 0000000..aa38ad1
--- /dev/null
+++ b/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal__Style#Drawer.vue b/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal__Style#Drawer.vue
new file mode 100644
index 0000000..d2ae682
--- /dev/null
+++ b/src/views/unitwaste/modules/ProcessUnitWasteWarehouseCodeModal__Style#Drawer.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/wastematerials/ProcessWasteMaterialsList.vue b/src/views/wastematerials/ProcessWasteMaterialsList.vue
index 452ad49..d1a1a61 100644
--- a/src/views/wastematerials/ProcessWasteMaterialsList.vue
+++ b/src/views/wastematerials/ProcessWasteMaterialsList.vue
@@ -1,32 +1,33 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
查询
重置
@@ -35,82 +36,84 @@
-
-
-
-
-
-
-
-
-
新增
-
导出
-
- 导入
-
-
-
-
-
- 删除
-
- 批量操作
-
-
+
+
+
+
+
-
-
-
-
已选择
{{ selectedRowKeys.length }}项
-
清空
+
+
+
新增
+
导出
+
+ 导入
+
+
+
+
+
+ 删除
+
+ 批量操作
+
-
+
+
+
+
+
-
-
-
-
- 无图片
-
-
-
- 无文件
-
- 下载
-
-
+
+
+
+
+ 无图片
+
+
+
+ 无文件
+
+ 下载
+
+
-
+
- 查看详情
+ 查看详情
-
-
+
+
+
+
+
+
-
-
+
\ No newline at end of file