diff --git a/api/user.js b/api/user.js index d77eb41..cebc9bd 100644 --- a/api/user.js +++ b/api/user.js @@ -3353,4 +3353,76 @@ export function postDownPackageCodes(data, loadingObj = {}, canCancel = false) { loadingObj, canCancel ); +} + +/** 增值服务 -- 详情 */ +export function postADdvalueAppList(data, loadingObj = {}, canCancel = false) { + return request({ + url: `logpm-distribution/app/addvalue/appList`, + method: "get", + data + }, + loadingObj, + canCancel + ); +} + +/** 查询车辆 */ +export function postFindCarListByName(data, loadingObj = {}, canCancel = false) { + return request({ + url: `logpm-trunkline/billlading/findCarListByName`, + method: "post", + data + }, + loadingObj, + canCancel + ); +} + +/** 查询司机 */ +export function postFindDriverListByName(data, loadingObj = {}, canCancel = false) { + return request({ + url: `logpm-trunkline/billlading/findDriverListByName`, + method: "post", + data + }, + loadingObj, + canCancel + ); +} + +/** 查询仓库 */ +export function postFindWarehouseListByName(data, loadingObj = {}, canCancel = false) { + return request({ + url: `logpm-trunkline/carsLoad/findWarehouseListByName`, + method: "post", + data + }, + loadingObj, + canCancel + ); +} + +/** 查询仓库 */ +export function postFindLoadInitData(data, loadingObj = {}, canCancel = false) { + return request({ + url: `logpm-trunkline/carsLoad/findLoadInitData`, + method: "post", + data + }, + loadingObj, + canCancel + ); +} + +/** 新增配载计划 */ +export function postSaveNew(data, loadingObj = {}, canCancel = false) { + return request({ + url: `logpm-trunkline/carsLoad/saveNew`, + method: "post", + data + }, + loadingObj, + canCancel + ); } \ No newline at end of file diff --git a/compoment/BasicContainer/BasicContainer.vue b/compoment/BasicContainer/BasicContainer.vue index 2f6a0a2..497c497 100644 --- a/compoment/BasicContainer/BasicContainer.vue +++ b/compoment/BasicContainer/BasicContainer.vue @@ -82,6 +82,8 @@ let antiShake : any = null // 触底加载 onReachBottom(() => { + if (props.option.haveReachBottom === false) return + // 数据请求完毕, 不再请求 if (props.option.isEnd) { return uni.showToast({ diff --git a/compoment/CheckBox/CheckBox.vue b/compoment/CheckBox/CheckBox.vue index 2729309..9c09e5c 100644 --- a/compoment/CheckBox/CheckBox.vue +++ b/compoment/CheckBox/CheckBox.vue @@ -1,8 +1,12 @@ @@ -46,19 +50,34 @@ width: 40upx; height: 40upx; box-sizing: border-box; - display: flex; - align-items: center; - justify-content: center; color: #8d97a3; border-radius: 5upx; + position: relative; + transition: all 0.3s; - >view { - transform: rotateY(180deg) rotate(-45deg); + &::after { + opacity: 0; + content: ''; + border-bottom: 2px solid; + border-left: 2px solid; + position: absolute; + width: 0; + height: 0; + left: 50%; + transform: translateX(-50%) rotateY(180deg) rotate(-45deg); + width: 30%; + height: 70%; + transition: all 0.3s; } } .active { border-color: var(--subjectColor); color: var(--subjectColor); + + &::after { + opacity: 1; + border-color: var(--subjectColor); + } } \ No newline at end of file diff --git a/compoment/InputNum/InputNum.vue b/compoment/InputNum/InputNum.vue index 11468e4..728ac6e 100644 --- a/compoment/InputNum/InputNum.vue +++ b/compoment/InputNum/InputNum.vue @@ -1,5 +1,6 @@ - \ No newline at end of file diff --git a/compoment/MyDrawer/MyDrawer.vue b/compoment/MyDrawer/MyDrawer.vue new file mode 100644 index 0000000..e7ae05a --- /dev/null +++ b/compoment/MyDrawer/MyDrawer.vue @@ -0,0 +1,245 @@ + + + + + \ No newline at end of file diff --git a/compoment/MyInput/MyInput.vue b/compoment/MyInput/MyInput.vue index 771967c..2930a45 100644 --- a/compoment/MyInput/MyInput.vue +++ b/compoment/MyInput/MyInput.vue @@ -1,5 +1,7 @@