diff --git a/pages/process/order-check/index.js b/pages/process/order-check/index.js index c42638c..89e18cc 100644 --- a/pages/process/order-check/index.js +++ b/pages/process/order-check/index.js @@ -11,7 +11,6 @@ Scene({ */ data: { safeBottom: app.globalData.safeBottom, - paperList: null, form: null, paperList: [], focus: 0, diff --git a/pages/process/outside-check-item/index.wxml b/pages/process/outside-check-item/index.wxml index afca80a..b838065 100644 --- a/pages/process/outside-check-item/index.wxml +++ b/pages/process/outside-check-item/index.wxml @@ -78,4 +78,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/pages/setting/paper-select/index.wxss b/pages/setting/paper-select/index.wxss index e69de29..dfbcd25 100644 --- a/pages/setting/paper-select/index.wxss +++ b/pages/setting/paper-select/index.wxss @@ -0,0 +1,45 @@ + +.van-picker__toolbar { + display: -webkit-flex; + display: flex; + -webkit-justify-content: space-between; + justify-content: space-between; + height: 44px; + height: var(--picker-toolbar-height, 44px); + line-height: 44px; + line-height: var(--picker-toolbar-height, 44px) +} + +.van-picker__confirm { + padding: 0 24rpx; + padding: var(--picker-action-padding, 0 24rpx); + font-size: 14px; + font-size: var(--picker-action-font-size, 14px); + color: #1989fa; + color: var(--picker-action-text-color, #1989fa) +} + +.van-picker__cancel { + padding: 0 16px; + width: 96rpx; + padding: var(--picker-action-padding, 0 16px); + font-size: 14px; + font-size: var(--picker-action-font-size, 14px); + color: #666666; + color: var(--picker-action-text-color, #666666) +} + +.van-picker__cancel--hover, +.van-picker__confirm--hover { + background-color: #f2f3f5; + background-color: var(--picker-action-active-color, #f2f3f5) +} + +.van-picker__title { + max-width: 50%; + text-align: center; + font-weight: 500; + font-weight: var(--font-weight-bold, 500); + font-size: 16px; + font-size: var(--picker-option-font-size, 16px) +}