diff --git a/src/api/modular/main/TenantConfig.js b/src/api/modular/main/TenantConfig.js index 183e52d..1df3eb5 100644 --- a/src/api/modular/main/TenantConfig.js +++ b/src/api/modular/main/TenantConfig.js @@ -10,6 +10,16 @@ export function DjyTenantConfigPage(parameter) { params: parameter }) } +/** + * 获取用户自定义配置 + */ +export function DjyTenantConfigGet(parameter) { + return axios({ + url: '/DjyTenantConfig/get', + method: 'get', + params: parameter + }) +} /** * 新增 */ @@ -40,78 +50,3 @@ export function DjyTenantConfigDelete(data) { data: data }) } -/** - * 分页查询租户 - */ -export function SysTenantPage(parameter) { - return axios({ - url: '/sysTenant/page', - method: 'get', - params: { - pageNo: 1, - pageSize: 999999, - ...parameter - } - }) -} -/** - * 起始港 - */ -export function GetPortloadlist(parameter) { - return axios({ - url: '/commondb/portloadlist', - method: 'get', - params: parameter - }) -} -/** - * 目的港 (中转) - */ -export function GetPortlist(parameter) { - return axios({ - url: '/commondb/portlist', - method: 'get', - params: parameter - }) -} -/** - * 获取船公司 - * @params CnName - */ -export function GetCarrierlist(parameter) { - return axios({ - url: '/commondb/carrierlist', - method: 'get', - params: parameter - }) -} -/** - * 分页查询用户 - */ -export function SysUserPage(parameter) { - return axios({ - url: '/sysUser/page', - method: 'get', - params: { PageNo: 1, PageSize: 999 } - }) -} -/** - * 获取订舱打印模板列表(带有当前用户打印历史排序) - */ -export function BookingPrintTemplatePage(parameter) { - return axios({ - url: '/BookingPrintTemplate/page', - method: 'get', - params: { PageNo: 1, PageSize: 999 } - }) -} -/** - * 获取订舱打印模板列表(带有当前用户打印历史排序) - */ -export function BookingPrintTemplateGetPrintTemplateList(parameter) { - return axios({ - url: '/BookingPrintTemplate/GetPrintTemplateList', - method: 'get', - params: { PageNo: 1, PageSize: 999 } - }) -} diff --git a/src/views/main/BookingLedger/list/index.vue b/src/views/main/BookingLedger/list/index.vue index 4d815ed..3001aed 100644 --- a/src/views/main/BookingLedger/list/index.vue +++ b/src/views/main/BookingLedger/list/index.vue @@ -414,7 +414,7 @@ v-decorator="['closingdate']" :style="{ width: '100%' }" placeholder="请选择截港时间" - valueFormat="YYYY-MM-DD HH" + valueFormat="YYYY-MM-DD HH:mm:ss" format="YYYY-MM-DD HH" /> @@ -431,7 +431,7 @@ v-decorator="['closedocdate']" :style="{ width: '100%' }" placeholder="请选择截单时间" - valueFormat="YYYY-MM-DD HH" + valueFormat="YYYY-MM-DD HH:mm:ss" format="YYYY-MM-DD HH" /> diff --git a/src/views/main/CommondbPackage/index.vue b/src/views/main/CommondbPackage/index.vue index 1657127..15746c9 100644 --- a/src/views/main/CommondbPackage/index.vue +++ b/src/views/main/CommondbPackage/index.vue @@ -165,6 +165,9 @@ export default { RData = item.name } }) + if (!RData) { + RData = data + } return RData }, FncarrierCode(data) { diff --git a/src/views/main/TenantConfig/index.vue b/src/views/main/TenantConfig/index.vue index 3feccdc..7003b8c 100644 --- a/src/views/main/TenantConfig/index.vue +++ b/src/views/main/TenantConfig/index.vue @@ -1,123 +1,42 @@ -