123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "@/uni_modules/uview-ui/index.scss";
-
- </style>
- <script>
-
- import './config/.env.js'
- //import './assets/js/font.js'
- export default {
- onLaunch: function() {
- console.log('App Launch')
-
- },
-
- onShow: function() {
-
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
-
- .scanpopo{
- // 出库单列表
- .scanlist {
-
-
- // 清单信息
- .scan-list-infos {
- border-radius: 8px;
- background-color: #F5F6F9;
- margin-top: 24rpx;
- padding: 24rpx;
-
- .scan-infos-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 14rpx;
-
- .name {
- color: rgba(51, 51, 51, 1);
- font-size: 32rpx;
- }
-
- .state {
- color: rgba(0, 81, 255, 1);
- }
- }
-
- .scan-infos {
- margin-top: 16rpx;
- display: flex;
- color: #777777;
- font-size: 24rpx;
-
- .infos-1 {
- margin-right: 68rpx;
- }
-
- .infos-item {
- display: flex;
- margin-bottom: 8rpx;
- .item-value{
- max-width: 200rpx;
- }
- }
-
- }
- }
- }
-
- .scantitle{
- text-align: center;
- font-size: 44rpx;
- padding-top: 20px;
- }
- }
-
- /*每个页面公共css */
- html, body {
- background-color:#F4F4F6;
- margin: 0;
- padding: 0;
- font-family: 'PingFang Regular';
- /* font-weight: bold; */
-
- }
- ::v-deep .u-divider{
- color: rgba(182, 189, 195, 1);
- font-size: 24rpx;
- }
- /* tabs标签 */
- ::v-deep .u-tab-item{
- font-weight: normal !important;
- }
- .uni-icon-success-no-circle:before {
- content: "" !important ;
- display: none;
- }
- .uni-toast .uni-toast__content{
- margin: -10px 1px 10px 1px;
- }
- .uni-modal .uni-modal__btn{
- flex: 1;
- height: 43px;
- line-height: 43px !important;;
- font-size: 13px !important;
- box-sizing: border-box;
- cursor: pointer;
- text-align: center;
- border-radius: 1px;
- }
- ::v-deep .u-title{
-
- font-size:36rpx !important;
- color: rgba(51, 51, 51, 1) !important;
- }
- ::v-deep .uicon-nav-back {
- color: #101010 !important;
- }
- @media screen and (min-width: 320px) {
- ::v-deep .u-tabbar__content {
- height: 45px!important;
- }
- }
- @media screen and (min-width: 375px) {
- ::v-deep .u-tabbar__content {
- height: 55px!important;
- }
- }
- @media screen and (min-width: 425px) {
- ::v-deep .u-tabbar__content {
- height: 65px!important;
- }
- }
- .u-back-text{
- color: #101010 !important;
- font-size: 17px !important
- }
- </style>
|