Bladeren bron

删掉多余代码

yxb
DESKTOP-2IO5MST\huting 1 jaar geleden
bovenliggende
commit
79cff27a39

+ 0
- 1
pages/app/sign.vue Bestand weergeven

@@ -363,7 +363,6 @@
}

.scroll-view {
/* flex:1; */
max-height: 70vh;
text-align: left;
}

+ 40
- 35
pages/index/components/flow-path-list.vue Bestand weergeven

@@ -1,15 +1,12 @@
<!-- 办理流程 -->
<template>
<view :class="['as-layout-horizontal', index as any === 0?'active':'', 'logistics-gray']" style="overflow: visible" v-for="(item,index) in options" :key="index">
<view :class="['as-layout-horizontal', index as any === 0?'active':'', 'logistics-gray']" style="overflow: visible"
v-for="(item,index) in options" :key="index">
<view class="logistics-layout">
<view class="logistics-layout-top">
<view class="title">
{{(item as ItemType).title}}
</view>
<!-- <view class="more" v-if="(item as ItemType).right" @click="emit('more')">
<span class="label">详细信息</span>
<image class="arror" :src="`${$imgUrl}common/arror-right-green.png`" mode="aspectFill"></image>
</view> -->
</view>
<view class="desc">
{{(item as ItemType).desc}}
@@ -20,31 +17,31 @@

<script setup lang="ts">
import { PropType } from "vue";
interface ItemType{
title:string,
desc:string,
right?:boolean,
interface ItemType {
title : string,
desc : string,
right ?: boolean,
}
const emit = defineEmits(['more'])
const props = defineProps({
//数据列表
options:{
type:Array as PropType<ItemType[]>,
options: {
type: Array as PropType<ItemType[]>,
default: () => ([])
},
})
</script>

<style lang="scss" scoped>
.as-layout-horizontal{
.as-layout-horizontal {
border-left: 2px solid #00B38B;
padding-bottom: 45rpx;
margin-top: 10rpx;
position: relative;
&::after{
&::after {
content: '';
left: -8rpx;
top: -10rpx;
@@ -55,42 +52,49 @@
border: 2rpx solid #00B38B;
box-sizing: border-box;
}
&:last-child{

&:last-child {
border-left: none;
padding-bottom: 0px;
&::after{

&::after {
left: -4.5rpx;
}
}
.logistics-layout{
.logistics-layout {
padding-left: 35rpx;
&-top{
&-top {
width: 100%;
display: flex;
margin-top: -20rpx;
align-items: center;
.more{

.more {
display: flex;
align-items: center;
.label{

.label {
font-size: 24rpx;
color: #00B38B;
}
.arror{

.arror {
width: 30rpx;
height: 30rpx;
}
}
}
.title{

.title {
font-size: 28rpx;
color: #0D0F26;
flex: 1;
font-weight: bold;
}
.desc{

.desc {
font-size: 24rpx;
margin-top: 20rpx;
margin-bottom: 20rpx;
@@ -99,26 +103,27 @@
}
}
}
.logistics-gray{
.logistics-gray {
border-color: #DCDCDC;
&::after{

&::after {
background-color: #DCDCDC;
border: none;
}
}
.active{
.active {
position: relative;
&::after{

&::after {
content: '';
position: absolute;
width: 12rpx;
height: 12rpx;
left:-8rpx;
left: -8rpx;
border-radius: 50%;
background-color: #00B38B;
}
}
</style>

+ 0
- 1
pages/index/index.vue Bestand weergeven

@@ -20,7 +20,6 @@
<image class="icon" :src="fileURL + 'image/index/icon-notice.png'" lazy-load="false"
mode="aspectFill">
</image>
<!-- <text class="notice-text">{{state.notice}}</text> -->
<uni-notice-bar style="width: 100%;" scrollable single :text="state.notice">
</uni-notice-bar>
</view>

+ 1
- 12
pages/order/components/app-order-list.vue Bestand weergeven

@@ -8,18 +8,7 @@
</view>
<view class="search-btn" @click="doSearch">搜索</view>
</view>

<!-- 数据为空 -->
<!-- <empty-view :mode="config.emptyHint.mode" :content="config.emptyHint.hint" v-if="ordersList.length === 0" /> -->

<!-- <template v-else>
<block v-for="(item,index) in ordersList" :key="index">
<order-list-item-new :item="item" />

</block>
<uni-load-more :status="params.status" iconType="snow" :icon-size="16" :content-text="config.contentTxt"
v-if="ordersList.length > 0" />
</template> -->
</template> -->
</template>

<script setup lang="ts">

+ 0
- 7
pages/order/components/order-tabbar.vue Bestand weergeven

@@ -71,18 +71,13 @@
width: 100%;
background-color: white;
padding-bottom: 8rpx;
// border-bottom: 1px solid #efeff4;
box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
// z-index: 9990;
// position: fixed;
// left: 0;

.bar-view {
width: 100%;
text-align: center;
background-color: white;
white-space: nowrap;
/* +++ 不换行*/
position: sticky;
top: 0;

@@ -92,7 +87,6 @@
line-height: 80rpx;
position: relative;
display: inline-block;
/*+++ 在一行显示*/
min-width: 150rpx;

&:after {
@@ -113,7 +107,6 @@
}

.active {
// color: #00B38B;
font-weight: bold;
font-size: 30rpx;


+ 0
- 2
pages/user/user.vue Bestand weergeven

@@ -27,7 +27,6 @@
</view>
<view v-if="false" class="setting"
@click="$util.navTo('/subpackage/personal-center/setting/setting', true)">
<!-- <image :src="`${$imgUrl}user/icon-setting.png`"></image> -->
<text>签到</text>
</view>
</view>
@@ -639,7 +638,6 @@

.box .right-head .tit {
font-size: 32rpx;
/* font-weight: bold; */
}

.rights .rights-items {

+ 0
- 1
subpackage/after-sale/account-recharge/index.vue Bestand weergeven

@@ -126,7 +126,6 @@
.money_wrap>view:first-child {
text-align: center;
font-size: 30rpx;
/* margin-top: 10rpx; */
}

.money_wrap>view:last-child {

+ 0
- 1
subpackage/after-sale/account-recharge/open-account.vue Bestand weergeven

@@ -446,7 +446,6 @@
flex: 1;
padding-right: 48rpx;
font-size: 26rpx;
// background: transparent;
}

.eye {

+ 0
- 1
subpackage/after-sale/activation/operation-tips.vue Bestand weergeven

@@ -50,7 +50,6 @@
orderInfo.cardStatus = option.cardStatus;
orderInfo.obuStatus = option.obuStatus;
transfer = option.transfer;
// setItem("orderId",option.orderId)
setItem("orderInfo", orderInfo)
console.log(orderInfo);
})

+ 0
- 22
subpackage/orders/changeInformation.vue Bestand weergeven

@@ -1,6 +1,4 @@
<template>
<!-- <navBar title="ETC开户新办申请-个人" :scrollTop="scrollTop"></navBar>
<navBgCar></navBgCar> -->
<view class="content-wrap">
<view @click="tabChange(true)">
<view :class="state.isMyPeopple ? 'big' : 'nomal'"> 本人车辆 </view>
@@ -51,11 +49,6 @@
<u-input v-model="state.form.userName" placeholder='请输入姓名' :disabled="state.isEnableOCRData"
maxlength="20" @input="replaceInput" />
</u-form-item>

<!-- <u-form-item label="性别">
<u-input placeholder='请选择性别' v-model="state.form.gender" @click="userGenderAction()"
type="select" />
</u-form-item> -->
<u-form-item label="身份证号">
<u-input placeholder='请输入身份证' type="idcard" v-model="state.form.userIdNum"
:disabled="state.isEnableOCRData" maxlength="18" />
@@ -64,9 +57,6 @@
<u-input placeholder='请输入地址' height='38' type='textarea' :autoHeight='true'
v-model="state.form.address" :disabled="state.isEnableOCRData" maxlength="100" />
</u-form-item>
<!-- <u-form-item label="证件有效期">
<u-input v-model="state.form.begindate" type="select" />
</u-form-item> -->
<u-form-item label="联系方式">
<u-input placeholder='请输入联系方式' type="number" v-model="state.form.tel" maxlength="11" />
</u-form-item>
@@ -133,12 +123,6 @@
<u-input inputAlign="right" placeholder='请输入身份证号' v-model="state.form.userIdNum"
:disabled="state.isEnableOCRData" type="idcard" />
</u-form-item>
<!-- <u-form-item label="">
<u-input v-model="state.form.userIdNum" />
</u-form-item> -->
<!-- <u-form-item label="证件有效期">
<u-input v-model="state.form.begindate" type="select" />
</u-form-item> -->
<u-form-item label="联系方式">
<u-input inputAlign="right" placeholder='请输入联系方式' v-model="state.form.tel" maxlength="11" />
</u-form-item>
@@ -198,16 +182,10 @@
<u-input inputAlign="right" placeholder='请输入经办人姓名' v-model="state.form.agentName"
:disabled="state.isEnableOCRData" maxlength="20" />
</u-form-item>
<!-- <u-form-item label="性别">
<u-input v-model="state.form.agentGender" type="select" />
</u-form-item> -->
<u-form-item label="身份证号">
<u-input inputAlign="right" placeholder='请输入身份证号' v-model="state.form.agentIdNum"
:disabled="state.isEnableOCRData" maxlength="18" type="idcard" />
</u-form-item>
<!-- <u-form-item label="证件有效期">
<u-input v-model="state.form.begindate" type="select" />
</u-form-item> -->
<u-form-item label="联系方式">
<u-input inputAlign="right" placeholder='请输入联系方式' v-model="state.form.agentTel" type="number"
maxlength="11" />

+ 0
- 4
subpackage/personal-center/get-code.vue Bestand weergeven

@@ -193,9 +193,5 @@
width: 100%;
margin: 120rpx 40rpx 50rpx;
}




}
</style>

+ 42
- 41
subpackage/personal-center/index.vue Bestand weergeven

@@ -12,63 +12,64 @@
</template>

<script setup>
import { navTo } from '@/utils/utils';
const gotoPage = ()=>{
import {
navTo
} from '@/utils/utils';

const gotoPage = () => {
navTo("/subpackage/personal-center/old-user")
}
</script>

<style>
page {
background: #eef7f7;
background: #eef7f7;
}
.m_contents .title {
padding: 30rpx 0;
background: #ffffff;
text-align: center;
padding: 30rpx 0;
background: #ffffff;
text-align: center;
}
.title .fee {
margin-top: 15rpx;
font-size: 48rpx;
color: #f95355;
margin-top: 15rpx;
font-size: 48rpx;
color: #f95355;
}
.m_contents .field {
position: relative;
display: flex;
background: #FFFFFF;
padding:30rpx;
align-items: center;
border-radius: 16rpx;
/* border-bottom: 1px solid #dddddd; */
color: #040404;
position: relative;
display: flex;
background: #FFFFFF;
padding: 30rpx;
align-items: center;
border-radius: 16rpx;
color: #040404;
}
.field .left {
width: 60rpx;
height: 60rpx;
margin-right: 20rpx;
width: 60rpx;
height: 60rpx;
margin-right: 20rpx;
}
.field image {
width: 100%;
height: 100%;
width: 100%;
height: 100%;
}
.m_contents .field::after {
content: " ";
display: inline-block;
width: 16rpx;
height: 16rpx;
position: absolute;
top: 50%;
right: 34rpx;
border-width: 4rpx 4rpx 0 0;
border-color: #bbbbbb;
border-style: solid;
transform: translateY(-50%) matrix(0.71, 0.71, -.71, 0.71, 0, 0);
content: " ";
display: inline-block;
width: 16rpx;
height: 16rpx;
position: absolute;
top: 50%;
right: 34rpx;
border-width: 4rpx 4rpx 0 0;
border-color: #bbbbbb;
border-style: solid;
transform: translateY(-50%) matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
</style>
</style>

+ 0
- 9
subpackage/personal-center/install-activation-order.vue Bestand weergeven

@@ -31,7 +31,6 @@
</view>
</view>
<view class="btns">
<!-- <view class="btn btn-primary as-gravity-center" @click="btnClick(item)">{{item.state === 1 ? '去激活' : '去开卡'}}</view> -->
<view class="btn btn-primary as-gravity-center" @click="gotoActiveOrder(item)">去激活</view>
</view>
</view>
@@ -117,14 +116,6 @@
type: 2,
data: {
"opId": getItem(StorageKeys.OpenId),
// "source": source,
// "vehiclePlate": "",
// "tabIndex": '0',
// "pageNo": params.pageNum,
// "pageSize": params.pageSize,
// "isValueCard": "",
// "title": "0",
// "orderStep": "10"
},
method: 'POST',
showLoading: params.pageNum === 1 ? true : false,

Laden…
Annuleren
Opslaan