2023-10-31 18:16:38 +08:00
|
|
|
<template>
|
2023-11-03 08:52:27 +08:00
|
|
|
<div class="app-container">
|
2023-10-31 18:16:38 +08:00
|
|
|
<!-- 存油卡-->
|
2023-11-03 08:52:27 +08:00
|
|
|
<el-card style="margin-bottom: 20px">
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-radio-group v-model="queryParams.type" @input="radiovalue">
|
2023-11-03 08:52:27 +08:00
|
|
|
<el-radio-button v-for="dict in dict.type.oil_type"
|
|
|
|
:key="dict.value"
|
|
|
|
:label="dict.label"
|
|
|
|
:value="dict.value"
|
|
|
|
></el-radio-button>
|
|
|
|
</el-radio-group>
|
2023-11-06 10:31:30 +08:00
|
|
|
|
2023-11-03 08:52:27 +08:00
|
|
|
<div class="top-sousuo">
|
2023-11-25 15:31:09 +08:00
|
|
|
<el-select v-model="queryParams.oilType" clearable placeholder="请选择">
|
2023-11-03 08:52:27 +08:00
|
|
|
<el-option
|
|
|
|
v-for="dict in oilList"
|
2024-01-03 18:45:35 +08:00
|
|
|
:key="dict.id"
|
2023-11-03 08:52:27 +08:00
|
|
|
:label="dict.oilName"
|
2024-01-03 18:45:35 +08:00
|
|
|
:value="dict.id">
|
2023-11-03 08:52:27 +08:00
|
|
|
</el-option>
|
|
|
|
</el-select>
|
2023-11-06 11:53:56 +08:00
|
|
|
<el-select v-model="queryParams.activeStatus" placeholder="请选择" style="margin:0px 20px">
|
2023-11-03 08:52:27 +08:00
|
|
|
<el-option
|
|
|
|
v-for="item in option"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.value">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
<el-button type="primary" style="margin-left: 20px" icon="el-icon-search" @click="getlist">搜索</el-button>
|
|
|
|
</div>
|
|
|
|
</el-card>
|
|
|
|
<el-card style="margin-bottom: 20px">
|
|
|
|
<el-button type="primary" icon="el-icon-plus" style="margin-bottom: 10px " @click="addoilBlock()">新增锁价活动</el-button>
|
|
|
|
<el-alert
|
|
|
|
title="当前配置为锁价活动、锁价活动为充值后所得升数进行锁定,卡类型下每个油品最多可创建6个锁价充值活动"
|
|
|
|
type="info"
|
|
|
|
:closable="false">
|
|
|
|
</el-alert>
|
|
|
|
<el-table
|
|
|
|
:data="tableData"
|
|
|
|
style="width: 100%">
|
|
|
|
<el-table-column
|
|
|
|
prop="id"
|
2023-11-17 15:12:06 +08:00
|
|
|
label="活动编号"
|
2023-11-03 08:52:27 +08:00
|
|
|
width="110">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="type"
|
|
|
|
label="油卡类型"
|
|
|
|
width="140">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>{{scope.row.type}}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="oilType"
|
|
|
|
label="油品"
|
|
|
|
width="110">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="rechargeBalance"
|
|
|
|
label="充值金额"
|
|
|
|
width="110">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>{{scope.row.rechargeBalance}}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="lockupPrice"
|
|
|
|
label="锁价单价"
|
|
|
|
width="110">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>{{scope.row.lockupPrice}}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="incomeLitres"
|
|
|
|
label="升数"
|
|
|
|
width="110">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>{{scope.row.incomeLitres}}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="points"
|
|
|
|
label="赠送积分"
|
|
|
|
width="110">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>{{scope.row.points}}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="activeTime"
|
|
|
|
label="活动时间"
|
|
|
|
width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span v-if="scope.row.activeTime == 1">不限时间</span>
|
|
|
|
<span v-if="scope.row.activeTime == 2">自定义时间</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="activityProgress"
|
|
|
|
label="活动进度"
|
|
|
|
width="110">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag type="info"v-if="scope.row.activityProgress == 2">已结束</el-tag>
|
|
|
|
<el-tag type="success" v-if="scope.row.activityProgress == 1">进行中</el-tag>
|
|
|
|
<el-tag type="danger" v-if="scope.row.activityProgress == 0">待开始</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
2023-11-03 15:58:40 +08:00
|
|
|
prop="activeStatus"
|
2023-11-03 08:52:27 +08:00
|
|
|
label="状态"
|
|
|
|
width="100">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<el-switch
|
2023-11-03 15:58:40 +08:00
|
|
|
v-model="scope.row.activeStatus"
|
|
|
|
active-value="1"
|
|
|
|
inactive-value="2"
|
2023-11-03 08:52:27 +08:00
|
|
|
active-color="#409EFF"
|
|
|
|
inactive-color="#909399"
|
|
|
|
@change="posteid(scope.row)"
|
|
|
|
>
|
|
|
|
</el-switch>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="createTime"
|
|
|
|
width="240"
|
|
|
|
label="更新时间">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="编辑"
|
|
|
|
width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-edit"
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
>修改</el-button>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<pagination
|
|
|
|
v-show="total>0"
|
|
|
|
:total="total"
|
|
|
|
:page.sync="pageNo"
|
|
|
|
:limit.sync="pageSize"
|
|
|
|
@pagination="getlist"
|
|
|
|
/>
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
<el-dialog
|
2024-01-05 18:19:48 +08:00
|
|
|
title="囤油卡操作"
|
2023-11-03 08:52:27 +08:00
|
|
|
:visible.sync="centerDialogVisible"
|
2023-11-06 10:31:30 +08:00
|
|
|
width="36%"
|
2023-11-03 08:52:27 +08:00
|
|
|
center>
|
|
|
|
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="80px" class="demo-ruleForm">
|
2023-11-03 08:52:27 +08:00
|
|
|
|
|
|
|
<el-form-item label="油品类型" prop="oilType">
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-select v-model="ruleForm.oilType" placeholder="请选择" >
|
2023-11-03 08:52:27 +08:00
|
|
|
<el-option
|
|
|
|
v-for="dict in oilList"
|
2024-01-10 13:54:45 +08:00
|
|
|
:key="dict.id"
|
2023-11-03 08:52:27 +08:00
|
|
|
:label="dict.oilName"
|
2024-01-10 13:54:45 +08:00
|
|
|
:value="dict.id">
|
2023-11-03 08:52:27 +08:00
|
|
|
</el-option>
|
|
|
|
</el-select>
|
2023-11-17 13:09:47 +08:00
|
|
|
|
2023-11-03 08:52:27 +08:00
|
|
|
<!-- <el-radio-group v-model="ruleForm.oilType" >-->
|
|
|
|
<!-- <el-radio-->
|
|
|
|
<!-- v-for="dict in oilList"-->
|
|
|
|
<!-- :key="dict.id"-->
|
|
|
|
<!-- :label="dict.oilName"-->
|
|
|
|
<!-- :value="dict.id"-->
|
|
|
|
<!-- />-->
|
|
|
|
<!-- </el-radio-group>-->
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-form-item label="锁价单价" prop="lockupPrice">
|
2023-11-06 11:53:56 +08:00
|
|
|
<el-input v-model="ruleForm.lockupPrice" min="1">
|
2023-11-03 08:52:27 +08:00
|
|
|
<template slot="append">元/升</template>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-form-item label="充值金额" prop="rechargeBalance">
|
2023-11-06 11:53:56 +08:00
|
|
|
<el-input v-model="ruleForm.rechargeBalance" min="1">
|
2023-11-03 08:52:27 +08:00
|
|
|
<template slot="append">元</template>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-form-item label="所得升数" prop="incomeLitres">
|
2023-11-25 15:31:09 +08:00
|
|
|
<el-input v-model="ruleForm.incomeLitres.toFixed(2)">
|
2023-11-03 08:52:27 +08:00
|
|
|
<template slot="append">升</template>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-form-item label="赠送积分" prop="points">
|
2023-11-03 08:52:27 +08:00
|
|
|
<el-input v-model="ruleForm.points">
|
|
|
|
<template slot="append">分</template>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="活动时间" prop="resource">
|
|
|
|
<el-radio-group v-model="ruleForm.activeTime">
|
|
|
|
<el-radio label="1">不限时间</el-radio>
|
|
|
|
<el-radio label="2">自定义时间</el-radio>
|
|
|
|
</el-radio-group>
|
|
|
|
</el-form-item>
|
2023-11-03 15:45:54 +08:00
|
|
|
|
|
|
|
<el-form-item label="时间范围" v-if="ruleForm.activeTime == 2" :label-width="formLabelWidth" prop="startTime">
|
2023-11-06 10:31:30 +08:00
|
|
|
<div style="width: 100%;display: flex;align-items: center ">
|
|
|
|
<div style="width: 45%">
|
|
|
|
<el-date-picker
|
|
|
|
v-model="ruleForm.startTime"
|
|
|
|
type="datetime"
|
|
|
|
placeholder="开始日期">
|
|
|
|
</el-date-picker>
|
|
|
|
</div>
|
|
|
|
<div style="width: 5%">
|
|
|
|
-
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="width: 45%">
|
|
|
|
<el-date-picker
|
|
|
|
v-model="ruleForm.endTime"
|
|
|
|
type="datetime"
|
|
|
|
placeholder="结束日期">
|
|
|
|
</el-date-picker>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2023-11-03 15:45:54 +08:00
|
|
|
|
2023-11-06 10:31:30 +08:00
|
|
|
|
|
|
|
</el-form-item>
|
2023-11-03 08:52:27 +08:00
|
|
|
<el-form-item label="活动状态" prop="resource">
|
|
|
|
<el-radio-group v-model="ruleForm.activeStatus">
|
|
|
|
<el-radio label="1">启用</el-radio>
|
|
|
|
<el-radio label="2">禁用</el-radio>
|
|
|
|
</el-radio-group>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
|
<el-button @click="centerDialogVisible = false">取 消</el-button>
|
2023-11-06 10:31:30 +08:00
|
|
|
<el-button type="primary" @click="postadd(ruleForm)">确 定</el-button>
|
2023-11-03 08:52:27 +08:00
|
|
|
</span>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
2023-10-31 18:16:38 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-01-05 18:19:48 +08:00
|
|
|
import { getList,oilName,addList,eitList,getById} from "@/api/EventMarketing/oilBlock";
|
2023-10-31 18:16:38 +08:00
|
|
|
export default {
|
2023-11-03 08:52:27 +08:00
|
|
|
dicts: ['oil_type'],
|
|
|
|
name: 'index',
|
|
|
|
data(){
|
|
|
|
return{
|
|
|
|
value:'',
|
|
|
|
type:0,
|
|
|
|
centerDialogVisible:false,
|
|
|
|
value1:'',
|
|
|
|
total:0,
|
|
|
|
pageNo:1,
|
|
|
|
pageSize:10,
|
|
|
|
option: [
|
|
|
|
{
|
|
|
|
value: '',
|
|
|
|
label: '全部'
|
|
|
|
},
|
|
|
|
{
|
2023-11-06 11:53:56 +08:00
|
|
|
value: '1',
|
2023-11-03 08:52:27 +08:00
|
|
|
label: '正常'
|
|
|
|
}, {
|
2023-11-06 11:53:56 +08:00
|
|
|
value: '2',
|
2023-11-03 08:52:27 +08:00
|
|
|
label: '禁用'
|
|
|
|
},],
|
|
|
|
tableData: [],
|
|
|
|
oilList:[],
|
|
|
|
ruleForm:{
|
|
|
|
oilType:2,
|
2023-11-06 10:31:30 +08:00
|
|
|
lockupPrice: 0 ,
|
2023-11-06 11:53:56 +08:00
|
|
|
rechargeBalance:0,
|
|
|
|
incomeLitres:0,
|
2023-11-03 08:52:27 +08:00
|
|
|
points:'',
|
2023-11-03 15:45:54 +08:00
|
|
|
status:'0',
|
2023-11-03 08:52:27 +08:00
|
|
|
activeTime:'1',
|
2023-11-03 15:45:54 +08:00
|
|
|
activeStatus:'0'
|
2023-11-03 08:52:27 +08:00
|
|
|
},
|
|
|
|
queryParams:{
|
|
|
|
type:'柴油',
|
|
|
|
oilType:'',
|
2023-11-06 11:53:56 +08:00
|
|
|
activeStatus:'',
|
2023-11-03 08:52:27 +08:00
|
|
|
pageNo:1,
|
|
|
|
pageSize:10,
|
|
|
|
},
|
2023-11-06 10:31:30 +08:00
|
|
|
rules:{
|
|
|
|
oilType: [
|
|
|
|
{ required: true, message: '不能为空', trigger: 'blur' },
|
|
|
|
],
|
|
|
|
lockupPrice: [
|
|
|
|
{ required: true, message: '不能为空', trigger: 'blur' },
|
|
|
|
],
|
|
|
|
rechargeBalance: [
|
|
|
|
{ required: true, message: '不能为空', trigger: 'blur' },
|
|
|
|
],
|
|
|
|
incomeLitres: [
|
|
|
|
{ required: true, message: '不能为空', trigger: 'blur' },
|
|
|
|
],
|
|
|
|
points: [
|
|
|
|
{ required: true, message: '不能为空', trigger: 'blur' },
|
|
|
|
],
|
|
|
|
}
|
2023-11-03 08:52:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.getlist()
|
2023-11-25 15:31:09 +08:00
|
|
|
this.radiovalue()
|
2023-11-06 10:31:30 +08:00
|
|
|
},
|
|
|
|
watch:{
|
2023-11-06 11:53:56 +08:00
|
|
|
'ruleForm.rechargeBalance':{
|
|
|
|
handler: function() {
|
2023-11-17 13:09:47 +08:00
|
|
|
if(this.ruleForm.rechargeBalance != 0 && this.ruleForm.lockupPrice != 0 ){
|
|
|
|
this.ruleForm.incomeLitres = this.ruleForm.rechargeBalance / this.ruleForm.lockupPrice
|
2023-11-25 15:31:09 +08:00
|
|
|
|
2023-11-17 13:09:47 +08:00
|
|
|
}else {
|
|
|
|
this.ruleForm.incomeLitres = 0
|
|
|
|
}
|
|
|
|
|
2023-11-06 11:53:56 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
'ruleForm.lockupPrice':{
|
|
|
|
handler: function() {
|
2023-11-17 13:09:47 +08:00
|
|
|
|
|
|
|
if(this.ruleForm.rechargeBalance != 0 && this.ruleForm.lockupPrice != 0 ){
|
|
|
|
this.ruleForm.incomeLitres = this.ruleForm.rechargeBalance / this.ruleForm.lockupPrice
|
2023-11-25 15:31:09 +08:00
|
|
|
|
2023-11-17 13:09:47 +08:00
|
|
|
}else {
|
|
|
|
this.ruleForm.incomeLitres = 0
|
|
|
|
}
|
2023-11-06 11:53:56 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
// 计算属性很重要的特性: 带缓存, 性能极强
|
|
|
|
// 在第一次使用该属性时进行计算, 计算后将结果缓存起来, 后面如果还有其他地方用到, 会直接从缓存中取值, 不会再次计算
|
|
|
|
// 如果依赖的数据更新, 也会重新计算, 然后重复上述操作
|
|
|
|
totalCount () {
|
|
|
|
console.log('我是 computed 里的求和属性')
|
|
|
|
this.ruleForm.incomeLitres = this.ruleForm.rechargeBalance / this.ruleForm.lockupPrice
|
|
|
|
return this.ruleForm.incomeLitres
|
|
|
|
}
|
2023-11-03 08:52:27 +08:00
|
|
|
},
|
2023-11-06 11:53:56 +08:00
|
|
|
|
2023-11-03 08:52:27 +08:00
|
|
|
methods:{
|
2023-11-17 13:09:47 +08:00
|
|
|
//
|
2023-11-06 10:31:30 +08:00
|
|
|
radiovalue(){
|
|
|
|
|
|
|
|
this.oilList = []
|
|
|
|
oilName(this.queryParams.type).then(res=>{
|
2024-01-10 13:54:45 +08:00
|
|
|
this.oilList = res.data.records
|
|
|
|
console.log('我的油站' ,res)
|
2023-11-06 10:31:30 +08:00
|
|
|
})
|
|
|
|
},
|
2023-11-03 08:52:27 +08:00
|
|
|
getlist(){
|
2023-11-03 15:45:54 +08:00
|
|
|
this.queryParams.pageNo=this.pageNo
|
|
|
|
this.queryParams.pageSize=this.pageSize
|
2023-11-03 08:52:27 +08:00
|
|
|
getList(this.queryParams).then(res=>{
|
|
|
|
if(res.code == 200){
|
|
|
|
this.tableData = res.data.records
|
|
|
|
this.total = res.data.total;
|
|
|
|
}
|
|
|
|
})
|
2023-11-06 10:31:30 +08:00
|
|
|
|
2023-11-03 08:52:27 +08:00
|
|
|
},
|
|
|
|
addoilBlock(){
|
|
|
|
this.ruleForm = {
|
|
|
|
type:this.queryParams.type,
|
2023-11-06 11:53:56 +08:00
|
|
|
lockupPrice: 0 ,
|
|
|
|
rechargeBalance:0,
|
|
|
|
incomeLitres:0,
|
2023-11-17 13:09:47 +08:00
|
|
|
|
2023-11-03 08:52:27 +08:00
|
|
|
points:'',
|
|
|
|
activeTime:'1',
|
2023-11-03 15:45:54 +08:00
|
|
|
activeStatus:'1',
|
|
|
|
tatus:'1'
|
2023-11-03 08:52:27 +08:00
|
|
|
},
|
2023-11-06 10:31:30 +08:00
|
|
|
this.radiovalue()
|
2023-11-03 08:52:27 +08:00
|
|
|
this.centerDialogVisible = true
|
|
|
|
},
|
|
|
|
posteid(data){
|
|
|
|
eitList(data).then(res=>{
|
|
|
|
if (res.code == 200){
|
|
|
|
this.$message.success('修改成功')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
2023-11-06 10:31:30 +08:00
|
|
|
postadd(formName){
|
|
|
|
if( this.ruleForm.oilType =='' || this.ruleForm.lockupPrice =='' || this.ruleForm.rechargeBalance =='' || this.ruleForm.incomeLitres =='' || this.ruleForm.points =='' ){
|
|
|
|
this.$message.error("必填项不能为空")
|
|
|
|
return
|
|
|
|
}
|
2023-11-03 08:52:27 +08:00
|
|
|
this.ruleForm.type = this.queryParams.type
|
|
|
|
this.ruleForm.status = '1'
|
|
|
|
if( this.ruleForm.id ){
|
|
|
|
console.log("修改")
|
|
|
|
eitList(this.ruleForm).then(res=>{
|
|
|
|
if (res.code == 200){
|
|
|
|
this.$message.success('修改成功')
|
2023-11-06 10:31:30 +08:00
|
|
|
this.getlist()
|
2023-11-03 08:52:27 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}else{
|
|
|
|
addList(this.ruleForm).then(res=>{
|
|
|
|
if (res.code == 200){
|
|
|
|
this.$message.success('新增成功')
|
2023-11-06 10:31:30 +08:00
|
|
|
this.getlist()
|
2023-11-03 08:52:27 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2023-11-06 10:31:30 +08:00
|
|
|
|
2023-11-03 08:52:27 +08:00
|
|
|
this.centerDialogVisible = false
|
|
|
|
},
|
|
|
|
handleUpdate(data){
|
2024-01-05 18:19:48 +08:00
|
|
|
getById(data.id).then(res=>{
|
|
|
|
if (res.code == 200){
|
|
|
|
this.ruleForm = res.data
|
|
|
|
this.centerDialogVisible = true
|
|
|
|
}
|
|
|
|
})
|
2023-11-03 08:52:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-10-31 18:16:38 +08:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2023-11-03 08:52:27 +08:00
|
|
|
.top-sousuo{
|
|
|
|
margin-top: 10px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2023-10-31 18:16:38 +08:00
|
|
|
</style>
|