|
@@ -5,10 +5,17 @@
|
|
|
<u-search placeholder="请输入合同编号、车牌号或派车编号" v-model="keyword" @search="searchKeyWord()"
|
|
|
@custom="searchKeyWord()"></u-search>
|
|
|
</view>
|
|
|
- <view>
|
|
|
- <view @click='tabcarchange(1)' class='line' :class='statusFlag==1?"active":""'>未完成</view>
|
|
|
- <view @click='tabcarchange(3)' class='line' :class='statusFlag==3?"active":""'>已完成</view>
|
|
|
+ <view class="top2">
|
|
|
+ <view class="left">
|
|
|
+ <view @click='tabcarchange(1)' class='line' :class='statusFlag==1?"active":""'>未完成</view>
|
|
|
+ <view @click='tabcarchange(3)' class='line' :class='statusFlag==3?"active":""'>已完成</view>
|
|
|
+ </view>
|
|
|
+ <view class="right">
|
|
|
+ <view class="right-contrent1">逐条审核</view>
|
|
|
+ <u-switch v-model="checked" active-color="#22C572" inactive-color="#eee" size='40'></u-switch>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
+
|
|
|
</view>
|
|
|
<view class="introduce-section">
|
|
|
<view v-for="(item, index) in taskInfo" :key="index" @click="navToDetailPage(item)">
|
|
@@ -49,6 +56,7 @@
|
|
|
return {
|
|
|
PageCur: "task",
|
|
|
taskInfo: [],
|
|
|
+ checked: false,
|
|
|
pages: 1, //页数
|
|
|
limit: 10, //每次取条目数
|
|
|
loadStatus: 'loading', //加载样式:more-加载前样式,loading-加载中样式,nomore-没有数据样式
|
|
@@ -68,13 +76,102 @@
|
|
|
pageSize: 10,
|
|
|
currentPage: 1
|
|
|
},
|
|
|
- keyword: ""
|
|
|
+ keyword: "",
|
|
|
+ copyTaskInfo: []
|
|
|
};
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ checked(val) {
|
|
|
+ uni.setStorageSync("everyTask", this.checked)
|
|
|
+ },
|
|
|
+ taskInfo: function(val) {
|
|
|
+ this.copyTaskInfo = this.$u.deepClone(this.taskInfo);
|
|
|
+ //添加跳转链接
|
|
|
+ for (let i = 0; i < this.copyTaskInfo.length; i++) {
|
|
|
+ let item = this.copyTaskInfo[i]
|
|
|
+ if (item.businessCode == 'PROCUREMENT-ORDER-APPROVE') {
|
|
|
+ item.itemUrl = '/pages/task/procurement_details?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'SALE-ORDER-APPROVE') {
|
|
|
+ item.itemUrl = '/pages/task/sale_details?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'SALE-CONTRACT-APPROVE') {
|
|
|
+ item.itemUrl = '/pages/task/audit/salecontract?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'BUY-CONTRACT-APPROVE') {
|
|
|
+ item.itemUrl = '/pages/task/audit/purchasecontract?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'PROCUREMENT-RECEIPT-REPORT') {
|
|
|
+ item.itemUrl = '/pages/task/procurement_report_details?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'PROCUREMENT-CLOSE-REPORT') {
|
|
|
+ item.itemUrl = '/pages/task/procurement_close_details?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'SALE-RECEIPT-REPORT') {
|
|
|
+ item.itemUrl = '/pages/task/sale_report_details?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'SALE-CLOSE-REPORT') {
|
|
|
+ item.itemUrl = '/pages/task/sale_close_details?id=' + item.businessId
|
|
|
+ } else if (item.businessCode == 'PROCUREMENT-PRICE-APPROVE') {
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
+ item.itemUrl = `/pages/task/audit/warehouse_approval?id=${item.businessId}`
|
|
|
+ } else {
|
|
|
+ item.itemUrl = '/pages/task/audit/warehouse_details/?id=' + item.businessId
|
|
|
+ }
|
|
|
+ } else if (item.businessCode == 'PAYMENT-MANAGEMENT-APPROVE') {
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
+ item.itemUrl = `/pages/task/audit/acquisition_settlement_approval?id=${item.businessId}`
|
|
|
+ } else {
|
|
|
+ item.itemUrl = '/pages/task/audit/acquisition_settlement_details/?id=' + item.businessId
|
|
|
+ }
|
|
|
+ } else if (item.businessCode == 'INOUTTASK-TASK-APPROVE') {
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
+ item.itemUrl = `/pages/task/audit/Issueandreceipt_task_approval?id=` + item.businessId
|
|
|
+ } else {
|
|
|
+ item.itemUrl = `/pages/task/audit/Issueandreceipt_task_details?id=` + item.businessId
|
|
|
+ }
|
|
|
+
|
|
|
+ } else if (item.businessCode == 'STOCK-PROCUREMENT-RECEIPT-REPORT') {
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
+ item.itemUrl = `/pages/task/audit/purchase_settlement_approval?id=` + item.businessId
|
|
|
+ } else {
|
|
|
+ item.itemUrl = `/pages/task/audit/purchase_settlement_details?id=` + item.businessId
|
|
|
+ }
|
|
|
+ } else if (item.businessCode == 'TRANSPORTATION-SETTLEMENT-REPORT') {
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
+ item.itemUrl = `/pages/task/audit/freight_settlement_approval?id=` + item.businessId
|
|
|
+ } else {
|
|
|
+ item.itemUrl = `/pages/task/audit/freight_settlement_details?id=` + item.businessId +
|
|
|
+ '&compId=' + this
|
|
|
+ .pcUserInfo.compId
|
|
|
+ }
|
|
|
+ } else if (item.businessCode == 'TRAN-TASK-APPROVE') {
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
+ item.itemUrl = `/pages/task/audit/freight_setting_approval?id=` + item.businessId
|
|
|
+ } else {
|
|
|
+ item.itemUrl = `/pages/task/audit/freight_setting_details?id=` + item.businessId
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (item.taskType == "入库任务") {
|
|
|
+
|
|
|
+ if (item.statusFlag == 3) {
|
|
|
+ item.itemUrl = `/pageD/warehousings/warehousingDetails?id=${item.id}`
|
|
|
+ } else {
|
|
|
+ item.itemUrl =
|
|
|
+ `/pageD/warehousings/warehousings?id=${item.id}&goodsName=${item.goodsName}&contractNo=${item.contractNo}&startWeight=${item.startWeight}&carNo=${item.carNo}&tranCarNo=${item.tranCarNo}&warehouseName=${item.warehouseName}&addressUrl=${item.addressUrl}&inOutDate=${item.inOutDate}&binNumber=${item.binNumber}`
|
|
|
+ }
|
|
|
+ } else if (item.taskType == "出库任务") {
|
|
|
+ if (item.statusFlag == 3) {
|
|
|
+ item.itemUrl = `/pageD/warehousings/ex_warehouse_detail?id=${item.id}`
|
|
|
+ } else {
|
|
|
+ item.itemUrl =
|
|
|
+ `/pageD/warehousings/ex_warehouse?id=${item.id}&goodsName=${item.goodsName}&contractNo=${item.contractNo}&consignee=${item.consignee}&carNo=${item.carNo}&tranCarNo=${item.tranCarNo}&boxNo=${item.boxNo}&titleNo=${item.titleNo}`
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ console.log('监听列表数据', this.copyTaskInfo)
|
|
|
+ uni.setStorageSync("copyTaskInfo", this.copyTaskInfo)
|
|
|
+ }
|
|
|
+ },
|
|
|
computed: {
|
|
|
...mapState(['hasLogin', 'userInfo'])
|
|
|
},
|
|
|
onShow() {
|
|
|
+ this.checked = uni.getStorageSync("everyTask")
|
|
|
this.warehouseInOutInfo.currentPage = 1
|
|
|
this.data.currentPage = 1
|
|
|
this.taskInfo = []
|
|
@@ -104,7 +201,7 @@
|
|
|
},
|
|
|
onReachBottom() { //上拉触底函数
|
|
|
if (!this.isLoadMore) { //此处判断,上锁,防止重复请求
|
|
|
- this.pages+=1
|
|
|
+ this.pages += 1
|
|
|
if (this.statusFlag == 1) {
|
|
|
this.warehouseInOutInfo.currentPage += 1
|
|
|
} else {
|
|
@@ -170,6 +267,9 @@
|
|
|
// }
|
|
|
// return false
|
|
|
// },
|
|
|
+ change(status) {
|
|
|
+ console.log(status);
|
|
|
+ },
|
|
|
searchKeyWord() {
|
|
|
if (!this.keyword) {
|
|
|
this.$api.msg('关键字不能为空')
|
|
@@ -188,7 +288,7 @@
|
|
|
icon: 'none',
|
|
|
duration: 2000
|
|
|
})
|
|
|
- uni.hideLoading(this.taskInfo,"信息")
|
|
|
+ uni.hideLoading(this.taskInfo, "信息")
|
|
|
}
|
|
|
console.log()
|
|
|
}).catch(res => {
|
|
@@ -218,7 +318,7 @@
|
|
|
}
|
|
|
data.currentPage = pages
|
|
|
data.pageSize = limit
|
|
|
-
|
|
|
+
|
|
|
//this.warehouseInOutInfo.status = this.status
|
|
|
this.$api.doRequest('get', url, data).then(res => {
|
|
|
if (res.data.code == 200) {
|
|
@@ -241,12 +341,12 @@
|
|
|
for (var i = 0; i < this.taskInfo.length; i++) {
|
|
|
let _str = this.taskInfo[i]
|
|
|
// let a = this.getRoles()
|
|
|
- if(_str.messageContent.indexOf("您发起")>-1){
|
|
|
+ if (_str.messageContent.indexOf("您发起") > -1) {
|
|
|
_str.showRow = false
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
_str.showRow = true;
|
|
|
}
|
|
|
- this.taskInfo[i].department=this.taskInfo[i].messageContent.split(' ')[0]
|
|
|
+ this.taskInfo[i].department = this.taskInfo[i].messageContent.split(' ')[0]
|
|
|
if (this.taskInfo[i].businessType == 'WAREHOUSE') {
|
|
|
if (this.taskInfo[i].businessCode == 'INOUTTASK-TASK-APPROVE') {
|
|
|
this.taskInfo[i].messageTitle = '出入库任务'
|
|
@@ -255,7 +355,7 @@
|
|
|
if (this.taskInfo[i].businessCode == 'PAYMENT-MANAGEMENT-APPROVE') {
|
|
|
this.taskInfo[i].messageTitle = '付款管理'
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
} else if (this.taskInfo[i].businessType == 'REPORT') {
|
|
|
if (this.taskInfo[i].businessCode == 'PROCUREMENT-CLOSE-REPORT') {
|
|
|
this.taskInfo[i].messageTitle = '采购平仓统计'
|
|
@@ -328,105 +428,106 @@
|
|
|
navToDetailPage(item) {
|
|
|
if (item.businessCode == 'PROCUREMENT-ORDER-APPROVE') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/procurement_details?id=' + item.businessId
|
|
|
+ url: '/pages/task/procurement_details?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
} else if (item.businessCode == 'SALE-ORDER-APPROVE') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/sale_details?id=' + item.businessId
|
|
|
+ url: '/pages/task/sale_details?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
- }
|
|
|
- else if (item.businessCode == 'SALE-CONTRACT-APPROVE') {
|
|
|
+ } else if (item.businessCode == 'SALE-CONTRACT-APPROVE') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/audit/salecontract?id=' + item.businessId
|
|
|
+ url: '/pages/task/audit/salecontract?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
- }else if (item.businessCode == 'BUY-CONTRACT-APPROVE') {
|
|
|
+ } else if (item.businessCode == 'BUY-CONTRACT-APPROVE') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/audit/purchasecontract?id=' + item.businessId
|
|
|
+ url: '/pages/task/audit/purchasecontract?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
} else if (item.businessCode == 'PROCUREMENT-RECEIPT-REPORT') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/procurement_report_details?id=' + item.businessId
|
|
|
+ url: '/pages/task/procurement_report_details?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
} else if (item.businessCode == 'PROCUREMENT-CLOSE-REPORT') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/procurement_close_details?id=' + item.businessId
|
|
|
+ url: '/pages/task/procurement_close_details?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
} else if (item.businessCode == 'SALE-RECEIPT-REPORT') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/sale_report_details?id=' + item.businessId
|
|
|
+ url: '/pages/task/sale_report_details?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
} else if (item.businessCode == 'SALE-CLOSE-REPORT') {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/sale_close_details?id=' + item.businessId
|
|
|
+ url: '/pages/task/sale_close_details?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
} else if (item.businessCode == 'PROCUREMENT-PRICE-APPROVE') {
|
|
|
- if(this.statusFlag==1){
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pages/task/audit/warehouse_approval?id=${item.businessId}`
|
|
|
+ url: `/pages/task/audit/warehouse_approval?id=${item.businessId}&isShowbtn=true`
|
|
|
})
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/audit/warehouse_details/?id=' + item.businessId
|
|
|
+ url: '/pages/task/audit/warehouse_details/?id=' + item.businessId + "&isShowbtn=true"
|
|
|
})
|
|
|
}
|
|
|
} else if (item.businessCode == 'PAYMENT-MANAGEMENT-APPROVE') {
|
|
|
- if(this.statusFlag==1){
|
|
|
+ if (this.statusFlag == 1) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pages/task/audit/acquisition_settlement_approval?id=${item.businessId}`
|
|
|
+ url: `/pages/task/audit/acquisition_settlement_approval?id=${item.businessId}&isShowbtn=true`
|
|
|
})
|
|
|
- }else{
|
|
|
+
|
|
|
+ } else {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/task/audit/acquisition_settlement_details/?id=' + item.businessId
|
|
|
+ url: '/pages/task/audit/acquisition_settlement_details/?id=' + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
}
|
|
|
- }else if (item.businessCode == 'INOUTTASK-TASK-APPROVE') {
|
|
|
+ } else if (item.businessCode == 'INOUTTASK-TASK-APPROVE') {
|
|
|
if (this.statusFlag == 1) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pages/task/audit/Issueandreceipt_task_approval?id=` + item.businessId
|
|
|
- // url: '/pageD/warehousings/warehousingDetails?id='+item.businessId+'&compId='+item.compId
|
|
|
+ url: `/pages/task/audit/Issueandreceipt_task_approval?id=` + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
} else {
|
|
|
uni.navigateTo({
|
|
|
- // url:'/pageD/warehousings/warehousings?id='+item.businessId+'&compId='+item.compId
|
|
|
- url: `/pages/task/audit/Issueandreceipt_task_details?id=` + item.businessId
|
|
|
+ url: `/pages/task/audit/Issueandreceipt_task_details?id=` + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- }else if (item.businessCode == 'STOCK-PROCUREMENT-RECEIPT-REPORT') {
|
|
|
+ } else if (item.businessCode == 'STOCK-PROCUREMENT-RECEIPT-REPORT') {
|
|
|
if (this.statusFlag == 1) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pages/task/audit/purchase_settlement_approval?id=` + item.businessId
|
|
|
- // url: '/pageD/warehousings/warehousingDetails?id='+item.businessId+'&compId='+item.compId
|
|
|
+ url: `/pages/task/audit/purchase_settlement_approval?id=` + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
} else {
|
|
|
uni.navigateTo({
|
|
|
- // url:'/pageD/warehousings/warehousings?id='+item.businessId+'&compId='+item.compId
|
|
|
- url: `/pages/task/audit/purchase_settlement_details?id=` + item.businessId
|
|
|
+ url: `/pages/task/audit/purchase_settlement_details?id=` + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
}
|
|
|
- }else if (item.businessCode == 'TRANSPORTATION-SETTLEMENT-REPORT') {
|
|
|
+ } else if (item.businessCode == 'TRANSPORTATION-SETTLEMENT-REPORT') {
|
|
|
if (this.statusFlag == 1) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pages/task/audit/freight_settlement_approval?id=` + item.businessId
|
|
|
- // url: '/pageD/warehousings/warehousingDetails?id='+item.businessId+'&compId='+item.compId
|
|
|
+ url: `/pages/task/audit/freight_settlement_approval?id=` + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
} else {
|
|
|
uni.navigateTo({
|
|
|
- // url:'/pageD/warehousings/warehousings?id='+item.businessId+'&compId='+item.compId
|
|
|
- url: `/pages/task/audit/freight_settlement_details?id=` + item.businessId + '&compId=' + this
|
|
|
- .pcUserInfo.compId
|
|
|
+ url: `/pages/task/audit/freight_settlement_details?id=` + item.businessId +
|
|
|
+ '&compId=' + this
|
|
|
+ .pcUserInfo.compId + "&isShowbtn=true"
|
|
|
})
|
|
|
}
|
|
|
- }else if (item.businessCode == 'TRAN-TASK-APPROVE') {
|
|
|
+ } else if (item.businessCode == 'TRAN-TASK-APPROVE') {
|
|
|
if (this.statusFlag == 1) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pages/task/audit/freight_setting_approval?id=` + item.businessId
|
|
|
- // url: '/pageD/warehousings/warehousingDetails?id='+item.businessId+'&compId='+item.compId
|
|
|
+ url: `/pages/task/audit/freight_setting_approval?id=` + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
} else {
|
|
|
uni.navigateTo({
|
|
|
- // url:'/pageD/warehousings/warehousings?id='+item.businessId+'&compId='+item.compId
|
|
|
- url: `/pages/task/audit/freight_setting_details?id=` + item.businessId
|
|
|
+ url: `/pages/task/audit/freight_setting_details?id=` + item.businessId +
|
|
|
+ "&isShowbtn=true"
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -434,21 +535,23 @@
|
|
|
|
|
|
if (item.statusFlag == 3) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pageD/warehousings/warehousingDetails?id=${item.id}`
|
|
|
+ url: `/pageD/warehousings/warehousingDetails?id=${item.id}&isShowbtn=true`
|
|
|
})
|
|
|
} else {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pageD/warehousings/warehousings?id=${item.id}&goodsName=${item.goodsName}&contractNo=${item.contractNo}&startWeight=${item.startWeight}&carNo=${item.carNo}&tranCarNo=${item.tranCarNo}&warehouseName=${item.warehouseName}&addressUrl=${item.addressUrl}&inOutDate=${item.inOutDate}&binNumber=${item.binNumber}`
|
|
|
+ url: `/pageD/warehousings/warehousings?id=${item.id}&goodsName=${item.goodsName}&contractNo=${item.contractNo}&startWeight=${item.startWeight}&carNo=${item.carNo}&tranCarNo=${item.tranCarNo}&warehouseName=${item.warehouseName}&addressUrl=${item.addressUrl}&inOutDate=${item.inOutDate}&binNumber=${item.binNumber}&isShowbtn=true`
|
|
|
})
|
|
|
+
|
|
|
}
|
|
|
} else if (item.taskType == "出库任务") {
|
|
|
if (item.statusFlag == 3) {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pageD/warehousings/ex_warehouse_detail?id=${item.id}`
|
|
|
+ url: `/pageD/warehousings/ex_warehouse_detail?id=${item.id}&isShowbtn=true`
|
|
|
})
|
|
|
} else {
|
|
|
uni.navigateTo({
|
|
|
- url: `/pageD/warehousings/ex_warehouse?id=${item.id}&goodsName=${item.goodsName}&contractNo=${item.contractNo}&consignee=${item.consignee}&carNo=${item.carNo}&tranCarNo=${item.tranCarNo}&boxNo=${item.boxNo}&titleNo=${item.titleNo}`
|
|
|
+ url: `/pageD/warehousings/ex_warehouse?id=${item.id}&goodsName=${item.goodsName}&contractNo=${item.contractNo}&consignee=${item.consignee}&carNo=${item.carNo}&tranCarNo=${item.tranCarNo}&boxNo=${item.boxNo}&titleNo=${item.titleNo}&isShowbtn=true`
|
|
|
+
|
|
|
})
|
|
|
}
|
|
|
}
|
|
@@ -467,9 +570,11 @@
|
|
|
border-radius: 3px;
|
|
|
margin: 3px;
|
|
|
}
|
|
|
- .introduce-section{
|
|
|
+
|
|
|
+ .introduce-section {
|
|
|
// background: red;
|
|
|
}
|
|
|
+
|
|
|
.introduce-section .title_b .title-tip {
|
|
|
font-size: 13px;
|
|
|
height: 40px;
|
|
@@ -508,7 +613,7 @@
|
|
|
height: 50px;
|
|
|
line-height: 50px;
|
|
|
border-bottom: 1px solid #EEEEEE;
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.introduce-section .title .title-tip-a {
|
|
@@ -554,18 +659,37 @@
|
|
|
/deep/.u-action-active {
|
|
|
margin-right: 6px;
|
|
|
}
|
|
|
- .content1-top{
|
|
|
+
|
|
|
+ .content1-top {
|
|
|
background: white;
|
|
|
padding: 20rpx;
|
|
|
border-radius: 0 0 30rpx 30rpx;
|
|
|
}
|
|
|
- .search-form{
|
|
|
+
|
|
|
+ .search-form {
|
|
|
margin-bottom: 20rpx;
|
|
|
}
|
|
|
- .title-row1{
|
|
|
+
|
|
|
+ .title-row1 {
|
|
|
font-size: 34rpx;
|
|
|
}
|
|
|
- .row2{
|
|
|
+
|
|
|
+ .row2 {
|
|
|
margin-top: 55rpx;
|
|
|
}
|
|
|
+
|
|
|
+ .top2 {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ .right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .right-contrent1 {
|
|
|
+ margin: 20rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|