1
This commit is contained in:
parent
695f0bf8e2
commit
b223bede02
@ -1,12 +1,12 @@
|
|||||||
// 应用全局配置
|
// 应用全局配置
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// baseUrl: 'https://www.nuoyunr.com',
|
baseUrl: 'https://www.nuoyunr.com',
|
||||||
// baseUrl: 'http://192.168.1.17:48080',
|
// baseUrl: 'http://192.168.1.17:48080',
|
||||||
// baseUrl: "http://192.168.1.4:48080",
|
// baseUrl: "http://192.168.1.4:48080",
|
||||||
baseUrl: "http://localhost:48080",
|
// baseUrl: "http://localhost:48080",
|
||||||
imagesUrl: 'http://shequ.0315e.com/static/images/pages/',
|
imagesUrl: 'http://shequ.0315e.com/static/images/pages/',
|
||||||
baseImageUrl: 'https://www.nuoyunr.com/minio/',
|
baseImageUrl: 'https://www.nuoyunr.com/minio/',
|
||||||
wsUrl: 'wss://www.nuoyunr.com',
|
wsUrl: 'ws://192.168.1.17:48080',
|
||||||
// 应用信息
|
// 应用信息
|
||||||
appInfo: {
|
appInfo: {
|
||||||
// 应用名称
|
// 应用名称
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -32,7 +32,7 @@
|
|||||||
v-for="(item,index) in options" :key="index" :style="{height: direction === 'column'?heightArr[index]+'px':'14px'}">
|
v-for="(item,index) in options" :key="index" :style="{height: direction === 'column'?heightArr[index]+'px':'14px'}">
|
||||||
<view
|
<view
|
||||||
:class="[direction==='column'?'uni-steps__column-line':'uni-steps__row-line',direction==='column'?'uni-steps__column-line--before':'uni-steps__row-line--before']"
|
:class="[direction==='column'?'uni-steps__column-line':'uni-steps__row-line',direction==='column'?'uni-steps__column-line--before':'uni-steps__row-line--before']"
|
||||||
:style="{backgroundColor:index<=active&&index!==0?activeColor:index===0?'transparent':deactiveColor}">
|
>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view :class="[direction==='column'?'uni-steps__column-check':'uni-steps__row-check']"-->
|
<!-- <view :class="[direction==='column'?'uni-steps__column-check':'uni-steps__row-check']"-->
|
||||||
<!-- v-if="index === active">-->
|
<!-- v-if="index === active">-->
|
||||||
@ -200,7 +200,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__column-text {
|
.uni-steps__column-text {
|
||||||
padding: 6px 0px;
|
padding: 10px 0 2px 0;
|
||||||
border-bottom-style: solid;
|
border-bottom-style: solid;
|
||||||
border-bottom-width: 1px;
|
border-bottom-width: 1px;
|
||||||
border-bottom-color: $uni-border-color;
|
border-bottom-color: $uni-border-color;
|
||||||
@ -217,9 +217,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__column-title {
|
.uni-steps__column-title {
|
||||||
font-size: 28rpx;
|
font-weight: 500;
|
||||||
text-align: left;
|
font-size: 32rpx;
|
||||||
line-height: 32rpx;
|
line-height: 40rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__row-desc {
|
.uni-steps__row-desc {
|
||||||
@ -229,9 +229,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__column-desc {
|
.uni-steps__column-desc {
|
||||||
font-size: 25rpx;
|
font-size: 30rpx;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
line-height: 32rpx;
|
line-height: 32rpx;
|
||||||
|
padding: 10rpx 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__row-container {
|
.uni-steps__row-container {
|
||||||
@ -278,7 +280,7 @@
|
|||||||
|
|
||||||
.uni-steps__column-line {
|
.uni-steps__column-line {
|
||||||
width: 1px;
|
width: 1px;
|
||||||
background-color: #B7BDC6;
|
//background-color: #B7BDC6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__row-line--after {
|
.uni-steps__row-line--after {
|
||||||
@ -300,20 +302,29 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__row-circle {
|
.uni-steps__row-circle {
|
||||||
width: 20px;
|
width: 40rpx;
|
||||||
height: 20px;
|
height: 40rpx;
|
||||||
|
text-align: center;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background-color: #B7BDC6;
|
background-color: #B7BDC6;
|
||||||
margin: 0px 3px;
|
margin: 0px 3px;
|
||||||
|
display: inline-block;
|
||||||
|
line-height: 40rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__column-circle {
|
.uni-steps__column-circle {
|
||||||
width: 20px;
|
width: 40rpx;
|
||||||
height: 20px;
|
height: 40rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background-color: #B7BDC6;
|
background-color: #B7BDC6;
|
||||||
margin: 4px 0px 5px 0px;
|
margin: 4px 0px 5px 0px;
|
||||||
|
display: inline-block;
|
||||||
|
line-height: 40rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uni-steps__row-check {
|
.uni-steps__row-check {
|
||||||
|
@ -37,19 +37,25 @@ function getOrderStatusText(ticketsStatus,workStatus){
|
|||||||
let str = "";
|
let str = "";
|
||||||
if("04"==ticketsStatus){
|
if("04"==ticketsStatus){
|
||||||
//待派工
|
//待派工
|
||||||
str = "待派工"
|
str = "待维修"
|
||||||
}else if("05"==ticketsStatus || "07"==ticketsStatus){
|
}else if("05"==ticketsStatus){
|
||||||
//维修中
|
//维修中
|
||||||
str = "维修中"
|
str = "维修中"
|
||||||
}else if("01"==ticketsStatus){
|
}else if("01"==ticketsStatus){
|
||||||
//待结算
|
//待取车结算
|
||||||
str = "待取车结算"
|
str = "已竣工"
|
||||||
}else if("06"==ticketsStatus){
|
}else if("06"==ticketsStatus){
|
||||||
//挂单/记账
|
//挂单/记账
|
||||||
str = "挂单/记账"
|
str = "已结算"
|
||||||
|
}else if("07"==ticketsStatus){
|
||||||
|
//待通知客户取车
|
||||||
|
str = "已竣工"
|
||||||
|
}else if("08"==ticketsStatus){
|
||||||
|
//已交车
|
||||||
|
str = "已交车"
|
||||||
}else if("02"==ticketsStatus){
|
}else if("02"==ticketsStatus){
|
||||||
//已结账
|
//已结账
|
||||||
str = "已结账"
|
str = "已结算"
|
||||||
}else if("03"==ticketsStatus){
|
}else if("03"==ticketsStatus){
|
||||||
//已作废
|
//已作废
|
||||||
str = "已作废"
|
str = "已作废"
|
||||||
|
Loading…
Reference in New Issue
Block a user