作者 钟来

初始提交

正在显示 100 个修改的文件 包含 4359 行增加0 行删除

要显示太多修改。

为保证性能只显示 100 of 100+ 个文件。

  1 +# 告诉EditorConfig插件,这是根文件,不用继续往上查找
  2 +root = true
  3 +
  4 +# 匹配全部文件
  5 +[*]
  6 +# 设置字符集
  7 +charset = utf-8
  8 +# 缩进风格,可选space、tab
  9 +indent_style = space
  10 +# 缩进的空格数
  11 +indent_size = 2
  12 +# 结尾换行符,可选lf、cr、crlf
  13 +end_of_line = lf
  14 +# 在文件结尾插入新行
  15 +insert_final_newline = true
  16 +# 删除一行中的前后空格
  17 +trim_trailing_whitespace = true
  18 +
  19 +# 匹配md结尾的文件
  20 +[*.md]
  21 +insert_final_newline = false
  22 +trim_trailing_whitespace = false
  1 +# 页面标题
  2 +VUE_APP_TITLE = 若依管理系统
  3 +
  4 +# 开发环境配置
  5 +ENV = 'development'
  6 +
  7 +# 若依管理系统/开发环境
  8 +VUE_APP_BASE_API = '/dev-api'
  9 +
  10 +# 路由懒加载
  11 +VUE_CLI_BABEL_TRANSPILE_MODULES = true
  1 +# 页面标题
  2 +VUE_APP_TITLE = 若依管理系统
  3 +
  4 +# 生产环境配置
  5 +ENV = 'production'
  6 +
  7 +# 若依管理系统/生产环境
  8 +VUE_APP_BASE_API = '/prod-api'
  1 +# 页面标题
  2 +VUE_APP_TITLE = 若依管理系统
  3 +
  4 +NODE_ENV = production
  5 +
  6 +# 测试环境配置
  7 +ENV = 'staging'
  8 +
  9 +# 若依管理系统/测试环境
  10 +VUE_APP_BASE_API = '/stage-api'
  1 +# 忽略build目录下类型为js的文件的语法检查
  2 +build/*.js
  3 +# 忽略src/assets目录下文件的语法检查
  4 +src/assets
  5 +# 忽略public目录下文件的语法检查
  6 +public
  7 +# 忽略当前目录下为js的文件的语法检查
  8 +*.js
  9 +# 忽略当前目录下为vue的文件的语法检查
  10 +*.vue
  1 +// ESlint 检查配置
  2 +module.exports = {
  3 + root: true,
  4 + parserOptions: {
  5 + parser: 'babel-eslint',
  6 + sourceType: 'module'
  7 + },
  8 + env: {
  9 + browser: true,
  10 + node: true,
  11 + es6: true,
  12 + },
  13 + extends: ['plugin:vue/recommended', 'eslint:recommended'],
  14 +
  15 + // add your custom rules here
  16 + //it is base on https://github.com/vuejs/eslint-config-vue
  17 + rules: {
  18 + "vue/max-attributes-per-line": [2, {
  19 + "singleline": 10,
  20 + "multiline": {
  21 + "max": 1,
  22 + "allowFirstLine": false
  23 + }
  24 + }],
  25 + "vue/singleline-html-element-content-newline": "off",
  26 + "vue/multiline-html-element-content-newline":"off",
  27 + "vue/name-property-casing": ["error", "PascalCase"],
  28 + "vue/no-v-html": "off",
  29 + 'accessor-pairs': 2,
  30 + 'arrow-spacing': [2, {
  31 + 'before': true,
  32 + 'after': true
  33 + }],
  34 + 'block-spacing': [2, 'always'],
  35 + 'brace-style': [2, '1tbs', {
  36 + 'allowSingleLine': true
  37 + }],
  38 + 'camelcase': [0, {
  39 + 'properties': 'always'
  40 + }],
  41 + 'comma-dangle': [2, 'never'],
  42 + 'comma-spacing': [2, {
  43 + 'before': false,
  44 + 'after': true
  45 + }],
  46 + 'comma-style': [2, 'last'],
  47 + 'constructor-super': 2,
  48 + 'curly': [2, 'multi-line'],
  49 + 'dot-location': [2, 'property'],
  50 + 'eol-last': 2,
  51 + 'eqeqeq': ["error", "always", {"null": "ignore"}],
  52 + 'generator-star-spacing': [2, {
  53 + 'before': true,
  54 + 'after': true
  55 + }],
  56 + 'handle-callback-err': [2, '^(err|error)$'],
  57 + 'indent': [2, 2, {
  58 + 'SwitchCase': 1
  59 + }],
  60 + 'jsx-quotes': [2, 'prefer-single'],
  61 + 'key-spacing': [2, {
  62 + 'beforeColon': false,
  63 + 'afterColon': true
  64 + }],
  65 + 'keyword-spacing': [2, {
  66 + 'before': true,
  67 + 'after': true
  68 + }],
  69 + 'new-cap': [2, {
  70 + 'newIsCap': true,
  71 + 'capIsNew': false
  72 + }],
  73 + 'new-parens': 2,
  74 + 'no-array-constructor': 2,
  75 + 'no-caller': 2,
  76 + 'no-console': 'off',
  77 + 'no-class-assign': 2,
  78 + 'no-cond-assign': 2,
  79 + 'no-const-assign': 2,
  80 + 'no-control-regex': 0,
  81 + 'no-delete-var': 2,
  82 + 'no-dupe-args': 2,
  83 + 'no-dupe-class-members': 2,
  84 + 'no-dupe-keys': 2,
  85 + 'no-duplicate-case': 2,
  86 + 'no-empty-character-class': 2,
  87 + 'no-empty-pattern': 2,
  88 + 'no-eval': 2,
  89 + 'no-ex-assign': 2,
  90 + 'no-extend-native': 2,
  91 + 'no-extra-bind': 2,
  92 + 'no-extra-boolean-cast': 2,
  93 + 'no-extra-parens': [2, 'functions'],
  94 + 'no-fallthrough': 2,
  95 + 'no-floating-decimal': 2,
  96 + 'no-func-assign': 2,
  97 + 'no-implied-eval': 2,
  98 + 'no-inner-declarations': [2, 'functions'],
  99 + 'no-invalid-regexp': 2,
  100 + 'no-irregular-whitespace': 2,
  101 + 'no-iterator': 2,
  102 + 'no-label-var': 2,
  103 + 'no-labels': [2, {
  104 + 'allowLoop': false,
  105 + 'allowSwitch': false
  106 + }],
  107 + 'no-lone-blocks': 2,
  108 + 'no-mixed-spaces-and-tabs': 2,
  109 + 'no-multi-spaces': 2,
  110 + 'no-multi-str': 2,
  111 + 'no-multiple-empty-lines': [2, {
  112 + 'max': 1
  113 + }],
  114 + 'no-native-reassign': 2,
  115 + 'no-negated-in-lhs': 2,
  116 + 'no-new-object': 2,
  117 + 'no-new-require': 2,
  118 + 'no-new-symbol': 2,
  119 + 'no-new-wrappers': 2,
  120 + 'no-obj-calls': 2,
  121 + 'no-octal': 2,
  122 + 'no-octal-escape': 2,
  123 + 'no-path-concat': 2,
  124 + 'no-proto': 2,
  125 + 'no-redeclare': 2,
  126 + 'no-regex-spaces': 2,
  127 + 'no-return-assign': [2, 'except-parens'],
  128 + 'no-self-assign': 2,
  129 + 'no-self-compare': 2,
  130 + 'no-sequences': 2,
  131 + 'no-shadow-restricted-names': 2,
  132 + 'no-spaced-func': 2,
  133 + 'no-sparse-arrays': 2,
  134 + 'no-this-before-super': 2,
  135 + 'no-throw-literal': 2,
  136 + 'no-trailing-spaces': 2,
  137 + 'no-undef': 2,
  138 + 'no-undef-init': 2,
  139 + 'no-unexpected-multiline': 2,
  140 + 'no-unmodified-loop-condition': 2,
  141 + 'no-unneeded-ternary': [2, {
  142 + 'defaultAssignment': false
  143 + }],
  144 + 'no-unreachable': 2,
  145 + 'no-unsafe-finally': 2,
  146 + 'no-unused-vars': [2, {
  147 + 'vars': 'all',
  148 + 'args': 'none'
  149 + }],
  150 + 'no-useless-call': 2,
  151 + 'no-useless-computed-key': 2,
  152 + 'no-useless-constructor': 2,
  153 + 'no-useless-escape': 0,
  154 + 'no-whitespace-before-property': 2,
  155 + 'no-with': 2,
  156 + 'one-var': [2, {
  157 + 'initialized': 'never'
  158 + }],
  159 + 'operator-linebreak': [2, 'after', {
  160 + 'overrides': {
  161 + '?': 'before',
  162 + ':': 'before'
  163 + }
  164 + }],
  165 + 'padded-blocks': [2, 'never'],
  166 + 'quotes': [2, 'single', {
  167 + 'avoidEscape': true,
  168 + 'allowTemplateLiterals': true
  169 + }],
  170 + 'semi': [2, 'never'],
  171 + 'semi-spacing': [2, {
  172 + 'before': false,
  173 + 'after': true
  174 + }],
  175 + 'space-before-blocks': [2, 'always'],
  176 + 'space-before-function-paren': [2, 'never'],
  177 + 'space-in-parens': [2, 'never'],
  178 + 'space-infix-ops': 2,
  179 + 'space-unary-ops': [2, {
  180 + 'words': true,
  181 + 'nonwords': false
  182 + }],
  183 + 'spaced-comment': [2, 'always', {
  184 + 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
  185 + }],
  186 + 'template-curly-spacing': [2, 'never'],
  187 + 'use-isnan': 2,
  188 + 'valid-typeof': 2,
  189 + 'wrap-iife': [2, 'any'],
  190 + 'yield-star-spacing': [2, 'both'],
  191 + 'yoda': [2, 'never'],
  192 + 'prefer-const': 2,
  193 + 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
  194 + 'object-curly-spacing': [2, 'always', {
  195 + objectsInObjects: false
  196 + }],
  197 + 'array-bracket-spacing': [2, 'never']
  198 + }
  199 +}
  1 +.DS_Store
  2 +node_modules/
  3 +dist/
  4 +npm-debug.log*
  5 +yarn-debug.log*
  6 +yarn-error.log*
  7 +**/*.log
  8 +
  9 +tests/**/coverage/
  10 +tests/e2e/reports
  11 +selenium-debug.log
  12 +
  13 +# Editor directories and files
  14 +.idea
  15 +.vscode
  16 +*.suo
  17 +*.ntvs*
  18 +*.njsproj
  19 +*.sln
  20 +*.local
  21 +
  22 +package-lock.json
  23 +yarn.lock
  1 +<p align="center">
  2 + <img alt="logo" src="https://oscimg.oschina.net/oscnet/up-d3d0a9303e11d522a06cd263f3079027715.png">
  3 +</p>
  4 +<h1 align="center" style="margin: 30px 0 30px; font-weight: bold;">RuoYi v3.8.7</h1>
  5 +<h4 align="center">基于SpringBoot+Vue前后端分离的Java快速开发框架</h4>
  6 +<p align="center">
  7 + <a href="https://gitee.com/y_project/RuoYi-Vue/stargazers"><img src="https://gitee.com/y_project/RuoYi-Vue/badge/star.svg?theme=dark"></a>
  8 + <a href="https://gitee.com/y_project/RuoYi-Vue"><img src="https://img.shields.io/badge/RuoYi-v3.8.7-brightgreen.svg"></a>
  9 + <a href="https://gitee.com/y_project/RuoYi-Vue/blob/master/LICENSE"><img src="https://img.shields.io/github/license/mashape/apistatus.svg"></a>
  10 +</p>
  11 +
  12 +## 平台简介
  13 +
  14 +若依是一套全部开源的快速开发平台,毫无保留给个人及企业免费使用。
  15 +
  16 +* 前端采用Vue、Element UI。
  17 +* 后端采用Spring Boot、Spring Security、Redis & Jwt。
  18 +* 权限认证使用Jwt,支持多终端认证系统。
  19 +* 支持加载动态权限菜单,多方式轻松权限控制。
  20 +* 高效率开发,使用代码生成器可以一键生成前后端代码。
  21 +* 提供了技术栈([Vue3](https://v3.cn.vuejs.org) [Element Plus](https://element-plus.org/zh-CN) [Vite](https://cn.vitejs.dev))版本[RuoYi-Vue3](https://github.com/yangzongzhuan/RuoYi-Vue3),保持同步更新。
  22 +* 提供了单应用版本[RuoYi-Vue-fast](https://github.com/yangzongzhuan/RuoYi-Vue-fast),Oracle版本[RuoYi-Vue-Oracle](https://github.com/yangzongzhuan/RuoYi-Vue-Oracle),保持同步更新。
  23 +* 不分离版本,请移步[RuoYi](https://gitee.com/y_project/RuoYi),微服务版本,请移步[RuoYi-Cloud](https://gitee.com/y_project/RuoYi-Cloud)
  24 +* 阿里云折扣场:[点我进入](http://aly.ruoyi.vip),腾讯云秒杀场:[点我进入](http://txy.ruoyi.vip)&nbsp;&nbsp;
  25 +* 阿里云优惠券:[点我领取](https://www.aliyun.com/minisite/goods?userCode=brki8iof&share_source=copy_link),腾讯云优惠券:[点我领取](https://cloud.tencent.com/redirect.php?redirect=1025&cps_key=198c8df2ed259157187173bc7f4f32fd&from=console)&nbsp;&nbsp;
  26 +
  27 +## 内置功能
  28 +
  29 +1. 用户管理:用户是系统操作者,该功能主要完成系统用户配置。
  30 +2. 部门管理:配置系统组织机构(公司、部门、小组),树结构展现支持数据权限。
  31 +3. 岗位管理:配置系统用户所属担任职务。
  32 +4. 菜单管理:配置系统菜单,操作权限,按钮权限标识等。
  33 +5. 角色管理:角色菜单权限分配、设置角色按机构进行数据范围权限划分。
  34 +6. 字典管理:对系统中经常使用的一些较为固定的数据进行维护。
  35 +7. 参数管理:对系统动态配置常用参数。
  36 +8. 通知公告:系统通知公告信息发布维护。
  37 +9. 操作日志:系统正常操作日志记录和查询;系统异常信息日志记录和查询。
  38 +10. 登录日志:系统登录日志记录查询包含登录异常。
  39 +11. 在线用户:当前系统中活跃用户状态监控。
  40 +12. 定时任务:在线(添加、修改、删除)任务调度包含执行结果日志。
  41 +13. 代码生成:前后端代码的生成(java、html、xml、sql)支持CRUD下载 。
  42 +14. 系统接口:根据业务代码自动生成相关的api接口文档。
  43 +15. 服务监控:监视当前系统CPU、内存、磁盘、堆栈等相关信息。
  44 +16. 缓存监控:对系统的缓存信息查询,命令统计等。
  45 +17. 在线构建器:拖动表单元素生成相应的HTML代码。
  46 +18. 连接池监视:监视当前系统数据库连接池状态,可进行分析SQL找出系统性能瓶颈。
  47 +
  48 +## 在线体验
  49 +
  50 +- admin/admin123
  51 +- 陆陆续续收到一些打赏,为了更好的体验已用于演示服务器升级。谢谢各位小伙伴。
  52 +
  53 +演示地址:http://vue.ruoyi.vip
  54 +文档地址:http://doc.ruoyi.vip
  55 +
  56 +## 演示图
  57 +
  58 +<table>
  59 + <tr>
  60 + <td><img src="https://oscimg.oschina.net/oscnet/cd1f90be5f2684f4560c9519c0f2a232ee8.jpg"/></td>
  61 + <td><img src="https://oscimg.oschina.net/oscnet/1cbcf0e6f257c7d3a063c0e3f2ff989e4b3.jpg"/></td>
  62 + </tr>
  63 + <tr>
  64 + <td><img src="https://oscimg.oschina.net/oscnet/up-8074972883b5ba0622e13246738ebba237a.png"/></td>
  65 + <td><img src="https://oscimg.oschina.net/oscnet/up-9f88719cdfca9af2e58b352a20e23d43b12.png"/></td>
  66 + </tr>
  67 + <tr>
  68 + <td><img src="https://oscimg.oschina.net/oscnet/up-39bf2584ec3a529b0d5a3b70d15c9b37646.png"/></td>
  69 + <td><img src="https://oscimg.oschina.net/oscnet/up-936ec82d1f4872e1bc980927654b6007307.png"/></td>
  70 + </tr>
  71 + <tr>
  72 + <td><img src="https://oscimg.oschina.net/oscnet/up-b2d62ceb95d2dd9b3fbe157bb70d26001e9.png"/></td>
  73 + <td><img src="https://oscimg.oschina.net/oscnet/up-d67451d308b7a79ad6819723396f7c3d77a.png"/></td>
  74 + </tr>
  75 + <tr>
  76 + <td><img src="https://oscimg.oschina.net/oscnet/5e8c387724954459291aafd5eb52b456f53.jpg"/></td>
  77 + <td><img src="https://oscimg.oschina.net/oscnet/644e78da53c2e92a95dfda4f76e6d117c4b.jpg"/></td>
  78 + </tr>
  79 + <tr>
  80 + <td><img src="https://oscimg.oschina.net/oscnet/up-8370a0d02977eebf6dbf854c8450293c937.png"/></td>
  81 + <td><img src="https://oscimg.oschina.net/oscnet/up-49003ed83f60f633e7153609a53a2b644f7.png"/></td>
  82 + </tr>
  83 + <tr>
  84 + <td><img src="https://oscimg.oschina.net/oscnet/up-d4fe726319ece268d4746602c39cffc0621.png"/></td>
  85 + <td><img src="https://oscimg.oschina.net/oscnet/up-c195234bbcd30be6927f037a6755e6ab69c.png"/></td>
  86 + </tr>
  87 + <tr>
  88 + <td><img src="https://oscimg.oschina.net/oscnet/b6115bc8c31de52951982e509930b20684a.jpg"/></td>
  89 + <td><img src="https://oscimg.oschina.net/oscnet/up-5e4daac0bb59612c5038448acbcef235e3a.png"/></td>
  90 + </tr>
  91 +</table>
  92 +
  93 +
  94 +## 若依前后端分离交流群
  95 +
  96 +QQ群: [![加入QQ群](https://img.shields.io/badge/已满-937441-blue.svg)](https://jq.qq.com/?_wv=1027&k=5bVB1og) [![加入QQ群](https://img.shields.io/badge/已满-887144332-blue.svg)](https://jq.qq.com/?_wv=1027&k=5eiA4DH) [![加入QQ群](https://img.shields.io/badge/已满-180251782-blue.svg)](https://jq.qq.com/?_wv=1027&k=5AxMKlC) [![加入QQ群](https://img.shields.io/badge/已满-104180207-blue.svg)](https://jq.qq.com/?_wv=1027&k=51G72yr) [![加入QQ群](https://img.shields.io/badge/已满-186866453-blue.svg)](https://jq.qq.com/?_wv=1027&k=VvjN2nvu) [![加入QQ群](https://img.shields.io/badge/已满-201396349-blue.svg)](https://jq.qq.com/?_wv=1027&k=5vYAqA05) [![加入QQ群](https://img.shields.io/badge/已满-101456076-blue.svg)](https://jq.qq.com/?_wv=1027&k=kOIINEb5) [![加入QQ群](https://img.shields.io/badge/已满-101539465-blue.svg)](https://jq.qq.com/?_wv=1027&k=UKtX5jhs) [![加入QQ群](https://img.shields.io/badge/已满-264312783-blue.svg)](https://jq.qq.com/?_wv=1027&k=EI9an8lJ) [![加入QQ群](https://img.shields.io/badge/已满-167385320-blue.svg)](https://jq.qq.com/?_wv=1027&k=SWCtLnMz) [![加入QQ群](https://img.shields.io/badge/已满-104748341-blue.svg)](https://jq.qq.com/?_wv=1027&k=96Dkdq0k) [![加入QQ群](https://img.shields.io/badge/已满-160110482-blue.svg)](https://jq.qq.com/?_wv=1027&k=0fsNiYZt) [![加入QQ群](https://img.shields.io/badge/已满-170801498-blue.svg)](https://jq.qq.com/?_wv=1027&k=7xw4xUG1) [![加入QQ群](https://img.shields.io/badge/已满-108482800-blue.svg)](https://jq.qq.com/?_wv=1027&k=eCx8eyoJ) [![加入QQ群](https://img.shields.io/badge/已满-101046199-blue.svg)](https://jq.qq.com/?_wv=1027&k=SpyH2875) [![加入QQ群](https://img.shields.io/badge/已满-136919097-blue.svg)](https://jq.qq.com/?_wv=1027&k=tKEt51dz) [![加入QQ群](https://img.shields.io/badge/已满-143961921-blue.svg)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=0vBbSb0ztbBgVtn3kJS-Q4HUNYwip89G&authKey=8irq5PhutrZmWIvsUsklBxhj57l%2F1nOZqjzigkXZVoZE451GG4JHPOqW7AW6cf0T&noverify=0&group_code=143961921) [![加入QQ群](https://img.shields.io/badge/已满-174951577-blue.svg)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=ZFAPAbp09S2ltvwrJzp7wGlbopsc0rwi&authKey=HB2cxpxP2yspk%2Bo3WKTBfktRCccVkU26cgi5B16u0KcAYrVu7sBaE7XSEqmMdFQp&noverify=0&group_code=174951577) [![加入QQ群](https://img.shields.io/badge/已满-161281055-blue.svg)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=Fn2aF5IHpwsy8j6VlalNJK6qbwFLFHat&authKey=uyIT%2B97x2AXj3odyXpsSpVaPMC%2Bidw0LxG5MAtEqlrcBcWJUA%2FeS43rsF1Tg7IRJ&noverify=0&group_code=161281055) [![加入QQ群](https://img.shields.io/badge/138988063-blue.svg)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=XIzkm_mV2xTsUtFxo63bmicYoDBA6Ifm&authKey=dDW%2F4qsmw3x9govoZY9w%2FoWAoC4wbHqGal%2BbqLzoS6VBarU8EBptIgPKN%2FviyC8j&noverify=0&group_code=138988063) 点击按钮入群。
  1 +module.exports = {
  2 + presets: [
  3 + // https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
  4 + '@vue/cli-plugin-babel/preset'
  5 + ],
  6 + 'env': {
  7 + 'development': {
  8 + // babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require().
  9 + // This plugin can significantly increase the speed of hot updates, when you have a large number of pages.
  10 + 'plugins': ['dynamic-import-node']
  11 + }
  12 + }
  13 +}
  1 +@echo off
  2 +echo.
  3 +echo [信息] 打包Web工程,生成dist文件。
  4 +echo.
  5 +
  6 +%~d0
  7 +cd %~dp0
  8 +
  9 +cd ..
  10 +npm run build:prod
  11 +
  12 +pause
  1 +@echo off
  2 +echo.
  3 +echo [信息] 安装Web工程,生成node_modules文件。
  4 +echo.
  5 +
  6 +%~d0
  7 +cd %~dp0
  8 +
  9 +cd ..
  10 +npm install --registry=https://registry.npmmirror.com
  11 +
  12 +pause
  1 +@echo off
  2 +echo.
  3 +echo [信息] 使用 Vue CLI 命令运行 Web 工程。
  4 +echo.
  5 +
  6 +%~d0
  7 +cd %~dp0
  8 +
  9 +cd ..
  10 +npm run dev
  11 +
  12 +pause
  1 +const { run } = require('runjs')
  2 +const chalk = require('chalk')
  3 +const config = require('../vue.config.js')
  4 +const rawArgv = process.argv.slice(2)
  5 +const args = rawArgv.join(' ')
  6 +
  7 +if (process.env.npm_config_preview || rawArgv.includes('--preview')) {
  8 + const report = rawArgv.includes('--report')
  9 +
  10 + run(`vue-cli-service build ${args}`)
  11 +
  12 + const port = 9526
  13 + const publicPath = config.publicPath
  14 +
  15 + var connect = require('connect')
  16 + var serveStatic = require('serve-static')
  17 + const app = connect()
  18 +
  19 + app.use(
  20 + publicPath,
  21 + serveStatic('./dist', {
  22 + index: ['index.html', '/']
  23 + })
  24 + )
  25 +
  26 + app.listen(port, function () {
  27 + console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`))
  28 + if (report) {
  29 + console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`))
  30 + }
  31 +
  32 + })
  33 +} else {
  34 + run(`vue-cli-service build ${args}`)
  35 +}
  1 +{
  2 + "name": "ruoyi",
  3 + "version": "3.8.7",
  4 + "description": "若依管理系统",
  5 + "author": "若依",
  6 + "license": "MIT",
  7 + "scripts": {
  8 + "dev": "vue-cli-service serve",
  9 + "build:prod": "vue-cli-service build",
  10 + "build:stage": "vue-cli-service build --mode staging",
  11 + "preview": "node build/index.js --preview",
  12 + "lint": "eslint --ext .js,.vue src"
  13 + },
  14 + "husky": {
  15 + "hooks": {
  16 + "pre-commit": "lint-staged"
  17 + }
  18 + },
  19 + "lint-staged": {
  20 + "src/**/*.{js,vue}": [
  21 + "eslint --fix",
  22 + "git add"
  23 + ]
  24 + },
  25 + "keywords": [
  26 + "vue",
  27 + "admin",
  28 + "dashboard",
  29 + "element-ui",
  30 + "boilerplate",
  31 + "admin-template",
  32 + "management-system"
  33 + ],
  34 + "repository": {
  35 + "type": "git",
  36 + "url": "https://gitee.com/y_project/RuoYi-Vue.git"
  37 + },
  38 + "dependencies": {
  39 + "@riophae/vue-treeselect": "0.4.0",
  40 + "axios": "0.24.0",
  41 + "clipboard": "2.0.8",
  42 + "core-js": "3.25.3",
  43 + "echarts": "5.4.0",
  44 + "element-ui": "2.15.14",
  45 + "file-saver": "2.0.5",
  46 + "fuse.js": "6.4.3",
  47 + "highlight.js": "9.18.5",
  48 + "js-beautify": "1.13.0",
  49 + "js-cookie": "3.0.1",
  50 + "jsencrypt": "3.0.0-rc.1",
  51 + "nprogress": "0.2.0",
  52 + "quill": "1.3.7",
  53 + "screenfull": "5.0.2",
  54 + "sortablejs": "1.10.2",
  55 + "vue": "2.6.12",
  56 + "vue-count-to": "1.0.13",
  57 + "vue-cropper": "0.5.5",
  58 + "vue-meta": "2.4.0",
  59 + "vue-router": "3.4.9",
  60 + "vuedraggable": "2.24.3",
  61 + "vuex": "3.6.0"
  62 + },
  63 + "devDependencies": {
  64 + "@vue/cli-plugin-babel": "4.4.6",
  65 + "@vue/cli-plugin-eslint": "4.4.6",
  66 + "@vue/cli-service": "4.4.6",
  67 + "babel-eslint": "10.1.0",
  68 + "babel-plugin-dynamic-import-node": "2.3.3",
  69 + "chalk": "4.1.0",
  70 + "compression-webpack-plugin": "6.1.2",
  71 + "connect": "3.6.6",
  72 + "eslint": "7.15.0",
  73 + "eslint-plugin-vue": "7.2.0",
  74 + "lint-staged": "10.5.3",
  75 + "runjs": "4.4.2",
  76 + "sass": "1.32.13",
  77 + "sass-loader": "10.1.1",
  78 + "script-ext-html-webpack-plugin": "2.1.5",
  79 + "svg-sprite-loader": "5.1.1",
  80 + "vue-template-compiler": "2.6.12"
  81 + },
  82 + "engines": {
  83 + "node": ">=8.9",
  84 + "npm": ">= 3.0.0"
  85 + },
  86 + "browserslist": [
  87 + "> 1%",
  88 + "last 2 versions"
  89 + ]
  90 +}
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project xmlns="http://maven.apache.org/POM/4.0.0"
  3 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5 + <modelVersion>4.0.0</modelVersion>
  6 + <parent>
  7 + <groupId>com.zhonglai.luhui</groupId>
  8 + <artifactId>LhAquaculture</artifactId>
  9 + <version>1.0.0</version>
  10 + </parent>
  11 +
  12 + <artifactId>lh-ruoyi</artifactId>
  13 +
  14 + <modules>
  15 + <module>ruoyi-admin</module>
  16 + <module>ruoyi-framework</module>
  17 + <module>ruoyi-system</module>
  18 + <module>ruoyi-quartz</module>
  19 + <module>ruoyi-generator</module>
  20 + <module>ruoyi-common</module>
  21 + </modules>
  22 + <packaging>pom</packaging>
  23 +</project>
不能预览此文件类型
  1 +
  2 +<!DOCTYPE html>
  3 +<html lang="zh-CN">
  4 +<head>
  5 + <meta charset="UTF-8" />
  6 + <title>请升级您的浏览器</title>
  7 + <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" >
  8 + <meta name="renderer" content="webkit">
  9 + <base target="_blank" />
  10 + <style type="text/css">
  11 + html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
  12 + a{text-decoration:none;color:#0072c6;}a:hover{text-decoration:none;color:#004d8c;}
  13 + body{width:960px;margin:0 auto;padding:10px;font-size:14px;line-height:24px;color:#454545;font-family:'Microsoft YaHei UI','Microsoft YaHei',DengXian,SimSun,'Segoe UI',Tahoma,Helvetica,sans-serif;overflow-y:scroll}
  14 + h1{font-size:40px;line-height:80px;font-weight:100;margin-bottom:10px;}
  15 + h2{font-size:20px;line-height:25px;font-weight:100;margin:10px 0;}
  16 + em{color:red}
  17 + p{margin-bottom:10px;}
  18 + hr{margin:20px 0;border:0;border-top:1px solid #dadada}
  19 + span{display:block;font-size:12px;line-height:12px;}
  20 + .clean{clear:both;}
  21 + .browser{padding:10px 10px;}
  22 + .browser li{width:auto;padding:0 80px;margin-top:30px;height:34px;line-height:22px;float:left;list-style:none;background:url(data:image/png;base64,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) no-repeat;padding-left:40px}
  23 + .browser .browser-firefox{background-position:0 -34px}
  24 + .browser .browser-ie{background-position:0 -68px;margin-left:0px}
  25 + .browser .browser-360{background-position:0 -170px;margin-left: -27px}
  26 + </style>
  27 +</head>
  28 +<body style="margin-top:50px">
  29 +<h1>请升级您的浏览器,以便我们更好的为您提供服务!</h1>
  30 +<p>您正在使用 Internet Explorer 的早期版本(IE11以下版本或使用该内核的浏览器)。这意味着在升级浏览器前,您将无法访问此网站。</p>
  31 +<hr>
  32 +<h2>请注意:微软公司对Windows XP 及 Internet Explorer 早期版本的支持已经结束</h2>
  33 +<p>自 2016 年 1 月 12 日起,Microsoft 不再为 IE 11 以下版本提供相应支持和更新。没有关键的浏览器安全更新,您的电脑可能易受有害病毒、间谍软件和其他恶意软件的攻击,它们可以窃取或损害您的业务数据和信息。请参阅 <a href="https://www.microsoft.com/zh-cn/WindowsForBusiness/End-of-IE-support">微软对 Internet Explorer 早期版本的支持将于 2016 年 1 月 12 日结束的说明</a></p>
  34 +<hr>
  35 +<h2>您可以选择更先进的浏览器</h2>
  36 +<p>推荐使用以下浏览器的最新版本。如果您的电脑已有以下浏览器的最新版本则直接使用该浏览器访问即可。</p>
  37 +<ul class="browser">
  38 + <li class="browser-chrome"><a href="https://www.google.cn/chrome/browser/desktop/index.html?hl=zh-CN&standalone=1"> 谷歌浏览器<span>Google Chrome</span></a></li>
  39 + <li class="browser-firefox"><a href="https://www.mozilla.org/zh-CN/firefox/new/"> 火狐浏览器<span>Mozilla Firefox</span></a></li>
  40 + <li class="browser-ie"><a href="https://windows.microsoft.com/zh-cn/internet-explorer/download-ie"> IE 11 浏览器<span>Internet Explorer</span></a></li>
  41 + <li class="browser-360"><a href="http://se.360.cn/"> 360安全浏览器<span>360 Chrome</span></a></li>
  42 + <div class="clean"></div>
  43 +</ul>
  44 +<hr>
  45 +</body>
  46 +</html>
  1 +<!DOCTYPE html>
  2 +<html>
  3 + <head>
  4 + <meta charset="utf-8">
  5 + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6 + <meta name="renderer" content="webkit">
  7 + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8 + <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  9 + <title><%= webpackConfig.name %></title>
  10 + <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
  11 + <style>
  12 + html,
  13 + body,
  14 + #app {
  15 + height: 100%;
  16 + margin: 0px;
  17 + padding: 0px;
  18 + }
  19 + .chromeframe {
  20 + margin: 0.2em 0;
  21 + background: #ccc;
  22 + color: #000;
  23 + padding: 0.2em 0;
  24 + }
  25 +
  26 + #loader-wrapper {
  27 + position: fixed;
  28 + top: 0;
  29 + left: 0;
  30 + width: 100%;
  31 + height: 100%;
  32 + z-index: 999999;
  33 + }
  34 +
  35 + #loader {
  36 + display: block;
  37 + position: relative;
  38 + left: 50%;
  39 + top: 50%;
  40 + width: 150px;
  41 + height: 150px;
  42 + margin: -75px 0 0 -75px;
  43 + border-radius: 50%;
  44 + border: 3px solid transparent;
  45 + border-top-color: #FFF;
  46 + -webkit-animation: spin 2s linear infinite;
  47 + -ms-animation: spin 2s linear infinite;
  48 + -moz-animation: spin 2s linear infinite;
  49 + -o-animation: spin 2s linear infinite;
  50 + animation: spin 2s linear infinite;
  51 + z-index: 1001;
  52 + }
  53 +
  54 + #loader:before {
  55 + content: "";
  56 + position: absolute;
  57 + top: 5px;
  58 + left: 5px;
  59 + right: 5px;
  60 + bottom: 5px;
  61 + border-radius: 50%;
  62 + border: 3px solid transparent;
  63 + border-top-color: #FFF;
  64 + -webkit-animation: spin 3s linear infinite;
  65 + -moz-animation: spin 3s linear infinite;
  66 + -o-animation: spin 3s linear infinite;
  67 + -ms-animation: spin 3s linear infinite;
  68 + animation: spin 3s linear infinite;
  69 + }
  70 +
  71 + #loader:after {
  72 + content: "";
  73 + position: absolute;
  74 + top: 15px;
  75 + left: 15px;
  76 + right: 15px;
  77 + bottom: 15px;
  78 + border-radius: 50%;
  79 + border: 3px solid transparent;
  80 + border-top-color: #FFF;
  81 + -moz-animation: spin 1.5s linear infinite;
  82 + -o-animation: spin 1.5s linear infinite;
  83 + -ms-animation: spin 1.5s linear infinite;
  84 + -webkit-animation: spin 1.5s linear infinite;
  85 + animation: spin 1.5s linear infinite;
  86 + }
  87 +
  88 +
  89 + @-webkit-keyframes spin {
  90 + 0% {
  91 + -webkit-transform: rotate(0deg);
  92 + -ms-transform: rotate(0deg);
  93 + transform: rotate(0deg);
  94 + }
  95 + 100% {
  96 + -webkit-transform: rotate(360deg);
  97 + -ms-transform: rotate(360deg);
  98 + transform: rotate(360deg);
  99 + }
  100 + }
  101 +
  102 + @keyframes spin {
  103 + 0% {
  104 + -webkit-transform: rotate(0deg);
  105 + -ms-transform: rotate(0deg);
  106 + transform: rotate(0deg);
  107 + }
  108 + 100% {
  109 + -webkit-transform: rotate(360deg);
  110 + -ms-transform: rotate(360deg);
  111 + transform: rotate(360deg);
  112 + }
  113 + }
  114 +
  115 +
  116 + #loader-wrapper .loader-section {
  117 + position: fixed;
  118 + top: 0;
  119 + width: 51%;
  120 + height: 100%;
  121 + background: #7171C6;
  122 + z-index: 1000;
  123 + -webkit-transform: translateX(0);
  124 + -ms-transform: translateX(0);
  125 + transform: translateX(0);
  126 + }
  127 +
  128 + #loader-wrapper .loader-section.section-left {
  129 + left: 0;
  130 + }
  131 +
  132 + #loader-wrapper .loader-section.section-right {
  133 + right: 0;
  134 + }
  135 +
  136 +
  137 + .loaded #loader-wrapper .loader-section.section-left {
  138 + -webkit-transform: translateX(-100%);
  139 + -ms-transform: translateX(-100%);
  140 + transform: translateX(-100%);
  141 + -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  142 + transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  143 + }
  144 +
  145 + .loaded #loader-wrapper .loader-section.section-right {
  146 + -webkit-transform: translateX(100%);
  147 + -ms-transform: translateX(100%);
  148 + transform: translateX(100%);
  149 + -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  150 + transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  151 + }
  152 +
  153 + .loaded #loader {
  154 + opacity: 0;
  155 + -webkit-transition: all 0.3s ease-out;
  156 + transition: all 0.3s ease-out;
  157 + }
  158 +
  159 + .loaded #loader-wrapper {
  160 + visibility: hidden;
  161 + -webkit-transform: translateY(-100%);
  162 + -ms-transform: translateY(-100%);
  163 + transform: translateY(-100%);
  164 + -webkit-transition: all 0.3s 1s ease-out;
  165 + transition: all 0.3s 1s ease-out;
  166 + }
  167 +
  168 + .no-js #loader-wrapper {
  169 + display: none;
  170 + }
  171 +
  172 + .no-js h1 {
  173 + color: #222222;
  174 + }
  175 +
  176 + #loader-wrapper .load_title {
  177 + font-family: 'Open Sans';
  178 + color: #FFF;
  179 + font-size: 19px;
  180 + width: 100%;
  181 + text-align: center;
  182 + z-index: 9999999999999;
  183 + position: absolute;
  184 + top: 60%;
  185 + opacity: 1;
  186 + line-height: 30px;
  187 + }
  188 +
  189 + #loader-wrapper .load_title span {
  190 + font-weight: normal;
  191 + font-style: italic;
  192 + font-size: 13px;
  193 + color: #FFF;
  194 + opacity: 0.5;
  195 + }
  196 + </style>
  197 + </head>
  198 + <body>
  199 + <div id="app">
  200 + <div id="loader-wrapper">
  201 + <div id="loader"></div>
  202 + <div class="loader-section section-left"></div>
  203 + <div class="loader-section section-right"></div>
  204 + <div class="load_title">正在加载系统资源,请耐心等待</div>
  205 + </div>
  206 + </div>
  207 + </body>
  208 +</html>
  1 +User-agent: *
  2 +Disallow: /
  1 +@echo off
  2 +
  3 +rem jar平级目录
  4 +set AppName=ruoyi-admin.jar
  5 +
  6 +rem JVM参数
  7 +set JVM_OPTS="-Dname=%AppName% -Duser.timezone=Asia/Shanghai -Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:NewRatio=1 -XX:SurvivorRatio=30 -XX:+UseParallelGC -XX:+UseParallelOldGC"
  8 +
  9 +
  10 +ECHO.
  11 + ECHO. [1] 启动%AppName%
  12 + ECHO. [2] 关闭%AppName%
  13 + ECHO. [3] 重启%AppName%
  14 + ECHO. [4] 启动状态 %AppName%
  15 + ECHO. [5] 退 出
  16 +ECHO.
  17 +
  18 +ECHO.请输入选择项目的序号:
  19 +set /p ID=
  20 + IF "%id%"=="1" GOTO start
  21 + IF "%id%"=="2" GOTO stop
  22 + IF "%id%"=="3" GOTO restart
  23 + IF "%id%"=="4" GOTO status
  24 + IF "%id%"=="5" EXIT
  25 +PAUSE
  26 +:start
  27 + for /f "usebackq tokens=1-2" %%a in (`jps -l ^| findstr %AppName%`) do (
  28 + set pid=%%a
  29 + set image_name=%%b
  30 + )
  31 + if defined pid (
  32 + echo %%is running
  33 + PAUSE
  34 + )
  35 +
  36 +start javaw %JVM_OPTS% -jar %AppName%
  37 +
  38 +echo starting……
  39 +echo Start %AppName% success...
  40 +goto:eof
  41 +
  42 +rem 函数stop通过jps命令查找pid并结束进程
  43 +:stop
  44 + for /f "usebackq tokens=1-2" %%a in (`jps -l ^| findstr %AppName%`) do (
  45 + set pid=%%a
  46 + set image_name=%%b
  47 + )
  48 + if not defined pid (echo process %AppName% does not exists) else (
  49 + echo prepare to kill %image_name%
  50 + echo start kill %pid% ...
  51 + rem 根据进程ID,kill进程
  52 + taskkill /f /pid %pid%
  53 + )
  54 +goto:eof
  55 +:restart
  56 + call :stop
  57 + call :start
  58 +goto:eof
  59 +:status
  60 + for /f "usebackq tokens=1-2" %%a in (`jps -l ^| findstr %AppName%`) do (
  61 + set pid=%%a
  62 + set image_name=%%b
  63 + )
  64 + if not defined pid (echo process %AppName% is dead ) else (
  65 + echo %image_name% is running
  66 + )
  67 +goto:eof
  1 +#!/bin/sh
  2 +# ./ry.sh start 启动 stop 停止 restart 重启 status 状态
  3 +AppName=ruoyi-admin.jar
  4 +
  5 +# JVM参数
  6 +JVM_OPTS="-Dname=$AppName -Duser.timezone=Asia/Shanghai -Xms512m -Xmx1024m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:NewRatio=1 -XX:SurvivorRatio=30 -XX:+UseParallelGC -XX:+UseParallelOldGC"
  7 +APP_HOME=`pwd`
  8 +LOG_PATH=$APP_HOME/logs/$AppName.log
  9 +
  10 +if [ "$1" = "" ];
  11 +then
  12 + echo -e "\033[0;31m 未输入操作名 \033[0m \033[0;34m {start|stop|restart|status} \033[0m"
  13 + exit 1
  14 +fi
  15 +
  16 +if [ "$AppName" = "" ];
  17 +then
  18 + echo -e "\033[0;31m 未输入应用名 \033[0m"
  19 + exit 1
  20 +fi
  21 +
  22 +function start()
  23 +{
  24 + PID=`ps -ef |grep java|grep $AppName|grep -v grep|awk '{print $2}'`
  25 +
  26 + if [ x"$PID" != x"" ]; then
  27 + echo "$AppName is running..."
  28 + else
  29 + nohup java $JVM_OPTS -jar $AppName > /dev/null 2>&1 &
  30 + echo "Start $AppName success..."
  31 + fi
  32 +}
  33 +
  34 +function stop()
  35 +{
  36 + echo "Stop $AppName"
  37 +
  38 + PID=""
  39 + query(){
  40 + PID=`ps -ef |grep java|grep $AppName|grep -v grep|awk '{print $2}'`
  41 + }
  42 +
  43 + query
  44 + if [ x"$PID" != x"" ]; then
  45 + kill -TERM $PID
  46 + echo "$AppName (pid:$PID) exiting..."
  47 + while [ x"$PID" != x"" ]
  48 + do
  49 + sleep 1
  50 + query
  51 + done
  52 + echo "$AppName exited."
  53 + else
  54 + echo "$AppName already stopped."
  55 + fi
  56 +}
  57 +
  58 +function restart()
  59 +{
  60 + stop
  61 + sleep 2
  62 + start
  63 +}
  64 +
  65 +function status()
  66 +{
  67 + PID=`ps -ef |grep java|grep $AppName|grep -v grep|wc -l`
  68 + if [ $PID != 0 ];then
  69 + echo "$AppName is running..."
  70 + else
  71 + echo "$AppName is not running..."
  72 + fi
  73 +}
  74 +
  75 +case $1 in
  76 + start)
  77 + start;;
  78 + stop)
  79 + stop;;
  80 + restart)
  81 + restart;;
  82 + status)
  83 + status;;
  84 + *)
  85 +
  86 +esac
  1 +<template>
  2 + <div id="app">
  3 + <router-view />
  4 + <theme-picker />
  5 + </div>
  6 +</template>
  7 +
  8 +<script>
  9 +import ThemePicker from "@/components/ThemePicker";
  10 +
  11 +export default {
  12 + name: "App",
  13 + components: { ThemePicker },
  14 + metaInfo() {
  15 + return {
  16 + title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
  17 + titleTemplate: title => {
  18 + return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
  19 + }
  20 + }
  21 + }
  22 +};
  23 +</script>
  24 +<style scoped>
  25 +#app .theme-picker {
  26 + display: none;
  27 +}
  28 +</style>
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询标粗结转成本列表
  4 +export function listBold_closing_cost(query) {
  5 + return request({
  6 + url: '/admin/cb/bold_closing_cost/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询标粗结转成本详细
  13 +export function getBold_closing_cost(id) {
  14 + return request({
  15 + url: '/admin/cb/bold_closing_cost/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增标粗结转成本
  21 +export function addBold_closing_cost(data) {
  22 + return request({
  23 + url: '/admin/cb/bold_closing_cost',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改标粗结转成本
  30 +export function updateBold_closing_cost(data) {
  31 + return request({
  32 + url: '/admin/cb/bold_closing_cost',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除标粗结转成本
  39 +export function delBold_closing_cost(id) {
  40 + return request({
  41 + url: '/admin/cb/bold_closing_cost/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询标粗动态成本列表
  4 +export function listBold_dynamic_cost(query) {
  5 + return request({
  6 + url: '/admin/cb/bold_dynamic_cost/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询标粗动态成本详细
  13 +export function getBold_dynamic_cost(id) {
  14 + return request({
  15 + url: '/admin/cb/bold_dynamic_cost/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增标粗动态成本
  21 +export function addBold_dynamic_cost(data) {
  22 + return request({
  23 + url: '/admin/cb/bold_dynamic_cost',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改标粗动态成本
  30 +export function updateBold_dynamic_cost(data) {
  31 + return request({
  32 + url: '/admin/cb/bold_dynamic_cost',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除标粗动态成本
  39 +export function delBold_dynamic_cost(id) {
  40 + return request({
  41 + url: '/admin/cb/bold_dynamic_cost/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成动态成本列表
  4 +export function listDevelopment_dynamic_cost(query) {
  5 + return request({
  6 + url: '/admin/cb/development_dynamic_cost/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成动态成本详细
  13 +export function getDevelopment_dynamic_cost(id) {
  14 + return request({
  15 + url: '/admin/cb/development_dynamic_cost/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成动态成本
  21 +export function addDevelopment_dynamic_cost(data) {
  22 + return request({
  23 + url: '/admin/cb/development_dynamic_cost',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成动态成本
  30 +export function updateDevelopment_dynamic_cost(data) {
  31 + return request({
  32 + url: '/admin/cb/development_dynamic_cost',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成动态成本
  39 +export function delDevelopment_dynamic_cost(id) {
  40 + return request({
  41 + url: '/admin/cb/development_dynamic_cost/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成存塘成本统计列表
  4 +export function listDevelopment_stock_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/development_stock_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成存塘成本统计详细
  13 +export function getDevelopment_stock_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/development_stock_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成存塘成本统计
  21 +export function addDevelopment_stock_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/development_stock_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成存塘成本统计
  30 +export function updateDevelopment_stock_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/development_stock_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成存塘成本统计
  39 +export function delDevelopment_stock_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/development_stock_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询斤鱼成本与售价查询列表
  4 +export function listFish_cost_and_price_query(query) {
  5 + return request({
  6 + url: '/admin/cb/fish_cost_and_price_query/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询斤鱼成本与售价查询详细
  13 +export function getFish_cost_and_price_query(id) {
  14 + return request({
  15 + url: '/admin/cb/fish_cost_and_price_query/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增斤鱼成本与售价查询
  21 +export function addFish_cost_and_price_query(data) {
  22 + return request({
  23 + url: '/admin/cb/fish_cost_and_price_query',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改斤鱼成本与售价查询
  30 +export function updateFish_cost_and_price_query(data) {
  31 + return request({
  32 + url: '/admin/cb/fish_cost_and_price_query',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除斤鱼成本与售价查询
  39 +export function delFish_cost_and_price_query(id) {
  40 + return request({
  41 + url: '/admin/cb/fish_cost_and_price_query/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成结转成本统计列表
  4 +export function listGrowth_closing_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/growth_closing_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成结转成本统计详细
  13 +export function getGrowth_closing_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/growth_closing_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成结转成本统计
  21 +export function addGrowth_closing_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/growth_closing_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成结转成本统计
  30 +export function updateGrowth_closing_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/growth_closing_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成结转成本统计
  39 +export function delGrowth_closing_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/growth_closing_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成成本月度汇总余额列表
  4 +export function listMonthly_raising_cost_summary(query) {
  5 + return request({
  6 + url: '/admin/cb/monthly_raising_cost_summary/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成成本月度汇总余额详细
  13 +export function getMonthly_raising_cost_summary(id) {
  14 + return request({
  15 + url: '/admin/cb/monthly_raising_cost_summary/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成成本月度汇总余额
  21 +export function addMonthly_raising_cost_summary(data) {
  22 + return request({
  23 + url: '/admin/cb/monthly_raising_cost_summary',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成成本月度汇总余额
  30 +export function updateMonthly_raising_cost_summary(data) {
  31 + return request({
  32 + url: '/admin/cb/monthly_raising_cost_summary',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成成本月度汇总余额
  39 +export function delMonthly_raising_cost_summary(id) {
  40 + return request({
  41 + url: '/admin/cb/monthly_raising_cost_summary/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗成本月度汇总余额列表
  4 +export function listMonthly_seedling_cost_summary(query) {
  5 + return request({
  6 + url: '/admin/cb/monthly_seedling_cost_summary/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗成本月度汇总余额详细
  13 +export function getMonthly_seedling_cost_summary(id) {
  14 + return request({
  15 + url: '/admin/cb/monthly_seedling_cost_summary/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗成本月度汇总余额
  21 +export function addMonthly_seedling_cost_summary(data) {
  22 + return request({
  23 + url: '/admin/cb/monthly_seedling_cost_summary',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗成本月度汇总余额
  30 +export function updateMonthly_seedling_cost_summary(data) {
  31 + return request({
  32 + url: '/admin/cb/monthly_seedling_cost_summary',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗成本月度汇总余额
  39 +export function delMonthly_seedling_cost_summary(id) {
  40 + return request({
  41 + url: '/admin/cb/monthly_seedling_cost_summary/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗结转成本统计列表
  4 +export function listNursery_closing_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/nursery_closing_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗结转成本统计详细
  13 +export function getNursery_closing_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/nursery_closing_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗结转成本统计
  21 +export function addNursery_closing_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/nursery_closing_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗结转成本统计
  30 +export function updateNursery_closing_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/nursery_closing_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗结转成本统计
  39 +export function delNursery_closing_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/nursery_closing_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗存塘成本统计列表
  4 +export function listNursery_stock_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/nursery_stock_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗存塘成本统计详细
  13 +export function getNursery_stock_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/nursery_stock_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗存塘成本统计
  21 +export function addNursery_stock_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/nursery_stock_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗存塘成本统计
  30 +export function updateNursery_stock_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/nursery_stock_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗存塘成本统计
  39 +export function delNursery_stock_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/nursery_stock_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成成本统计明细列表
  4 +export function listRearing_cost_details(query) {
  5 + return request({
  6 + url: '/admin/cb/rearing_cost_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成成本统计明细详细
  13 +export function getRearing_cost_details(id) {
  14 + return request({
  15 + url: '/admin/cb/rearing_cost_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成成本统计明细
  21 +export function addRearing_cost_details(data) {
  22 + return request({
  23 + url: '/admin/cb/rearing_cost_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成成本统计明细
  30 +export function updateRearing_cost_details(data) {
  31 + return request({
  32 + url: '/admin/cb/rearing_cost_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成成本统计明细
  39 +export function delRearing_cost_details(id) {
  40 + return request({
  41 + url: '/admin/cb/rearing_cost_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗成本统计明细列表
  4 +export function listSeedling_cost_details(query) {
  5 + return request({
  6 + url: '/admin/cb/seedling_cost_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗成本统计明细详细
  13 +export function getSeedling_cost_details(id) {
  14 + return request({
  15 + url: '/admin/cb/seedling_cost_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗成本统计明细
  21 +export function addSeedling_cost_details(data) {
  22 + return request({
  23 + url: '/admin/cb/seedling_cost_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗成本统计明细
  30 +export function updateSeedling_cost_details(data) {
  31 + return request({
  32 + url: '/admin/cb/seedling_cost_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗成本统计明细
  39 +export function delSeedling_cost_details(id) {
  40 + return request({
  41 + url: '/admin/cb/seedling_cost_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询采样记录列表
  4 +export function listSampling_records(query) {
  5 + return request({
  6 + url: '/admin/cj/sampling_records/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询采样记录详细
  13 +export function getSampling_records(id) {
  14 + return request({
  15 + url: '/admin/cj/sampling_records/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增采样记录
  21 +export function addSampling_records(data) {
  22 + return request({
  23 + url: '/admin/cj/sampling_records',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改采样记录
  30 +export function updateSampling_records(data) {
  31 + return request({
  32 + url: '/admin/cj/sampling_records',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除采样记录
  39 +export function delSampling_records(id) {
  40 + return request({
  41 + url: '/admin/cj/sampling_records/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询存塘抽样指标分析列表
  4 +export function listStock_pond_sampling_analysis(query) {
  5 + return request({
  6 + url: '/admin/cj/stock_pond_sampling_analysis/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询存塘抽样指标分析详细
  13 +export function getStock_pond_sampling_analysis(id) {
  14 + return request({
  15 + url: '/admin/cj/stock_pond_sampling_analysis/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增存塘抽样指标分析
  21 +export function addStock_pond_sampling_analysis(data) {
  22 + return request({
  23 + url: '/admin/cj/stock_pond_sampling_analysis',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改存塘抽样指标分析
  30 +export function updateStock_pond_sampling_analysis(data) {
  31 + return request({
  32 + url: '/admin/cj/stock_pond_sampling_analysis',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除存塘抽样指标分析
  39 +export function delStock_pond_sampling_analysis(id) {
  40 + return request({
  41 + url: '/admin/cj/stock_pond_sampling_analysis/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询区域投喂列表
  4 +export function listArea_feeding(query) {
  5 + return request({
  6 + url: '/admin/cl/area_feeding/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询区域投喂详细
  13 +export function getArea_feeding(id) {
  14 + return request({
  15 + url: '/admin/cl/area_feeding/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增区域投喂
  21 +export function addArea_feeding(data) {
  22 + return request({
  23 + url: '/admin/cl/area_feeding',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改区域投喂
  30 +export function updateArea_feeding(data) {
  31 + return request({
  32 + url: '/admin/cl/area_feeding',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除区域投喂
  39 +export function delArea_feeding(id) {
  40 + return request({
  41 + url: '/admin/cl/area_feeding/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料调拨列表
  4 +export function listFeed_allocation(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_allocation/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料调拨详细
  13 +export function getFeed_allocation(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_allocation/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料调拨
  21 +export function addFeed_allocation(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_allocation',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料调拨
  30 +export function updateFeed_allocation(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_allocation',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料调拨
  39 +export function delFeed_allocation(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_allocation/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料期初列表
  4 +export function listFeed_beginning_balance(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_beginning_balance/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料期初详细
  13 +export function getFeed_beginning_balance(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_beginning_balance/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料期初
  21 +export function addFeed_beginning_balance(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_beginning_balance',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料期初
  30 +export function updateFeed_beginning_balance(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_beginning_balance',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料期初
  39 +export function delFeed_beginning_balance(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_beginning_balance/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料借调列表
  4 +export function listFeed_borrow(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_borrow/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料借调详细
  13 +export function getFeed_borrow(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_borrow/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料借调
  21 +export function addFeed_borrow(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_borrow',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料借调
  30 +export function updateFeed_borrow(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_borrow',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料借调
  39 +export function delFeed_borrow(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_borrow/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料信息列表
  4 +export function listFeed_info(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料信息详细
  13 +export function getFeed_info(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料信息
  21 +export function addFeed_info(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料信息
  30 +export function updateFeed_info(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料信息
  39 +export function delFeed_info(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料盘点列表
  4 +export function listFeed_inventory(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_inventory/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料盘点详细
  13 +export function getFeed_inventory(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_inventory/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料盘点
  21 +export function addFeed_inventory(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_inventory',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料盘点
  30 +export function updateFeed_inventory(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_inventory',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料盘点
  39 +export function delFeed_inventory(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_inventory/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料价格列表
  4 +export function listFeed_price(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_price/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料价格详细
  13 +export function getFeed_price(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_price/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料价格
  21 +export function addFeed_price(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_price',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料价格
  30 +export function updateFeed_price(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_price',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料价格
  39 +export function delFeed_price(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_price/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料申购列表
  4 +export function listFeed_purchase_requisition(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_purchase_requisition/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料申购详细
  13 +export function getFeed_purchase_requisition(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_purchase_requisition/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料申购
  21 +export function addFeed_purchase_requisition(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_purchase_requisition',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料申购
  30 +export function updateFeed_purchase_requisition(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_purchase_requisition',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料申购
  39 +export function delFeed_purchase_requisition(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_purchase_requisition/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料入库列表
  4 +export function listFeed_stock_in(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_stock_in/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料入库详细
  13 +export function getFeed_stock_in(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_stock_in/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料入库
  21 +export function addFeed_stock_in(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_stock_in',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料入库
  30 +export function updateFeed_stock_in(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_stock_in',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料入库
  39 +export function delFeed_stock_in(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_stock_in/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保调拨列表
  4 +export function listAnimal_protection_allocation(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_allocation/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保调拨详细
  13 +export function getAnimal_protection_allocation(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_allocation/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保调拨
  21 +export function addAnimal_protection_allocation(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_allocation',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保调拨
  30 +export function updateAnimal_protection_allocation(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_allocation',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保调拨
  39 +export function delAnimal_protection_allocation(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_allocation/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保区域使用列表
  4 +export function listAnimal_protection_area_usage(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_area_usage/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保区域使用详细
  13 +export function getAnimal_protection_area_usage(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_area_usage/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保区域使用
  21 +export function addAnimal_protection_area_usage(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_area_usage',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保区域使用
  30 +export function updateAnimal_protection_area_usage(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_area_usage',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保区域使用
  39 +export function delAnimal_protection_area_usage(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_area_usage/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保期初列表
  4 +export function listAnimal_protection_beginning(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_beginning/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保期初详细
  13 +export function getAnimal_protection_beginning(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_beginning/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保期初
  21 +export function addAnimal_protection_beginning(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_beginning',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保期初
  30 +export function updateAnimal_protection_beginning(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_beginning',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保期初
  39 +export function delAnimal_protection_beginning(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_beginning/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保入库列表
  4 +export function listAnimal_protection_inbound(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_inbound/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保入库详细
  13 +export function getAnimal_protection_inbound(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_inbound/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保入库
  21 +export function addAnimal_protection_inbound(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_inbound',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保入库
  30 +export function updateAnimal_protection_inbound(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_inbound',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保入库
  39 +export function delAnimal_protection_inbound(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_inbound/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保信息列表
  4 +export function listAnimal_protection_info(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保信息详细
  13 +export function getAnimal_protection_info(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保信息
  21 +export function addAnimal_protection_info(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保信息
  30 +export function updateAnimal_protection_info(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保信息
  39 +export function delAnimal_protection_info(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保盘点列表
  4 +export function listAnimal_protection_inventory(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_inventory/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保盘点详细
  13 +export function getAnimal_protection_inventory(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_inventory/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保盘点
  21 +export function addAnimal_protection_inventory(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_inventory',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保盘点
  30 +export function updateAnimal_protection_inventory(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_inventory',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保盘点
  39 +export function delAnimal_protection_inventory(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_inventory/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保借调列表
  4 +export function listAnimal_protection_loan(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_loan/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保借调详细
  13 +export function getAnimal_protection_loan(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_loan/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保借调
  21 +export function addAnimal_protection_loan(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_loan',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保借调
  30 +export function updateAnimal_protection_loan(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_loan',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保借调
  39 +export function delAnimal_protection_loan(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_loan/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保塘口使用列表
  4 +export function listAnimal_protection_pond_usage(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_pond_usage/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保塘口使用详细
  13 +export function getAnimal_protection_pond_usage(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_pond_usage/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保塘口使用
  21 +export function addAnimal_protection_pond_usage(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_pond_usage',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保塘口使用
  30 +export function updateAnimal_protection_pond_usage(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_pond_usage',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保塘口使用
  39 +export function delAnimal_protection_pond_usage(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_pond_usage/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保处方列表
  4 +export function listAnimal_protection_prescription(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_prescription/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保处方详细
  13 +export function getAnimal_protection_prescription(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_prescription/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保处方
  21 +export function addAnimal_protection_prescription(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_prescription',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保处方
  30 +export function updateAnimal_protection_prescription(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_prescription',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保处方
  39 +export function delAnimal_protection_prescription(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_prescription/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保申购列表
  4 +export function listAnimal_protection_purchase_requisition(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_purchase_requisition/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保申购详细
  13 +export function getAnimal_protection_purchase_requisition(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_purchase_requisition/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保申购
  21 +export function addAnimal_protection_purchase_requisition(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_purchase_requisition',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保申购
  30 +export function updateAnimal_protection_purchase_requisition(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_purchase_requisition',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保申购
  39 +export function delAnimal_protection_purchase_requisition(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_purchase_requisition/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保入库明细列表
  4 +export function listAnimal_health_protection_inbound_details(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_inbound_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保入库明细详细
  13 +export function getAnimal_health_protection_inbound_details(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_inbound_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保入库明细
  21 +export function addAnimal_health_protection_inbound_details(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_inbound_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保入库明细
  30 +export function updateAnimal_health_protection_inbound_details(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_inbound_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保入库明细
  39 +export function delAnimal_health_protection_inbound_details(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_inbound_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保进出存列表
  4 +export function listAnimal_health_protection_inventory(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_inventory/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保进出存详细
  13 +export function getAnimal_health_protection_inventory(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_inventory/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保进出存
  21 +export function addAnimal_health_protection_inventory(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_inventory',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保进出存
  30 +export function updateAnimal_health_protection_inventory(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_inventory',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保进出存
  39 +export function delAnimal_health_protection_inventory(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_inventory/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保出库明细列表
  4 +export function listAnimal_health_protection_outbound_details(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_outbound_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保出库明细详细
  13 +export function getAnimal_health_protection_outbound_details(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_outbound_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保出库明细
  21 +export function addAnimal_health_protection_outbound_details(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_outbound_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保出库明细
  30 +export function updateAnimal_health_protection_outbound_details(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_outbound_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保出库明细
  39 +export function delAnimal_health_protection_outbound_details(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_outbound_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保投用记录列表
  4 +export function listAnimal_health_protection_records(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_records/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保投用记录详细
  13 +export function getAnimal_health_protection_records(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_records/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保投用记录
  21 +export function addAnimal_health_protection_records(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_records',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保投用记录
  30 +export function updateAnimal_health_protection_records(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_records',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保投用记录
  39 +export function delAnimal_health_protection_records(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_records/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保投用汇总列表
  4 +export function listAnimal_health_protection_summary(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_summary/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保投用汇总详细
  13 +export function getAnimal_health_protection_summary(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_summary/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保投用汇总
  21 +export function addAnimal_health_protection_summary(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_summary',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保投用汇总
  30 +export function updateAnimal_health_protection_summary(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_summary',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保投用汇总
  39 +export function delAnimal_health_protection_summary(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_summary/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询费用成本录入列表
  4 +export function listCost_expense_entry(query) {
  5 + return request({
  6 + url: '/admin/fy/cost_expense_entry/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询费用成本录入详细
  13 +export function getCost_expense_entry(id) {
  14 + return request({
  15 + url: '/admin/fy/cost_expense_entry/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增费用成本录入
  21 +export function addCost_expense_entry(data) {
  22 + return request({
  23 + url: '/admin/fy/cost_expense_entry',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改费用成本录入
  30 +export function updateCost_expense_entry(data) {
  31 + return request({
  32 + url: '/admin/fy/cost_expense_entry',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除费用成本录入
  39 +export function delCost_expense_entry(id) {
  40 + return request({
  41 + url: '/admin/fy/cost_expense_entry/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询成本项目维护列表
  4 +export function listCost_item_maintenance(query) {
  5 + return request({
  6 + url: '/admin/fy/cost_item_maintenance/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询成本项目维护详细
  13 +export function getCost_item_maintenance(id) {
  14 + return request({
  15 + url: '/admin/fy/cost_item_maintenance/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增成本项目维护
  21 +export function addCost_item_maintenance(data) {
  22 + return request({
  23 + url: '/admin/fy/cost_item_maintenance',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改成本项目维护
  30 +export function updateCost_item_maintenance(data) {
  31 + return request({
  32 + url: '/admin/fy/cost_item_maintenance',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除成本项目维护
  39 +export function delCost_item_maintenance(id) {
  40 + return request({
  41 + url: '/admin/fy/cost_item_maintenance/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户期初管理列表
  4 +export function listCustomer_beginning_balance_management(query) {
  5 + return request({
  6 + url: '/admin/fy/customer_beginning_balance_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户期初管理详细
  13 +export function getCustomer_beginning_balance_management(id) {
  14 + return request({
  15 + url: '/admin/fy/customer_beginning_balance_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户期初管理
  21 +export function addCustomer_beginning_balance_management(data) {
  22 + return request({
  23 + url: '/admin/fy/customer_beginning_balance_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户期初管理
  30 +export function updateCustomer_beginning_balance_management(data) {
  31 + return request({
  32 + url: '/admin/fy/customer_beginning_balance_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户期初管理
  39 +export function delCustomer_beginning_balance_management(id) {
  40 + return request({
  41 + url: '/admin/fy/customer_beginning_balance_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户收款结算列表
  4 +export function listCustomer_collection_settlement(query) {
  5 + return request({
  6 + url: '/admin/fy/customer_collection_settlement/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户收款结算详细
  13 +export function getCustomer_collection_settlement(id) {
  14 + return request({
  15 + url: '/admin/fy/customer_collection_settlement/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户收款结算
  21 +export function addCustomer_collection_settlement(data) {
  22 + return request({
  23 + url: '/admin/fy/customer_collection_settlement',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户收款结算
  30 +export function updateCustomer_collection_settlement(data) {
  31 + return request({
  32 + url: '/admin/fy/customer_collection_settlement',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户收款结算
  39 +export function delCustomer_collection_settlement(id) {
  40 + return request({
  41 + url: '/admin/fy/customer_collection_settlement/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户应收管理列表
  4 +export function listCustomer_receivable_management(query) {
  5 + return request({
  6 + url: '/admin/fy/customer_receivable_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户应收管理详细
  13 +export function getCustomer_receivable_management(id) {
  14 + return request({
  15 + url: '/admin/fy/customer_receivable_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户应收管理
  21 +export function addCustomer_receivable_management(data) {
  22 + return request({
  23 + url: '/admin/fy/customer_receivable_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户应收管理
  30 +export function updateCustomer_receivable_management(data) {
  31 + return request({
  32 + url: '/admin/fy/customer_receivable_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户应收管理
  39 +export function delCustomer_receivable_management(id) {
  40 + return request({
  41 + url: '/admin/fy/customer_receivable_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询费用事项维护列表
  4 +export function listExpense_item_maintenance(query) {
  5 + return request({
  6 + url: '/admin/fy/expense_item_maintenance/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询费用事项维护详细
  13 +export function getExpense_item_maintenance(id) {
  14 + return request({
  15 + url: '/admin/fy/expense_item_maintenance/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增费用事项维护
  21 +export function addExpense_item_maintenance(data) {
  22 + return request({
  23 + url: '/admin/fy/expense_item_maintenance',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改费用事项维护
  30 +export function updateExpense_item_maintenance(data) {
  31 + return request({
  32 + url: '/admin/fy/expense_item_maintenance',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除费用事项维护
  39 +export function delExpense_item_maintenance(id) {
  40 + return request({
  41 + url: '/admin/fy/expense_item_maintenance/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户管理列表
  4 +export function listCustomer_management(query) {
  5 + return request({
  6 + url: '/admin/jc/customer_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户管理详细
  13 +export function getCustomer_management(id) {
  14 + return request({
  15 + url: '/admin/jc/customer_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户管理
  21 +export function addCustomer_management(data) {
  22 + return request({
  23 + url: '/admin/jc/customer_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户管理
  30 +export function updateCustomer_management(data) {
  31 + return request({
  32 + url: '/admin/jc/customer_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户管理
  39 +export function delCustomer_management(id) {
  40 + return request({
  41 + url: '/admin/jc/customer_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询供应商管理列表
  4 +export function listSupplier_management(query) {
  5 + return request({
  6 + url: '/admin/jc/supplier_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询供应商管理详细
  13 +export function getSupplier_management(id) {
  14 + return request({
  15 + url: '/admin/jc/supplier_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增供应商管理
  21 +export function addSupplier_management(data) {
  22 + return request({
  23 + url: '/admin/jc/supplier_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改供应商管理
  30 +export function updateSupplier_management(data) {
  31 + return request({
  32 + url: '/admin/jc/supplier_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除供应商管理
  39 +export function delSupplier_management(id) {
  40 + return request({
  41 + url: '/admin/jc/supplier_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询运输管理列表
  4 +export function listTransport_management(query) {
  5 + return request({
  6 + url: '/admin/jc/transport_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询运输管理详细
  13 +export function getTransport_management(id) {
  14 + return request({
  15 + url: '/admin/jc/transport_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增运输管理
  21 +export function addTransport_management(data) {
  22 + return request({
  23 + url: '/admin/jc/transport_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改运输管理
  30 +export function updateTransport_management(data) {
  31 + return request({
  32 + url: '/admin/jc/transport_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除运输管理
  39 +export function delTransport_management(id) {
  40 + return request({
  41 + url: '/admin/jc/transport_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询自定义分组列表
  4 +export function listCustom_groups(query) {
  5 + return request({
  6 + url: '/admin/jdtk/custom_groups/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询自定义分组详细
  13 +export function getCustom_groups(id) {
  14 + return request({
  15 + url: '/admin/jdtk/custom_groups/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增自定义分组
  21 +export function addCustom_groups(data) {
  22 + return request({
  23 + url: '/admin/jdtk/custom_groups',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改自定义分组
  30 +export function updateCustom_groups(data) {
  31 + return request({
  32 + url: '/admin/jdtk/custom_groups',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除自定义分组
  39 +export function delCustom_groups(id) {
  40 + return request({
  41 + url: '/admin/jdtk/custom_groups/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养殖场设置列表
  4 +export function listFarm_settings(query) {
  5 + return request({
  6 + url: '/admin/jdtk/farm_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养殖场设置详细
  13 +export function getFarm_settings(id) {
  14 + return request({
  15 + url: '/admin/jdtk/farm_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养殖场设置
  21 +export function addFarm_settings(data) {
  22 + return request({
  23 + url: '/admin/jdtk/farm_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养殖场设置
  30 +export function updateFarm_settings(data) {
  31 + return request({
  32 + url: '/admin/jdtk/farm_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养殖场设置
  39 +export function delFarm_settings(id) {
  40 + return request({
  41 + url: '/admin/jdtk/farm_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询分组与塘口的关联列表
  4 +export function listGroup_ponds(query) {
  5 + return request({
  6 + url: '/admin/jdtk/group_ponds/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询分组与塘口的关联详细
  13 +export function getGroup_ponds(groupId) {
  14 + return request({
  15 + url: '/admin/jdtk/group_ponds/' + groupId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增分组与塘口的关联
  21 +export function addGroup_ponds(data) {
  22 + return request({
  23 + url: '/admin/jdtk/group_ponds',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改分组与塘口的关联
  30 +export function updateGroup_ponds(data) {
  31 + return request({
  32 + url: '/admin/jdtk/group_ponds',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除分组与塘口的关联
  39 +export function delGroup_ponds(groupId) {
  40 + return request({
  41 + url: '/admin/jdtk/group_ponds/' + groupId,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询塘口设置列表
  4 +export function listPond_settings(query) {
  5 + return request({
  6 + url: '/admin/jdtk/pond_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询塘口设置详细
  13 +export function getPond_settings(id) {
  14 + return request({
  15 + url: '/admin/jdtk/pond_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增塘口设置
  21 +export function addPond_settings(data) {
  22 + return request({
  23 + url: '/admin/jdtk/pond_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改塘口设置
  30 +export function updatePond_settings(data) {
  31 + return request({
  32 + url: '/admin/jdtk/pond_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除塘口设置
  39 +export function delPond_settings(id) {
  40 + return request({
  41 + url: '/admin/jdtk/pond_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询成品加工入库列表
  4 +export function listFinished_goods_processing(query) {
  5 + return request({
  6 + url: '/admin/jg/finished_goods_processing/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询成品加工入库详细
  13 +export function getFinished_goods_processing(id) {
  14 + return request({
  15 + url: '/admin/jg/finished_goods_processing/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增成品加工入库
  21 +export function addFinished_goods_processing(data) {
  22 + return request({
  23 + url: '/admin/jg/finished_goods_processing',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改成品加工入库
  30 +export function updateFinished_goods_processing(data) {
  31 + return request({
  32 + url: '/admin/jg/finished_goods_processing',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除成品加工入库
  39 +export function delFinished_goods_processing(id) {
  40 + return request({
  41 + url: '/admin/jg/finished_goods_processing/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询库存盘点列表
  4 +export function listInventory_check(query) {
  5 + return request({
  6 + url: '/admin/jg/inventory_check/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询库存盘点详细
  13 +export function getInventory_check(id) {
  14 + return request({
  15 + url: '/admin/jg/inventory_check/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增库存盘点
  21 +export function addInventory_check(data) {
  22 + return request({
  23 + url: '/admin/jg/inventory_check',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改库存盘点
  30 +export function updateInventory_check(data) {
  31 + return request({
  32 + url: '/admin/jg/inventory_check',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除库存盘点
  39 +export function delInventory_check(id) {
  40 + return request({
  41 + url: '/admin/jg/inventory_check/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询加工品销售列表
  4 +export function listProcessed_goods_sales(query) {
  5 + return request({
  6 + url: '/admin/jg/processed_goods_sales/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询加工品销售详细
  13 +export function getProcessed_goods_sales(id) {
  14 + return request({
  15 + url: '/admin/jg/processed_goods_sales/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增加工品销售
  21 +export function addProcessed_goods_sales(data) {
  22 + return request({
  23 + url: '/admin/jg/processed_goods_sales',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改加工品销售
  30 +export function updateProcessed_goods_sales(data) {
  31 + return request({
  32 + url: '/admin/jg/processed_goods_sales',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除加工品销售
  39 +export function delProcessed_goods_sales(id) {
  40 + return request({
  41 + url: '/admin/jg/processed_goods_sales/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询加工厂信息列表
  4 +export function listProcessing_plant_info(query) {
  5 + return request({
  6 + url: '/admin/jg/processing_plant_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询加工厂信息详细
  13 +export function getProcessing_plant_info(id) {
  14 + return request({
  15 + url: '/admin/jg/processing_plant_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增加工厂信息
  21 +export function addProcessing_plant_info(data) {
  22 + return request({
  23 + url: '/admin/jg/processing_plant_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改加工厂信息
  30 +export function updateProcessing_plant_info(data) {
  31 + return request({
  32 + url: '/admin/jg/processing_plant_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除加工厂信息
  39 +export function delProcessing_plant_info(id) {
  40 + return request({
  41 + url: '/admin/jg/processing_plant_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询商品期初设置列表
  4 +export function listProduct_beginning_settings(query) {
  5 + return request({
  6 + url: '/admin/jg/product_beginning_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询商品期初设置详细
  13 +export function getProduct_beginning_settings(id) {
  14 + return request({
  15 + url: '/admin/jg/product_beginning_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增商品期初设置
  21 +export function addProduct_beginning_settings(data) {
  22 + return request({
  23 + url: '/admin/jg/product_beginning_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改商品期初设置
  30 +export function updateProduct_beginning_settings(data) {
  31 + return request({
  32 + url: '/admin/jg/product_beginning_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除商品期初设置
  39 +export function delProduct_beginning_settings(id) {
  40 + return request({
  41 + url: '/admin/jg/product_beginning_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询商品信息列表
  4 +export function listProduct_info(query) {
  5 + return request({
  6 + url: '/admin/jg/product_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询商品信息详细
  13 +export function getProduct_info(id) {
  14 + return request({
  15 + url: '/admin/jg/product_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增商品信息
  21 +export function addProduct_info(data) {
  22 + return request({
  23 + url: '/admin/jg/product_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改商品信息
  30 +export function updateProduct_info(data) {
  31 + return request({
  32 + url: '/admin/jg/product_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除商品信息
  39 +export function delProduct_info(id) {
  40 + return request({
  41 + url: '/admin/jg/product_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询原材料购进列表
  4 +export function listRaw_material_purchase(query) {
  5 + return request({
  6 + url: '/admin/jg/raw_material_purchase/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询原材料购进详细
  13 +export function getRaw_material_purchase(id) {
  14 + return request({
  15 + url: '/admin/jg/raw_material_purchase/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增原材料购进
  21 +export function addRaw_material_purchase(data) {
  22 + return request({
  23 + url: '/admin/jg/raw_material_purchase',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改原材料购进
  30 +export function updateRaw_material_purchase(data) {
  31 + return request({
  32 + url: '/admin/jg/raw_material_purchase',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除原材料购进
  39 +export function delRaw_material_purchase(id) {
  40 + return request({
  41 + url: '/admin/jg/raw_material_purchase/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询部门设置列表
  4 +export function listDepartment_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/department_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询部门设置详细
  13 +export function getDepartment_settings(departmentCode) {
  14 + return request({
  15 + url: '/admin/jgyh/department_settings/' + departmentCode,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增部门设置
  21 +export function addDepartment_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/department_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改部门设置
  30 +export function updateDepartment_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/department_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除部门设置
  39 +export function delDepartment_settings(departmentCode) {
  40 + return request({
  41 + url: '/admin/jgyh/department_settings/' + departmentCode,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询机构设置列表
  4 +export function listOrganization_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/organization_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询机构设置详细
  13 +export function getOrganization_settings(id) {
  14 + return request({
  15 + url: '/admin/jgyh/organization_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增机构设置
  21 +export function addOrganization_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/organization_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改机构设置
  30 +export function updateOrganization_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/organization_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除机构设置
  39 +export function delOrganization_settings(id) {
  40 + return request({
  41 + url: '/admin/jgyh/organization_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询角色设置列表
  4 +export function listRole_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/role_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询角色设置详细
  13 +export function getRole_settings(id) {
  14 + return request({
  15 + url: '/admin/jgyh/role_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增角色设置
  21 +export function addRole_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/role_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改角色设置
  30 +export function updateRole_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/role_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除角色设置
  39 +export function delRole_settings(id) {
  40 + return request({
  41 + url: '/admin/jgyh/role_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询用户设置列表
  4 +export function listUser_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/user_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询用户设置详细
  13 +export function getUser_settings(id) {
  14 + return request({
  15 + url: '/admin/jgyh/user_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增用户设置
  21 +export function addUser_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/user_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改用户设置
  30 +export function updateUser_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/user_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除用户设置
  39 +export function delUser_settings(id) {
  40 + return request({
  41 + url: '/admin/jgyh/user_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 登录方法
  4 +export function login(username, password, code, uuid) {
  5 + const data = {
  6 + username,
  7 + password,
  8 + code,
  9 + uuid
  10 + }
  11 + return request({
  12 + url: '/login',
  13 + headers: {
  14 + isToken: false,
  15 + repeatSubmit: false
  16 + },
  17 + method: 'post',
  18 + data: data
  19 + })
  20 +}
  21 +
  22 +// 注册方法
  23 +export function register(data) {
  24 + return request({
  25 + url: '/register',
  26 + headers: {
  27 + isToken: false
  28 + },
  29 + method: 'post',
  30 + data: data
  31 + })
  32 +}
  33 +
  34 +// 获取用户详细信息
  35 +export function getInfo() {
  36 + return request({
  37 + url: '/getInfo',
  38 + method: 'get'
  39 + })
  40 +}
  41 +
  42 +// 退出方法
  43 +export function logout() {
  44 + return request({
  45 + url: '/logout',
  46 + method: 'post'
  47 + })
  48 +}
  49 +
  50 +// 获取验证码
  51 +export function getCodeImg() {
  52 + return request({
  53 + url: '/captchaImage',
  54 + headers: {
  55 + isToken: false
  56 + },
  57 + method: 'get',
  58 + timeout: 20000
  59 + })
  60 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 获取路由
  4 +export const getRouters = () => {
  5 + return request({
  6 + url: '/getRouters',
  7 + method: 'get'
  8 + })
  9 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询缓存详细
  4 +export function getCache() {
  5 + return request({
  6 + url: '/monitor/cache',
  7 + method: 'get'
  8 + })
  9 +}
  10 +
  11 +// 查询缓存名称列表
  12 +export function listCacheName() {
  13 + return request({
  14 + url: '/monitor/cache/getNames',
  15 + method: 'get'
  16 + })
  17 +}
  18 +
  19 +// 查询缓存键名列表
  20 +export function listCacheKey(cacheName) {
  21 + return request({
  22 + url: '/monitor/cache/getKeys/' + cacheName,
  23 + method: 'get'
  24 + })
  25 +}
  26 +
  27 +// 查询缓存内容
  28 +export function getCacheValue(cacheName, cacheKey) {
  29 + return request({
  30 + url: '/monitor/cache/getValue/' + cacheName + '/' + cacheKey,
  31 + method: 'get'
  32 + })
  33 +}
  34 +
  35 +// 清理指定名称缓存
  36 +export function clearCacheName(cacheName) {
  37 + return request({
  38 + url: '/monitor/cache/clearCacheName/' + cacheName,
  39 + method: 'delete'
  40 + })
  41 +}
  42 +
  43 +// 清理指定键名缓存
  44 +export function clearCacheKey(cacheKey) {
  45 + return request({
  46 + url: '/monitor/cache/clearCacheKey/' + cacheKey,
  47 + method: 'delete'
  48 + })
  49 +}
  50 +
  51 +// 清理全部缓存
  52 +export function clearCacheAll() {
  53 + return request({
  54 + url: '/monitor/cache/clearCacheAll',
  55 + method: 'delete'
  56 + })
  57 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询定时任务调度列表
  4 +export function listJob(query) {
  5 + return request({
  6 + url: '/monitor/job/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询定时任务调度详细
  13 +export function getJob(jobId) {
  14 + return request({
  15 + url: '/monitor/job/' + jobId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增定时任务调度
  21 +export function addJob(data) {
  22 + return request({
  23 + url: '/monitor/job',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改定时任务调度
  30 +export function updateJob(data) {
  31 + return request({
  32 + url: '/monitor/job',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除定时任务调度
  39 +export function delJob(jobId) {
  40 + return request({
  41 + url: '/monitor/job/' + jobId,
  42 + method: 'delete'
  43 + })
  44 +}
  45 +
  46 +// 任务状态修改
  47 +export function changeJobStatus(jobId, status) {
  48 + const data = {
  49 + jobId,
  50 + status
  51 + }
  52 + return request({
  53 + url: '/monitor/job/changeStatus',
  54 + method: 'put',
  55 + data: data
  56 + })
  57 +}
  58 +
  59 +
  60 +// 定时任务立即执行一次
  61 +export function runJob(jobId, jobGroup) {
  62 + const data = {
  63 + jobId,
  64 + jobGroup
  65 + }
  66 + return request({
  67 + url: '/monitor/job/run',
  68 + method: 'put',
  69 + data: data
  70 + })
  71 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询调度日志列表
  4 +export function listJobLog(query) {
  5 + return request({
  6 + url: '/monitor/jobLog/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 删除调度日志
  13 +export function delJobLog(jobLogId) {
  14 + return request({
  15 + url: '/monitor/jobLog/' + jobLogId,
  16 + method: 'delete'
  17 + })
  18 +}
  19 +
  20 +// 清空调度日志
  21 +export function cleanJobLog() {
  22 + return request({
  23 + url: '/monitor/jobLog/clean',
  24 + method: 'delete'
  25 + })
  26 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询登录日志列表
  4 +export function list(query) {
  5 + return request({
  6 + url: '/monitor/logininfor/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 删除登录日志
  13 +export function delLogininfor(infoId) {
  14 + return request({
  15 + url: '/monitor/logininfor/' + infoId,
  16 + method: 'delete'
  17 + })
  18 +}
  19 +
  20 +// 解锁用户登录状态
  21 +export function unlockLogininfor(userName) {
  22 + return request({
  23 + url: '/monitor/logininfor/unlock/' + userName,
  24 + method: 'get'
  25 + })
  26 +}
  27 +
  28 +// 清空登录日志
  29 +export function cleanLogininfor() {
  30 + return request({
  31 + url: '/monitor/logininfor/clean',
  32 + method: 'delete'
  33 + })
  34 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询在线用户列表
  4 +export function list(query) {
  5 + return request({
  6 + url: '/monitor/online/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 强退用户
  13 +export function forceLogout(tokenId) {
  14 + return request({
  15 + url: '/monitor/online/' + tokenId,
  16 + method: 'delete'
  17 + })
  18 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询操作日志列表
  4 +export function list(query) {
  5 + return request({
  6 + url: '/monitor/operlog/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 删除操作日志
  13 +export function delOperlog(operId) {
  14 + return request({
  15 + url: '/monitor/operlog/' + operId,
  16 + method: 'delete'
  17 + })
  18 +}
  19 +
  20 +// 清空操作日志
  21 +export function cleanOperlog() {
  22 + return request({
  23 + url: '/monitor/operlog/clean',
  24 + method: 'delete'
  25 + })
  26 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 获取服务信息
  4 +export function getServer() {
  5 + return request({
  6 + url: '/monitor/server',
  7 + method: 'get'
  8 + })
  9 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询Binmass列表
  4 +export function listBinmass(query) {
  5 + return request({
  6 + url: '/admin/other/binmass/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询Binmass详细
  13 +export function getBinmass(id) {
  14 + return request({
  15 + url: '/admin/other/binmass/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增Binmass
  21 +export function addBinmass(data) {
  22 + return request({
  23 + url: '/admin/other/binmass',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改Binmass
  30 +export function updateBinmass(data) {
  31 + return request({
  32 + url: '/admin/other/binmass',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除Binmass
  39 +export function delBinmass(id) {
  40 + return request({
  41 + url: '/admin/other/binmass/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询Complete FCR列表
  4 +export function listComplete_fcr(query) {
  5 + return request({
  6 + url: '/admin/other/complete_fcr/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询Complete FCR详细
  13 +export function getComplete_fcr(id) {
  14 + return request({
  15 + url: '/admin/other/complete_fcr/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增Complete FCR
  21 +export function addComplete_fcr(data) {
  22 + return request({
  23 + url: '/admin/other/complete_fcr',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改Complete FCR
  30 +export function updateComplete_fcr(data) {
  31 + return request({
  32 + url: '/admin/other/complete_fcr',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除Complete FCR
  39 +export function delComplete_fcr(id) {
  40 + return request({
  41 + url: '/admin/other/complete_fcr/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询检测数据列表
  4 +export function listDetection_data(query) {
  5 + return request({
  6 + url: '/admin/rc/detection_data/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询检测数据详细
  13 +export function getDetection_data(id) {
  14 + return request({
  15 + url: '/admin/rc/detection_data/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增检测数据
  21 +export function addDetection_data(data) {
  22 + return request({
  23 + url: '/admin/rc/detection_data',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改检测数据
  30 +export function updateDetection_data(data) {
  31 + return request({
  32 + url: '/admin/rc/detection_data',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除检测数据
  39 +export function delDetection_data(id) {
  40 + return request({
  41 + url: '/admin/rc/detection_data/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询巡查日志列表
  4 +export function listInspection_logs(query) {
  5 + return request({
  6 + url: '/admin/rc/inspection_logs/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询巡查日志详细
  13 +export function getInspection_logs(id) {
  14 + return request({
  15 + url: '/admin/rc/inspection_logs/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增巡查日志
  21 +export function addInspection_logs(data) {
  22 + return request({
  23 + url: '/admin/rc/inspection_logs',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改巡查日志
  30 +export function updateInspection_logs(data) {
  31 + return request({
  32 + url: '/admin/rc/inspection_logs',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除巡查日志
  39 +export function delInspection_logs(id) {
  40 + return request({
  41 + url: '/admin/rc/inspection_logs/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询换水记录列表
  4 +export function listWater_exchange_records(query) {
  5 + return request({
  6 + url: '/admin/rc/water_exchange_records/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询换水记录详细
  13 +export function getWater_exchange_records(id) {
  14 + return request({
  15 + url: '/admin/rc/water_exchange_records/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增换水记录
  21 +export function addWater_exchange_records(data) {
  22 + return request({
  23 + url: '/admin/rc/water_exchange_records',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改换水记录
  30 +export function updateWater_exchange_records(data) {
  31 + return request({
  32 + url: '/admin/rc/water_exchange_records',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除换水记录
  39 +export function delWater_exchange_records(id) {
  40 + return request({
  41 + url: '/admin/rc/water_exchange_records/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询移箱操作审批列表
  4 +export function listBox_transfer_approval(query) {
  5 + return request({
  6 + url: '/admin/sc/box_transfer_approval/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询移箱操作审批详细
  13 +export function getBox_transfer_approval(id) {
  14 + return request({
  15 + url: '/admin/sc/box_transfer_approval/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增移箱操作审批
  21 +export function addBox_transfer_approval(data) {
  22 + return request({
  23 + url: '/admin/sc/box_transfer_approval',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改移箱操作审批
  30 +export function updateBox_transfer_approval(data) {
  31 + return request({
  32 + url: '/admin/sc/box_transfer_approval',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除移箱操作审批
  39 +export function delBox_transfer_approval(id) {
  40 + return request({
  41 + url: '/admin/sc/box_transfer_approval/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询检测管理列表
  4 +export function listInspection_management(query) {
  5 + return request({
  6 + url: '/admin/sc/inspection_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询检测管理详细
  13 +export function getInspection_management(id) {
  14 + return request({
  15 + url: '/admin/sc/inspection_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增检测管理
  21 +export function addInspection_management(data) {
  22 + return request({
  23 + url: '/admin/sc/inspection_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改检测管理
  30 +export function updateInspection_management(data) {
  31 + return request({
  32 + url: '/admin/sc/inspection_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除检测管理
  39 +export function delInspection_management(id) {
  40 + return request({
  41 + url: '/admin/sc/inspection_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}