diff --git a/public/favicon.png b/public/favicon.png index ecd70ca1..562f6dcb 100644 Binary files a/public/favicon.png and b/public/favicon.png differ diff --git a/public/img/bg/img-logo.png b/public/img/bg/img-logo.png index 9a6b2a47..ae65ba16 100644 Binary files a/public/img/bg/img-logo.png and b/public/img/bg/img-logo.png differ diff --git a/public/img/bg/logo.png b/public/img/bg/logo.png index b3e40cc8..ae65ba16 100644 Binary files a/public/img/bg/logo.png and b/public/img/bg/logo.png differ diff --git a/public/img/indexbg.png b/public/img/indexbg.png new file mode 100644 index 00000000..0638cc49 Binary files /dev/null and b/public/img/indexbg.png differ diff --git a/public/img/logo.png b/public/img/logo.png index b3e40cc8..ae65ba16 100644 Binary files a/public/img/logo.png and b/public/img/logo.png differ diff --git a/public/img/p-logo.png b/public/img/p-logo.png new file mode 100644 index 00000000..b4da7bc1 Binary files /dev/null and b/public/img/p-logo.png differ diff --git a/src/api/distribution/distributionParcelNumber.js b/src/api/distribution/distributionParcelNumber.js new file mode 100644 index 00000000..8cc777ec --- /dev/null +++ b/src/api/distribution/distributionParcelNumber.js @@ -0,0 +1,50 @@ +import request from '@/axios'; + +export const getList = (current, size, params) => { + return request({ + url: '/api/logpm-distribution/distributionParcelNumber/list', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} + +export const getDetail = (id) => { + return request({ + url: '/api/logpm-distribution/distributionParcelNumber/detail', + method: 'get', + params: { + id + } + }) +} + +export const remove = (ids) => { + return request({ + url: '/api/logpm-distribution/distributionParcelNumber/remove', + method: 'post', + params: { + ids, + } + }) +} + +export const add = (row) => { + return request({ + url: '/api/logpm-distribution/distributionParcelNumber/submit', + method: 'post', + data: row + }) +} + +export const update = (row) => { + return request({ + url: '/api/logpm-distribution/distributionParcelNumber/submit', + method: 'post', + data: row + }) +} + diff --git a/src/api/distribution/distributionReservationZeroPackage.js b/src/api/distribution/distributionReservationZeroPackage.js new file mode 100644 index 00000000..a1161a77 --- /dev/null +++ b/src/api/distribution/distributionReservationZeroPackage.js @@ -0,0 +1,50 @@ +import request from '@/axios'; + +export const getList = (current, size, params) => { + return request({ + url: '/api/logpm-distribution/distributionReservationZeroPackage/list', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} + +export const getDetail = (id) => { + return request({ + url: '/api/logpm-distribution/distributionReservationZeroPackage/detail', + method: 'get', + params: { + id + } + }) +} + +export const remove = (ids) => { + return request({ + url: '/api/logpm-distribution/distributionReservationZeroPackage/remove', + method: 'post', + params: { + ids, + } + }) +} + +export const add = (row) => { + return request({ + url: '/api/logpm-distribution/distributionReservationZeroPackage/submit', + method: 'post', + data: row + }) +} + +export const update = (row) => { + return request({ + url: '/api/logpm-distribution/distributionReservationZeroPackage/submit', + method: 'post', + data: row + }) +} + diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 95b4a372..a3d00a9b 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -91,8 +91,12 @@ v-if="Number(column.type) < 6 && Number(column.type) > 0" >{{ scope.row[column.prop] }} - - + + + + + + + @@ -28,3 +34,15 @@ export default { methods: {}, }; + diff --git a/src/page/login/index.vue b/src/page/login/index.vue index 04e5c6db..28054448 100644 --- a/src/page/login/index.vue +++ b/src/page/login/index.vue @@ -5,25 +5,26 @@ -

{{ $t('login.info') }}

- - + + + + +