111
This commit is contained in:
parent
55f3974337
commit
00cb6ab410
|
@ -98,7 +98,7 @@
|
|||
.cont {
|
||||
position: fixed;
|
||||
// left: 60rpx;
|
||||
bottom: 10rpx;
|
||||
bottom: 0rpx;
|
||||
width: 750rpx;
|
||||
height: 118rpx;
|
||||
background: #FFFFFF;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'height='36'></u-navbar>
|
||||
<u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'height='40'></u-navbar>
|
||||
<view class="cont">
|
||||
<view class="tit">
|
||||
输入编号开锁
|
||||
|
@ -10,7 +10,7 @@
|
|||
</view>
|
||||
<view class="ipt">
|
||||
|
||||
<input type="text" class="ips" v-model="code" placeholder="请输入车辆二维码下方编号" placeholder-style='font-weight: 400;font-size: 36rpx;color: #808080;' />
|
||||
<input type="text" class="ips" v-model="sn" placeholder="请输入车辆二维码下方编号" placeholder-style='font-weight: 400;font-size: 36rpx;color: #808080;' />
|
||||
</view>
|
||||
<view class="btn" @click="sub">
|
||||
确认开锁
|
||||
|
@ -27,21 +27,84 @@
|
|||
bgc: {
|
||||
backgroundColor: "#fff",
|
||||
},
|
||||
code:''
|
||||
sn:''
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
sub(){
|
||||
if(this.code==''){
|
||||
if(this.sn==''){
|
||||
uni.showToast({
|
||||
title: '请输入设备编号',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}else{
|
||||
uni.navigateTo({
|
||||
url:'/pages/index/index?sn='+this.code
|
||||
})
|
||||
let that = this
|
||||
if(uni.getStorageSync('token')){
|
||||
this.$u.get('/app/device/info?sn=' + this.sn).then((res) => {
|
||||
if (res.code === 200) {
|
||||
uni.navigateTo({
|
||||
url:'/pages/index/index?sn='+this.code
|
||||
})
|
||||
}else{
|
||||
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}
|
||||
})
|
||||
}else{
|
||||
wx.login({
|
||||
success(res) {
|
||||
if (res.code) {
|
||||
console.log('登录!', res);
|
||||
let data = {
|
||||
wxOpenId: res.code,
|
||||
|
||||
};
|
||||
let areaId=uni.getStorageSync('areaId');
|
||||
that.$u.post('/loginByopenid?jsCode='+res.code+'&areaId='+areaId).then(res=>{
|
||||
uni.hideLoading();
|
||||
if (res.code == 200) {
|
||||
uni.setStorageSync('token', res.token);
|
||||
that.$u.get('/app/device/info?sn=' + that.sn).then((res) => {
|
||||
if (res.code === 200) {
|
||||
uni.navigateTo({
|
||||
url:'/pages/index/index?sn='+this.code
|
||||
})
|
||||
}else{
|
||||
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
}else if(res.code == 501){
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
}else {
|
||||
// console.log("老用户登录",res.data)
|
||||
uni.redirectTo({
|
||||
url:'/pages/login/login'
|
||||
})
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="费用明细" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36' height='36'></u-navbar>
|
||||
<u-navbar title="费用明细" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36' height='40'></u-navbar>
|
||||
<view class="tit">
|
||||
<view class="left">电单车</view>
|
||||
<!-- <view class="right">查看计费规则 ></view> -->
|
||||
|
@ -160,3 +160,140 @@
|
|||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" >
|
||||
page{
|
||||
background-color: #F7FAFE;
|
||||
}
|
||||
.page{
|
||||
// width: 750rpx;
|
||||
width: 750rpx;
|
||||
// height: 530rpx;
|
||||
background: linear-gradient( 180deg, #4C97E7 0.1%, rgba(255,255,255,0) 40%), #FFFFFF;
|
||||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||||
.tit{
|
||||
margin-left: 86rpx;
|
||||
margin-right: 86rpx;
|
||||
margin-top: 30rpx;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
.left{
|
||||
font-weight: 700;
|
||||
font-size: 40rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
.right{
|
||||
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
}
|
||||
.data{
|
||||
margin-left: 86rpx;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #808080;
|
||||
}
|
||||
.card{
|
||||
padding:34rpx 44rpx ;
|
||||
margin: 68rpx auto;
|
||||
width: 672rpx;
|
||||
// height: 458rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
|
||||
border-radius: 32rpx 32rpx 32rpx 32rpx;
|
||||
.card_tit{
|
||||
width: 112rpx;
|
||||
height: 38rpx;
|
||||
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
||||
font-weight: 400;
|
||||
font-size: 28rpx;
|
||||
color: #3D3D3D;
|
||||
|
||||
background: linear-gradient( 0deg, #B1C3FF 0.1%, rgba(255,255,255,0) 40%), #FFFFFF;
|
||||
}
|
||||
.cont{
|
||||
padding: 32rpx 28rpx;
|
||||
margin-top: 26rpx;
|
||||
width: 586rpx;
|
||||
// height: 228rpx;
|
||||
background: #F3F3F3;
|
||||
border-radius: 26rpx 26rpx 26rpx 26rpx;
|
||||
.cont_box{
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
.cont_left{
|
||||
font-weight: 400;
|
||||
font-size: 28rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
.cont_right{
|
||||
font-weight: 400;
|
||||
font-size: 28rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
}
|
||||
.tip{
|
||||
margin-top: 32rpx;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #808080;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.price{
|
||||
margin-top: 28rpx;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
.prices{
|
||||
margin-left: auto;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #3D3D3D;
|
||||
span{
|
||||
margin-left: 2rpx;
|
||||
margin-right: 2rpx;
|
||||
}
|
||||
}
|
||||
.showmore{
|
||||
margin-left: auto;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
align-items: center;
|
||||
font-weight: 400;
|
||||
font-size: 20rpx;
|
||||
color: #3D3D3D;
|
||||
.icon-xiangshang1{
|
||||
font-size: 20rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
.icon-xiangxia1{
|
||||
font-size: 20rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
}
|
||||
}
|
||||
.info_cont{
|
||||
margin-top: 12rpx;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.cont_left{
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
.cont_right{
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="查看停车点" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
|
||||
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
|
||||
<view class="bottom_box">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
|
||||
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline">
|
||||
</view>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="我的订单" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="card" v-for="(item, index) in computedList" :key="index">
|
||||
<view class="top_li">
|
||||
<view class="left">
|
||||
|
@ -12,7 +12,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="info">
|
||||
时间:{{ item.payTime }}
|
||||
时间:{{ item.createTime }}
|
||||
</view>
|
||||
<view class="info">
|
||||
时长:{{ item.duration }}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="故障上报" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="cardbox">
|
||||
<view class="tip">
|
||||
<view class="ipnt">*</view>故障车编号
|
||||
|
@ -290,7 +290,7 @@
|
|||
btn() {
|
||||
let _this = this
|
||||
let math = 'static/' + _this.$u.guid(20)
|
||||
uni.chooseMessageFile({
|
||||
uni.chooseImage({
|
||||
count: 9,
|
||||
type: 'all',
|
||||
success(res) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="认证" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="ipt_box">
|
||||
<view class="li">
|
||||
<view class="left">
|
||||
|
@ -75,7 +75,9 @@
|
|||
};
|
||||
this.$u.get('/appVerify/user/authentication?', data).then((res) => {
|
||||
if (res.code === 200) {
|
||||
this.getisInOrder()
|
||||
uni.navigateBack({
|
||||
delta: 1 // delta值为1时表示返回的页面层数
|
||||
});
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="计费规则" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="cont" style="margin-top: 50rpx;">
|
||||
<view class="tit" style="margin-top: 50rpx;">
|
||||
骑行服务费
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
|
||||
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
|
||||
<view class="bot_btn">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="确认开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
|
||||
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
|
||||
<view class="bot_btn">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="问题上报详情" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="cont">
|
||||
<view class="cont_top">
|
||||
<view class="tit">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="问题上报记录" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="card" v-for="(item,index) in list" :key="index" @click="topage(item)" v-if="list.length>=0">
|
||||
<view class="top_li">
|
||||
<view class="left">
|
||||
|
@ -11,8 +11,10 @@
|
|||
处理完成 <view class="iconfont icon-xiangyou1"></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="info">
|
||||
<view class="info" v-if="!item.address">
|
||||
反馈地点:--
|
||||
</view>
|
||||
<view class="info" v-if="item.address">
|
||||
反馈地点:{{item.address}}
|
||||
</view>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="行程结束" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
|
||||
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
|
||||
<view class="bot_btn" v-if="false">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="用车指南" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="cont">
|
||||
<view class="tit">
|
||||
请在运营区内骑行,否则将断电
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="押金" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='36'></u-navbar>
|
||||
height='40'></u-navbar>
|
||||
<view class="norecord" v-if="userinfo.balance==0">
|
||||
<view class="card">
|
||||
<view class="tit">充值押金</view>
|
||||
|
@ -124,7 +124,7 @@
|
|||
data() {
|
||||
return {
|
||||
bgc: {
|
||||
backgroundColor: "#7bb2ec",
|
||||
backgroundColor: "#F7FAFE",
|
||||
},
|
||||
show: false,
|
||||
bindDeviceNum: null,
|
||||
|
@ -221,13 +221,15 @@
|
|||
});
|
||||
},
|
||||
sub4() {
|
||||
let id = uni.getStorageSync('areaId');
|
||||
let data = {
|
||||
userId: this.userId,
|
||||
|
||||
// ruleId: this.freeInfo.ruleId,
|
||||
money: this.areaInfo.deposit,
|
||||
mark: "押金充值",
|
||||
type: '4'
|
||||
type: '4',
|
||||
areaId:this.areaId
|
||||
|
||||
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,20 +1,28 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
|
||||
<view class="page" >
|
||||
|
||||
|
||||
<u-navbar title="地图" :is-back='false' :border-bottom="false" :background="bgc" title-color='#2E4975'
|
||||
title-size='36' height='36'></u-navbar>
|
||||
<view @touchmove.stop.prevent="() => {}">
|
||||
<view class="slider">
|
||||
<view class="tit">
|
||||
电量区间
|
||||
</view>
|
||||
<slider-range :value="rangeValue" :min="rangeMin" :max="rangMax" :step="1" :bar-height="3" :block-size="20"
|
||||
background-color="#EEEEF6" active-color="#4C97E7" :format="format" :decorationVisible="true"
|
||||
@change="handleRangeChange"></slider-range>
|
||||
<view style="width: 650rpx;">
|
||||
<slider-range :value="rangeValue" :min="rangeMin" :max="rangMax" :step="1" :bar-height="3" :block-size="20"
|
||||
background-color="#EEEEF6" active-color="#4C97E7" :format="format" :decorationVisible="true"
|
||||
@change="handleRangeChange"></slider-range>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
|
||||
:show-location="true" :markers="markers" :polygons="polyline" @markertap="onMarkerTap" >
|
||||
</map>
|
||||
|
||||
<view @touchmove.stop.prevent="() => {}">
|
||||
<view class="btn_box">
|
||||
<view class="btn1">
|
||||
车辆扫码
|
||||
|
@ -97,6 +105,8 @@
|
|||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<tab-bar :indexs='1' style=""></tab-bar>
|
||||
</view>
|
||||
</template>
|
||||
|
@ -641,7 +651,7 @@
|
|||
|
||||
.cont {
|
||||
margin-top: 18rpx;
|
||||
margin-right: 10rpx;
|
||||
margin-right: 9rpx;
|
||||
// display: flex;
|
||||
width: 130rpx;
|
||||
|
||||
|
@ -693,6 +703,7 @@
|
|||
}
|
||||
|
||||
.slider {
|
||||
padding: 15rpx 0 0 15rpx;
|
||||
.tit {
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
|
@ -700,7 +711,7 @@
|
|||
}
|
||||
|
||||
width: 752rpx;
|
||||
height: 150rpx;
|
||||
height:160rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
|
||||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||||
|
|
|
@ -230,7 +230,7 @@
|
|||
console.error("Error fetching area data:", error);
|
||||
});
|
||||
}else if(num==4){
|
||||
this.$u.post('/appVerify/device/ring?sn='+this.sn).then((res) => {
|
||||
this.$u.get('/appVerify/device/ring?sn='+this.sn).then((res) => {
|
||||
if (res.code === 200) {
|
||||
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
|
||||
this.deviceInfo()
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
<view class="iconfont icon-xiangxia1"></view>
|
||||
</view>
|
||||
<view class="stause_li" style="margin-left: 50rpx;" @click="showdsc=true">
|
||||
{{sctit}} <view class="iconfont icon-xiangxia1"></view>
|
||||
{{sctit}}
|
||||
<view class="iconfont icon-xiangxia1"></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
@ -183,33 +184,15 @@
|
|||
},
|
||||
|
||||
methods: {
|
||||
ban(){
|
||||
let data={
|
||||
disableType:'disable',
|
||||
sns:this.selectedItems.join(',')
|
||||
ban() {
|
||||
let data = {
|
||||
disableType: 'disable',
|
||||
sns: this.selectedItems.join(',')
|
||||
}
|
||||
this.$u.post(`/appVerify/device/disable?sns=`+data.sns+'&disableType=disable').then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.closestep()
|
||||
this.getDevice()
|
||||
} else {
|
||||
// 处理接口返回错误的情况
|
||||
}
|
||||
}).catch(error => {
|
||||
// 处理接口请求失败的情况
|
||||
});
|
||||
},
|
||||
pick(){
|
||||
let data={
|
||||
disableType:'enable',
|
||||
sns:this.selectedItems.join(',')
|
||||
}
|
||||
this.$u.post(`/appVerify/device/disable?sns=`+data.sns+'&disableType=enable').then((res) => {
|
||||
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=disable').then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.closestep()
|
||||
this.getDevice()
|
||||
|
||||
|
||||
} else {
|
||||
// 处理接口返回错误的情况
|
||||
}
|
||||
|
@ -217,8 +200,26 @@
|
|||
// 处理接口请求失败的情况
|
||||
});
|
||||
},
|
||||
confirms(e){
|
||||
|
||||
pick() {
|
||||
let data = {
|
||||
disableType: 'enable',
|
||||
sns: this.selectedItems.join(',')
|
||||
}
|
||||
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=enable').then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.closestep()
|
||||
this.getDevice()
|
||||
|
||||
|
||||
} else {
|
||||
// 处理接口返回错误的情况
|
||||
}
|
||||
}).catch(error => {
|
||||
// 处理接口请求失败的情况
|
||||
});
|
||||
},
|
||||
confirms(e) {
|
||||
|
||||
this.scidx = e[0].value
|
||||
this.sctit = e[0].label
|
||||
this.getDevice()
|
||||
|
@ -288,7 +289,7 @@
|
|||
let data = {
|
||||
powerStart: '',
|
||||
powerEnd: '',
|
||||
sort:this.scidx,
|
||||
sort: this.scidx,
|
||||
status: this.typeidx
|
||||
}
|
||||
|
||||
|
@ -399,13 +400,27 @@
|
|||
font-weight: 400;
|
||||
font-size: 28rpx;
|
||||
color: #808080;
|
||||
|
||||
white-space: nowrap;
|
||||
/* 禁止换行 */
|
||||
overflow: hidden;
|
||||
/* 超出部分隐藏 */
|
||||
text-overflow: ellipsis;
|
||||
span {
|
||||
color: #3D3D3D;
|
||||
white-space: nowrap;
|
||||
/* 禁止换行 */
|
||||
overflow: hidden;
|
||||
/* 超出部分隐藏 */
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.input {
|
||||
width: 30%;
|
||||
white-space: nowrap;
|
||||
/* 禁止换行 */
|
||||
overflow: hidden;
|
||||
/* 超出部分隐藏 */
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -246,7 +246,9 @@
|
|||
if (this.typeindex == 1) {
|
||||
this.operatingData()
|
||||
} else {
|
||||
|
||||
this.infoList = []
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user