冲突合并
This commit is contained in:
commit
f75cc28ec2
|
|
@ -46,6 +46,7 @@ declare global {
|
||||||
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
||||||
const onUnmounted: typeof import('vue')['onUnmounted']
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
||||||
const onUpdated: typeof import('vue')['onUpdated']
|
const onUpdated: typeof import('vue')['onUpdated']
|
||||||
|
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
|
||||||
const provide: typeof import('vue')['provide']
|
const provide: typeof import('vue')['provide']
|
||||||
const reactive: typeof import('vue')['reactive']
|
const reactive: typeof import('vue')['reactive']
|
||||||
const readonly: typeof import('vue')['readonly']
|
const readonly: typeof import('vue')['readonly']
|
||||||
|
|
@ -66,10 +67,13 @@ declare global {
|
||||||
const useAttrs: typeof import('vue')['useAttrs']
|
const useAttrs: typeof import('vue')['useAttrs']
|
||||||
const useCssModule: typeof import('vue')['useCssModule']
|
const useCssModule: typeof import('vue')['useCssModule']
|
||||||
const useCssVars: typeof import('vue')['useCssVars']
|
const useCssVars: typeof import('vue')['useCssVars']
|
||||||
|
const useId: typeof import('vue')['useId']
|
||||||
const useLink: typeof import('vue-router')['useLink']
|
const useLink: typeof import('vue-router')['useLink']
|
||||||
|
const useModel: typeof import('vue')['useModel']
|
||||||
const useRoute: typeof import('vue-router')['useRoute']
|
const useRoute: typeof import('vue-router')['useRoute']
|
||||||
const useRouter: typeof import('vue-router')['useRouter']
|
const useRouter: typeof import('vue-router')['useRouter']
|
||||||
const useSlots: typeof import('vue')['useSlots']
|
const useSlots: typeof import('vue')['useSlots']
|
||||||
|
const useTemplateRef: typeof import('vue')['useTemplateRef']
|
||||||
const watch: typeof import('vue')['watch']
|
const watch: typeof import('vue')['watch']
|
||||||
const watchEffect: typeof import('vue')['watchEffect']
|
const watchEffect: typeof import('vue')['watchEffect']
|
||||||
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||||
|
|
@ -78,6 +82,6 @@ declare global {
|
||||||
// for type re-export
|
// for type re-export
|
||||||
declare global {
|
declare global {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
|
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
|
||||||
import('vue')
|
import('vue')
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,13 +9,19 @@ declare module 'vue' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
Breadcrumb: typeof import('./src/components/Breadcrumb/index.vue')['default']
|
Breadcrumb: typeof import('./src/components/Breadcrumb/index.vue')['default']
|
||||||
ElButton: typeof import('element-plus/es')['ElButton']
|
ElButton: typeof import('element-plus/es')['ElButton']
|
||||||
|
<<<<<<< HEAD
|
||||||
ElCarousel: typeof import('element-plus/es')['ElCarousel']
|
ElCarousel: typeof import('element-plus/es')['ElCarousel']
|
||||||
ElCarouselItem: typeof import('element-plus/es')['ElCarouselItem']
|
ElCarouselItem: typeof import('element-plus/es')['ElCarouselItem']
|
||||||
|
=======
|
||||||
|
>>>>>>> main
|
||||||
ElCheckbox: typeof import('element-plus/es')['ElCheckbox']
|
ElCheckbox: typeof import('element-plus/es')['ElCheckbox']
|
||||||
ElCol: typeof import('element-plus/es')['ElCol']
|
ElCol: typeof import('element-plus/es')['ElCol']
|
||||||
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
|
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
|
||||||
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
|
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
|
||||||
|
<<<<<<< HEAD
|
||||||
ElDialog: typeof import('element-plus/es')['ElDialog']
|
ElDialog: typeof import('element-plus/es')['ElDialog']
|
||||||
|
=======
|
||||||
|
>>>>>>> main
|
||||||
ElForm: typeof import('element-plus/es')['ElForm']
|
ElForm: typeof import('element-plus/es')['ElForm']
|
||||||
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
||||||
ElIcon: typeof import('element-plus/es')['ElIcon']
|
ElIcon: typeof import('element-plus/es')['ElIcon']
|
||||||
|
|
@ -23,6 +29,7 @@ declare module 'vue' {
|
||||||
ElInput: typeof import('element-plus/es')['ElInput']
|
ElInput: typeof import('element-plus/es')['ElInput']
|
||||||
ElMenu: typeof import('element-plus/es')['ElMenu']
|
ElMenu: typeof import('element-plus/es')['ElMenu']
|
||||||
ElMenuItem: typeof import('element-plus/es')['ElMenuItem']
|
ElMenuItem: typeof import('element-plus/es')['ElMenuItem']
|
||||||
|
<<<<<<< HEAD
|
||||||
ElOption: typeof import('element-plus/es')['ElOption']
|
ElOption: typeof import('element-plus/es')['ElOption']
|
||||||
ElPagination: typeof import('element-plus/es')['ElPagination']
|
ElPagination: typeof import('element-plus/es')['ElPagination']
|
||||||
ElProgress: typeof import('element-plus/es')['ElProgress']
|
ElProgress: typeof import('element-plus/es')['ElProgress']
|
||||||
|
|
@ -32,6 +39,10 @@ declare module 'vue' {
|
||||||
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
||||||
ElTag: typeof import('element-plus/es')['ElTag']
|
ElTag: typeof import('element-plus/es')['ElTag']
|
||||||
ElUpload: typeof import('element-plus/es')['ElUpload']
|
ElUpload: typeof import('element-plus/es')['ElUpload']
|
||||||
|
=======
|
||||||
|
ElPagination: typeof import('element-plus/es')['ElPagination']
|
||||||
|
ElRow: typeof import('element-plus/es')['ElRow']
|
||||||
|
>>>>>>> main
|
||||||
EquipCard: typeof import('./src/components/equipCard.vue')['default']
|
EquipCard: typeof import('./src/components/equipCard.vue')['default']
|
||||||
EquipCardHall: typeof import('./src/components/equipCardHall/index.vue')['default']
|
EquipCardHall: typeof import('./src/components/equipCardHall/index.vue')['default']
|
||||||
EquipCardNew: typeof import('./src/components/equipCardNew/index.vue')['default']
|
EquipCardNew: typeof import('./src/components/equipCardNew/index.vue')['default']
|
||||||
|
|
|
||||||
|
|
@ -5,19 +5,145 @@
|
||||||
import { getOrderListApi } from 'http/api/usercenter/seekorder'
|
import { getOrderListApi } from 'http/api/usercenter/seekorder'
|
||||||
const queryParams = ref({})
|
const queryParams = ref({})
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const pageSize = 20
|
const pageSize = 10
|
||||||
const pageNumber = 1
|
const pageNumber = 1
|
||||||
const total: any = ref(0)
|
const total: any = ref(0)
|
||||||
|
const cardList= ref<any>([])
|
||||||
|
const status = 0
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
const getList = async () => {
|
// const getList = async () => {
|
||||||
const res: any = await getOrderListApi()
|
// const res: any = await getOrderListApi()
|
||||||
console.log('获取数据列表***', res)
|
// console.log('获取数据列表***', res)
|
||||||
tableData.value = res.rows
|
// tableData.value = res.rows
|
||||||
total.value = res.total
|
// total.value = res.total
|
||||||
|
// }
|
||||||
|
/** 查询列表 */
|
||||||
|
const getList = async()=> {
|
||||||
|
// if(this.dateRange.length>0){
|
||||||
|
// this.queryParams.startTime=this.dateRange[0]
|
||||||
|
// this.queryParams.endTime=this.dateRange[1]
|
||||||
|
// }else{
|
||||||
|
// this.queryParams.startTime=undefined
|
||||||
|
// this.queryParams.endTime=undefined
|
||||||
|
// }
|
||||||
|
cardList.value = [
|
||||||
|
{
|
||||||
|
company_name: '安徽博诺斯有限公司',
|
||||||
|
user_name: '王先生',
|
||||||
|
user_phone: '18725632356',
|
||||||
|
isChecked: false,
|
||||||
|
good_list: [
|
||||||
|
{
|
||||||
|
goods_pic:
|
||||||
|
'https://fc1tn.baidu.com/it/u=4185529537,1682541874&fm=202&src=766&fc=tdmatt&mola=new&crop=v1',
|
||||||
|
goods_name: 'W190挖掘机',
|
||||||
|
goods_code: '995221_JHL',
|
||||||
|
goods_type: '挖地型号996',
|
||||||
|
lease_date: '',
|
||||||
|
lease_pic: 300,
|
||||||
|
lease_day: 1,
|
||||||
|
goods_num: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
isChecked: false,
|
||||||
|
lease_date_string: '',
|
||||||
|
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
company_name: '安徽博诺斯有限公司',
|
||||||
|
user_name: '王先生',
|
||||||
|
user_phone: '18725632356',
|
||||||
|
isChecked: false,
|
||||||
|
good_list: [
|
||||||
|
{
|
||||||
|
goods_pic:
|
||||||
|
'https://fc1tn.baidu.com/it/u=4185529537,1682541874&fm=202&src=766&fc=tdmatt&mola=new&crop=v1',
|
||||||
|
goods_name: 'W190挖掘机',
|
||||||
|
goods_code: '995221_JHL',
|
||||||
|
goods_type: '挖地型号996',
|
||||||
|
lease_date: '',
|
||||||
|
lease_pic: 300,
|
||||||
|
lease_day: 0,
|
||||||
|
goods_num: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
isChecked: false,
|
||||||
|
lease_date_string: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
goods_pic:
|
||||||
|
'https://fc1tn.baidu.com/it/u=4185529537,1682541874&fm=202&src=766&fc=tdmatt&mola=new&crop=v1',
|
||||||
|
goods_name: 'W190挖掘机',
|
||||||
|
goods_code: '995221_JHL',
|
||||||
|
goods_type: '挖地型号996',
|
||||||
|
lease_date: '',
|
||||||
|
lease_pic: 300,
|
||||||
|
lease_day: 0,
|
||||||
|
goods_num: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
isChecked: false,
|
||||||
|
lease_date_string: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
goods_pic:
|
||||||
|
'https://fc1tn.baidu.com/it/u=4185529537,1682541874&fm=202&src=766&fc=tdmatt&mola=new&crop=v1',
|
||||||
|
goods_name: 'W190挖掘机',
|
||||||
|
goods_code: '995221_JHL',
|
||||||
|
goods_type: '挖地型号996',
|
||||||
|
lease_date: '',
|
||||||
|
lease_pic: 300,
|
||||||
|
lease_day: 0,
|
||||||
|
goods_num: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
isChecked: false,
|
||||||
|
lease_date_string: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
company_name: '安徽博诺斯有限公司',
|
||||||
|
user_name: '王先生',
|
||||||
|
user_phone: '18725632356',
|
||||||
|
isChecked: false,
|
||||||
|
good_list: [
|
||||||
|
{
|
||||||
|
goods_pic:
|
||||||
|
'https://fc1tn.baidu.com/it/u=4185529537,1682541874&fm=202&src=766&fc=tdmatt&mola=new&crop=v1',
|
||||||
|
goods_name: 'W190挖掘机',
|
||||||
|
goods_code: '995221_JHL',
|
||||||
|
goods_type: '挖地型号996',
|
||||||
|
lease_date: '',
|
||||||
|
lease_pic: 300,
|
||||||
|
lease_day: 0,
|
||||||
|
goods_num: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
isChecked: false,
|
||||||
|
lease_date_string: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
goods_pic:
|
||||||
|
'https://fc1tn.baidu.com/it/u=4185529537,1682541874&fm=202&src=766&fc=tdmatt&mola=new&crop=v1',
|
||||||
|
goods_name: 'W190挖掘机',
|
||||||
|
goods_code: '995221_JHL',
|
||||||
|
goods_type: '挖地型号996',
|
||||||
|
lease_date: '',
|
||||||
|
lease_pic: 300,
|
||||||
|
lease_day: 0,
|
||||||
|
goods_num: 0,
|
||||||
|
totalAmount: 0,
|
||||||
|
isChecked: false,
|
||||||
|
lease_date_string: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
total.value = cardList.value.length;
|
||||||
|
console.log(total.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
getList()
|
getList()
|
||||||
|
})
|
||||||
|
|
||||||
// 查询按钮
|
// 查询按钮
|
||||||
const queryTableList = () => {
|
const queryTableList = () => {
|
||||||
|
|
@ -71,6 +197,7 @@
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<!-- 订单管理 -->
|
<!-- 订单管理 -->
|
||||||
|
<div class="container">
|
||||||
<el-form :model="queryParams" :inline="true" size="small">
|
<el-form :model="queryParams" :inline="true" size="small">
|
||||||
<el-form-item label="订单编号:" prop="menuName">
|
<el-form-item label="订单编号:" prop="menuName">
|
||||||
<el-input />
|
<el-input />
|
||||||
|
|
@ -96,73 +223,262 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="queryTableList">查询</el-button>
|
<el-button type="primary" @click="queryTableList">查询</el-button>
|
||||||
<el-button type="success">保存</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<!-- 表格 -->
|
<div class="cart-tbody" v-for="(item, index) in cardList" :key="index">
|
||||||
<el-table
|
<el-row style="border-bottom: 1px solid #ccc">
|
||||||
:data="tableData"
|
<el-col :span="1">
|
||||||
style="width: 100%"
|
<div style="text-align: center">
|
||||||
show-overflow-tooltip
|
<el-checkbox
|
||||||
:header-cell-style="{
|
v-model="item.isChecked"
|
||||||
background: '#3E98FF',
|
@change="onChangeCompany($event, index, item)"
|
||||||
color: '#fff'
|
>
|
||||||
}"
|
</el-checkbox>
|
||||||
height="440px"
|
</div>
|
||||||
max-height="440px">
|
</el-col>
|
||||||
<el-table-column align="center" prop="code" label="订单编号" />
|
<el-col :span="22">
|
||||||
<el-table-column align="center" prop="supplierCompany" label="供应商" />
|
<el-row>
|
||||||
<el-table-column align="center" prop="time" label="订单创建日期" />
|
<el-col :span="7">
|
||||||
<el-table-column align="center" prop="typeName" label="装备类型" />
|
<div class="item" style="flex-shrink: 0;margin-bottom: 5px;font-size: 12px;">
|
||||||
<el-table-column align="center" prop="deviceName" label="装备名称" />
|
<span>订单编号:</span>
|
||||||
<el-table-column align="center" label="订单状态">
|
{{ item.company_name }}
|
||||||
<template #default="{ row }">
|
</div>
|
||||||
<el-tag v-if="row.orderStatus == 31">待确认</el-tag>
|
</el-col>
|
||||||
<el-tag v-if="row.orderStatus == 32">待合同上传</el-tag>
|
<el-col :span="7">
|
||||||
<el-tag v-if="row.orderStatus == 35">待收货</el-tag>
|
<div class="item" style="flex-shrink: 0;margin-bottom: 5px;font-size: 12px;">
|
||||||
<el-tag v-if="row.orderStatus == 36">进行中</el-tag>
|
<span class="user-name">下单时间:</span>
|
||||||
</template>
|
{{ item.user_name }}
|
||||||
</el-table-column>
|
</div>
|
||||||
<el-table-column align="center" prop="name" label="操作" width="160px">
|
</el-col>
|
||||||
<template #default="scope">
|
<el-col :span="7">
|
||||||
<el-button size="small" type="primary" @click="clickPreviewDetails(scope.row)">
|
<div class="item" style="flex-shrink: 0;margin-bottom: 5px;font-size: 12px;">
|
||||||
查看
|
<span class="user-phone">装备所属公司:</span>
|
||||||
</el-button>
|
{{ item.user_phone }}
|
||||||
<el-button
|
</div>
|
||||||
size="small"
|
</el-col>
|
||||||
type="danger"
|
<el-col :span="2">
|
||||||
@click="clickRentingTermination"
|
<div style="flex-shrink: 0;margin-bottom: 1px;font-size: 7px;">
|
||||||
v-if="scope.row.orderStatus == 36">
|
<el-button v-if="status==0" class="item" type="primary" size="small">出库</el-button>
|
||||||
退租
|
<el-button v-if="status==0" class="item" type="primary" size="small">驳回</el-button>
|
||||||
</el-button>
|
</div>
|
||||||
<el-button
|
</el-col>
|
||||||
size="small"
|
</el-row>
|
||||||
type="warning"
|
|
||||||
@click="clickRenewalOfLease"
|
|
||||||
v-if="scope.row.orderStatus == 36">
|
|
||||||
续租
|
|
||||||
</el-button>
|
|
||||||
<el-button
|
|
||||||
size="small"
|
|
||||||
type="success"
|
|
||||||
@click="clickConfirmReceipt(scope.row)"
|
|
||||||
v-if="scope.row.orderStatus == 35">
|
|
||||||
确认收货
|
|
||||||
</el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="7">
|
||||||
|
<div class="item" style="flex-shrink: 0;margin-bottom: 5px;font-size: 12px;">
|
||||||
|
<span>出租方联系电话:</span>
|
||||||
|
{{ item.company_name }}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="7">
|
||||||
|
<div class="item" style="flex-shrink: 0;margin-bottom: 5px;font-size: 12px;">
|
||||||
|
<span class="user-name">承租方联系电话:</span>
|
||||||
|
{{ item.user_name }}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="7">
|
||||||
|
<div class="item" style="flex-shrink: 0;margin-bottom: 5px;font-size: 12px;">
|
||||||
|
<span class="user-phone">承租方地址:</span>
|
||||||
|
{{ item.user_phone }}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-row class="cart-list" v-for="(goods, j) in item.good_list" :key="j">
|
||||||
|
<el-col :span="1">
|
||||||
|
<div style="text-align: center">
|
||||||
|
<el-checkbox v-model="goods.isChecked" @change="onChangeGoods(index)">
|
||||||
|
</el-checkbox>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8" class="goods-info">
|
||||||
|
<el-col :span="7">
|
||||||
|
<img :src="goods.goods_pic" alt="" />
|
||||||
|
</el-col>
|
||||||
|
<div class="goods-code">
|
||||||
|
<div style="font-size: 12px; font-weight: bold">{{ goods.goods_name }}</div>
|
||||||
|
<div>租期: {{ goods.lease_day }}{{" "+"天"}}</div>
|
||||||
|
<div>租金:{{ goods.lease_pic }}{{" "+"元/天"}}</div>
|
||||||
|
<div>数量:{{ goods.goods_num }}{{" "+"台"}}</div>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="2">
|
||||||
|
<div style="font-size: 14px; font-weight: bold;margin-bottom:10px">总费用</div>
|
||||||
|
<div class="red-font">1500</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<div style="font-size: 14px; font-weight: bold;margin-bottom:10px">租期</div>
|
||||||
|
<div style="color:black;font-weight: bold;">
|
||||||
|
{{ "2024-10-11"+" " }}{{"至"}}{{ " "+"2024-10-11" }}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="2">
|
||||||
|
<div style="font-size: 14px; font-weight: bold;margin-bottom:10px">
|
||||||
|
{{ "待出租"}}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="3">
|
||||||
|
<div>
|
||||||
|
<el-button
|
||||||
|
@click="handleViewOrder(j)"
|
||||||
|
type="text"
|
||||||
|
size="mini"
|
||||||
|
style="color: #blue; font-weight: bold"
|
||||||
|
>
|
||||||
|
订单详情
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
@click="handleViewOrder(j)"
|
||||||
|
type="text"
|
||||||
|
size="mini"
|
||||||
|
style="color: #blue; font-weight: bold"
|
||||||
|
>
|
||||||
|
租赁协议
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
@click="handleViewOrder(j)"
|
||||||
|
type="text"
|
||||||
|
size="mini"
|
||||||
|
style="color: #blue; font-weight: bold"
|
||||||
|
>
|
||||||
|
退租检修
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
@click="handleViewOrder(j)"
|
||||||
|
type="text"
|
||||||
|
size="mini"
|
||||||
|
style="color: #blue; font-weight: bold"
|
||||||
|
>
|
||||||
|
费用结算
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
<PagingComponent
|
<PagingComponent
|
||||||
@getList="getList"
|
@getList="getList"
|
||||||
:pageSize="pageSize"
|
:pageSize="pageSize"
|
||||||
:pageNumber="pageNumber"
|
:pageNumber="pageNumber"
|
||||||
:total="total" />
|
:total="total" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style>
|
<style lang="scss" scoped>
|
||||||
.el-form {
|
|
||||||
margin: 15px 0;
|
.container {
|
||||||
|
width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 10px;
|
||||||
|
background: #eeeff6;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
|
.cart-title {
|
||||||
|
margin-top: 10px;
|
||||||
|
padding: 10px 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
letter-spacing: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cart-title div:first-child {
|
||||||
|
width: 5px;
|
||||||
|
height: 20px;
|
||||||
|
background-color: #4fabfe;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cart-th {
|
||||||
|
margin: 15px 0;
|
||||||
|
div {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cart-tbody {
|
||||||
|
background: #fff;
|
||||||
|
padding: 8px 12px;
|
||||||
|
margin: 10px;
|
||||||
|
|
||||||
|
.cart-user-info {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 13px;
|
||||||
|
|
||||||
|
.user-name,
|
||||||
|
.user-phone {
|
||||||
|
padding: 3px 18px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-name {
|
||||||
|
margin-left: 20px;
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cart-list {
|
||||||
|
margin: 15px 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 13px;
|
||||||
|
div {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.goods-info {
|
||||||
|
display: flex;
|
||||||
|
align-content: center;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 140px;
|
||||||
|
height: 80px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.goods-code {
|
||||||
|
margin-left: 70px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-around;
|
||||||
|
|
||||||
|
div {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.lease-date {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.red-font {
|
||||||
|
color: #ff4800;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.protocol-handle {
|
||||||
|
background: #fff;
|
||||||
|
padding: 8px 12px;
|
||||||
|
margin: 10px;
|
||||||
|
font-size: 13px;
|
||||||
|
|
||||||
|
.checkbox-container a {
|
||||||
|
color: #ff4800;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue