diff --git a/package.json b/package.json index 7b307ae..4941034 100644 --- a/package.json +++ b/package.json @@ -53,6 +53,7 @@ "quill": "2.0.2", "screenfull": "5.0.2", "sortablejs": "1.10.2", + "vant": "^2.13.2", "vue": "2.6.12", "vue-count-to": "1.0.13", "vue-cropper": "0.5.5", diff --git a/public/index.html b/public/index.html index 5dc01ff..d198761 100644 --- a/public/index.html +++ b/public/index.html @@ -118,7 +118,7 @@ top: 0; width: 51%; height: 100%; - background: #6F2023; + background: #409EFF; z-index: 1000; -webkit-transform: translateX(0); -ms-transform: translateX(0); diff --git a/src/api/yh/reportUserProd.js b/src/api/yh/reportUserProd.js new file mode 100644 index 0000000..2a524ab --- /dev/null +++ b/src/api/yh/reportUserProd.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询员工产量列表 +export function listReportUserProd(query) { + return request({ + url: '/yh/reportUserProd/list', + method: 'get', + params: query + }) +} + +// 查询员工产量详细 +export function getReportUserProd(id) { + return request({ + url: '/yh/reportUserProd/' + id, + method: 'get' + }) +} + +// 新增员工产量 +export function addReportUserProd(data) { + return request({ + url: '/yh/reportUserProd', + method: 'post', + data: data + }) +} + +// 修改员工产量 +export function updateReportUserProd(data) { + return request({ + url: '/yh/reportUserProd', + method: 'put', + data: data + }) +} + +// 删除员工产量 +export function delReportUserProd(id) { + return request({ + url: '/yh/reportUserProd/' + id, + method: 'delete' + }) +} diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 94c9ae4..9fb8714 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -181,7 +181,7 @@ aside { } } .edit-title { - border-left:3px solid #6F2023; + border-left:3px solid #409EFF; padding: 0 0.5em; margin: 1em 0; } @@ -234,3 +234,23 @@ aside { height:32px; } } + +.card-header { + display: flex; + justify-content: space-between; + align-items: center; + + .card-operator { + display: flex; + justify-content: flex-end; + // 卡片上的按钮 + .card-btn { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + } +} + +.fixed { + position: fixed; +} diff --git a/src/assets/styles/ipad.scss b/src/assets/styles/ipad.scss new file mode 100644 index 0000000..a86a6f6 --- /dev/null +++ b/src/assets/styles/ipad.scss @@ -0,0 +1,27 @@ +.ipad-container { + position: relative; + padding-top: 64px; + height: calc(100vh - 86px); + display: flex; + flex-direction: column; + .top-bar { + position: absolute; + top: 0; + left: 0; + width: 100%; + padding: 20px 20px 0; + } + .content { + flex: 1; + width: 100%; + overflow-y: auto; + overflow-x: hidden; + padding: 8px 20px; + } +} + +.form-container { + padding: 20px; + background-color: #f9f9f9; + min-height: calc(100vh - 180px); +} diff --git a/src/assets/styles/ruoyi.scss b/src/assets/styles/ruoyi.scss index 4e29874..9f4eca3 100644 --- a/src/assets/styles/ruoyi.scss +++ b/src/assets/styles/ruoyi.scss @@ -201,8 +201,6 @@ } .card-box { - padding-right: 15px; - padding-left: 15px; margin-bottom: 10px; } diff --git a/src/components/DictTag/index.vue b/src/components/DictTag/index.vue index 6b5b230..15ea8bc 100644 --- a/src/components/DictTag/index.vue +++ b/src/components/DictTag/index.vue @@ -16,6 +16,7 @@ :index="index" :type="item.raw.listClass == 'primary' ? '' : item.raw.listClass" :class="item.raw.cssClass" + :size="size" > {{ item.label + ' ' }} @@ -44,6 +45,10 @@ export default { separator: { type: String, default: "," + }, + size: { + type: String, + default: null } }, data() { diff --git a/src/components/HoverShow/index.vue b/src/components/HoverShow/index.vue new file mode 100644 index 0000000..97d30f0 --- /dev/null +++ b/src/components/HoverShow/index.vue @@ -0,0 +1,56 @@ + + + + + diff --git a/src/components/ImportDialog/index.vue b/src/components/ImportDialog/index.vue new file mode 100644 index 0000000..9318418 --- /dev/null +++ b/src/components/ImportDialog/index.vue @@ -0,0 +1 @@ +< diff --git a/src/main.js b/src/main.js index ba2007c..dfae22d 100644 --- a/src/main.js +++ b/src/main.js @@ -6,6 +6,7 @@ import Element from 'element-ui' import './assets/styles/element-variables.scss' import '@/assets/styles/index.scss' // global css +import '@/assets/styles/ipad.scss' // ipad global css import '@/assets/styles/ruoyi.scss' // ruoyi css import App from './App' import store from './store' diff --git a/src/router/index.js b/src/router/index.js index c65a194..93a961f 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -81,13 +81,13 @@ export const constantRoutes = [ children: [ { path: 'report/add', - component: () => import('@/views/yh/report/edit.vue'), + component: () => import('@/views/yh/report/edit/edit.vue'), name: 'ReportEdit', meta: { title: '新增报表', noCache: false} }, { path: 'report/:reportId/update', - component: () => import('@/views/yh/report/edit.vue'), + component: () => import('@/views/yh/report/edit/edit.vue'), name: 'ReportEdit', meta: { title: '编辑报表', noCache: false} }, @@ -107,19 +107,6 @@ export const constantRoutes = [ } ] }, - { - path: '/util', - component: Layout, - redirect: 'noredirect', - children: [ - { - path: 'k3', - component: () => import('@/views/tool/k3/index.vue'), - name: 'K3', - meta: { title: '金蝶工具', icon: 'tool' } - } - ] - } ] // 动态路由,基于用户权限动态去加载 diff --git a/src/store/modules/settings.js b/src/store/modules/settings.js index be790d7..2455a1e 100644 --- a/src/store/modules/settings.js +++ b/src/store/modules/settings.js @@ -5,7 +5,7 @@ const { sideTheme, showSettings, topNav, tagsView, fixedHeader, sidebarLogo, dyn const storageSetting = JSON.parse(localStorage.getItem('layout-setting')) || '' const state = { title: '', - theme: storageSetting.theme || '#6F2023', + theme: storageSetting.theme || '#409EFF', sideTheme: storageSetting.sideTheme || sideTheme, showSettings: showSettings, topNav: storageSetting.topNav === undefined ? topNav : storageSetting.topNav, diff --git a/src/utils/money.js b/src/utils/money.js new file mode 100644 index 0000000..b48eed7 --- /dev/null +++ b/src/utils/money.js @@ -0,0 +1,9 @@ +import {notNullDecimal} from "@/utils/index"; + +// 计算总价 +export function calcMulDecimal(a, b) { + if (a == null || b == null) { + return 0; + } + return notNullDecimal(a).mul(notNullDecimal(b)).toNumber(); +} diff --git a/src/views/login.vue b/src/views/login.vue index 988e892..ccbb2f6 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -1,7 +1,7 @@ + diff --git a/src/views/yh/price/index.vue b/src/views/yh/price/index.vue index 41d1d51..759ae0c 100644 --- a/src/views/yh/price/index.vue +++ b/src/views/yh/price/index.vue @@ -255,10 +255,10 @@ - + - + diff --git a/src/views/yh/report/edit/components/ReportProductEdit.vue b/src/views/yh/report/edit/components/ReportProductEdit.vue new file mode 100644 index 0000000..6afcd42 --- /dev/null +++ b/src/views/yh/report/edit/components/ReportProductEdit.vue @@ -0,0 +1,369 @@ + + + + + diff --git a/src/views/yh/report/components/ReportProductEdit.vue b/src/views/yh/report/edit/components/ReportProductEditCard.vue similarity index 52% rename from src/views/yh/report/components/ReportProductEdit.vue rename to src/views/yh/report/edit/components/ReportProductEditCard.vue index 41c13e4..995e37f 100644 --- a/src/views/yh/report/components/ReportProductEdit.vue +++ b/src/views/yh/report/edit/components/ReportProductEditCard.vue @@ -1,165 +1,66 @@