From ab8c5ce083f578060f64474dd991741269401f66 Mon Sep 17 00:00:00 2001
From: paidaxing444 <12qwaszx>
Date: Thu, 4 Jun 2020 18:02:41 +0800
Subject: [PATCH] =?UTF-8?q?20200604-zlp-1=20=E4=B8=80=E6=97=A5=E6=B5=81?=
=?UTF-8?q?=E7=A8=8B=E7=AE=A1=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
ruoyi-ui/src/api/benyi/dayflow/unscramble.js | 53 +++
.../src/views/benyi/dayflow/unscramble.vue | 306 ++++++++++++++++++
2 files changed, 359 insertions(+)
create mode 100644 ruoyi-ui/src/api/benyi/dayflow/unscramble.js
create mode 100644 ruoyi-ui/src/views/benyi/dayflow/unscramble.vue
diff --git a/ruoyi-ui/src/api/benyi/dayflow/unscramble.js b/ruoyi-ui/src/api/benyi/dayflow/unscramble.js
new file mode 100644
index 000000000..6309dcc48
--- /dev/null
+++ b/ruoyi-ui/src/api/benyi/dayflow/unscramble.js
@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询一日流程解读列表
+export function listUnscramble(query) {
+ return request({
+ url: '/benyi/unscramble/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询一日流程解读详细
+export function getUnscramble(id) {
+ return request({
+ url: '/benyi/unscramble/' + id,
+ method: 'get'
+ })
+}
+
+// 新增一日流程解读
+export function addUnscramble(data) {
+ return request({
+ url: '/benyi/unscramble',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改一日流程解读
+export function updateUnscramble(data) {
+ return request({
+ url: '/benyi/unscramble',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除一日流程解读
+export function delUnscramble(id) {
+ return request({
+ url: '/benyi/unscramble/' + id,
+ method: 'delete'
+ })
+}
+
+// 导出一日流程解读
+export function exportUnscramble(query) {
+ return request({
+ url: '/benyi/unscramble/export',
+ method: 'get',
+ params: query
+ })
+}
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/benyi/dayflow/unscramble.vue b/ruoyi-ui/src/views/benyi/dayflow/unscramble.vue
new file mode 100644
index 000000000..89aa7fb47
--- /dev/null
+++ b/ruoyi-ui/src/views/benyi/dayflow/unscramble.vue
@@ -0,0 +1,306 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file