<template>
|
<div>
|
<list-condition-template ref="table" :isExistBtn="true" :form="listQuery" :formLabel="formLabel"
|
:tableData="tableData" :total="total" :showFormItem='showFormItem'
|
@page-info-change="handlePageInfoChange" :dataKey="'key'">
|
<template slot="otherElement">
|
<!-- <el-col class="formLayout" :xs='12' :sm='12' :md='12' :lg='6' :offset="0"
|
style="display: flex;">
|
<el-form-item label="退款状态:" style="flex-grow:1;" v-if="name === 'refundAuditInfo' "
|
prop="refundStatus">
|
<el-select placeholder="请选择退款状态" style="width:calc(100% - 75px);"
|
v-model="listQuery.refundStatus" clearable>
|
<el-option v-for="item in refundStatusArray"
|
v-show="(name === 'refundAuditInfo' && item.id !=='4') || name === 'refundAfterInfo' "
|
:key="item.id" :value="item.id" :label="item.name"></el-option>
|
</el-select>
|
</el-form-item>
|
</el-col> -->
|
<el-col :span="24" :offset="0" class="buttonPosition">
|
<el-button size="mini" type="primary" @click="queryData">查询</el-button>
|
<el-button size="mini" @click="resetQuery">重置</el-button>
|
<el-button type="text" @click.stop="toggleForm">
|
{{showFormItem ? '收起' : '展开'}} <i
|
:class="showFormItem?'el-icon-arrow-up':'el-icon-arrow-down'"></i>
|
</el-button>
|
</el-col>
|
</template>
|
<template slot="columns">
|
<el-table-column type="expand">
|
<template slot-scope="props">
|
<el-table border :data="props.row.spuResultInfoList">
|
<el-table-column type="index" align="center" label="序号" width="80px">
|
</el-table-column>
|
<el-table-column label="商品图片" align="center">
|
<template slot-scope="scope">
|
<product-img :imgUrl="scope.row.imgUrl"></product-img>
|
</template>
|
</el-table-column>
|
<el-table-column label="商品" prop="spuName" show-overflow-tooltip>
|
<template slot-scope="scope">
|
<span class="giftStyle" v-if="scope.row.promotionType === '2'">赠</span>
|
<span>{{scope.row.spuName}}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="商品规格">
|
<template slot-scope="scope">
|
{{ scope.row.skuProps && JSON.parse(scope.row.skuProps).length ? JSON.parse(scope.row.skuProps).map(item=>item.propValueName).join('/') : '-'}}
|
</template>
|
</el-table-column>
|
<el-table-column label="退款金额(元)">
|
<template slot-scope="scope">
|
<span v-if="scope.row.promotionType !== '2'">
|
{{scope.row.totelAmtAct ? '¥' + scope.row.totelAmtAct.toFixed(2) : '-'}}
|
</span>
|
<span v-else>-</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="数量" width="300px">
|
<template slot-scope="scope">
|
{{scope.row.buyQuantity}} *
|
{{ scope.row.expInfo ? JSON.parse(scope.row.expInfo).skuReduceStorage : ''}}
|
({{scope.row.spuUnit ? scope.row.spuUnit : '瓶'}})
|
</template>
|
</el-table-column>
|
</el-table>
|
</template>
|
</el-table-column>
|
<el-table-column label="订单编号" prop="omsOrderRefund.orderId" width="180"
|
show-overflow-tooltip>
|
<template slot-scope="scope">
|
<el-link class="urlLink" @click="lookOrderInfo(scope.row)">
|
{{ scope.row.omsOrderRefund.orderId }}</el-link>
|
</template>
|
</el-table-column>
|
<el-table-column label="退款编号" width="180" show-overflow-tooltip>
|
<template slot-scope="scope">
|
<span>{{scope.row.omsOrderRefund ? scope.row.omsOrderRefund.orderRefundId : '-'}}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="用户名" prop="omsOrderRefund.creatorName" width="140"
|
show-overflow-tooltip>
|
<template slot-scope="scope">
|
{{scope.row.omsOrderRefund &&scope.row.omsOrderRefund.creatorName ? scope.row.omsOrderRefund.creatorName : '-'}}
|
</template>
|
</el-table-column>
|
<el-table-column label="店铺名称" show-overflow-tooltip width="160">
|
<template slot-scope="scope">
|
{{scope.row.spuResultInfoList && scope.row.spuResultInfoList.length ? scope.row.shopName = scope.row.spuResultInfoList[0].shopName : '-'}}
|
</template>
|
</el-table-column>
|
<el-table-column label="申请时间" prop="omsOrderRefund.applicationTime" width="180">
|
</el-table-column>
|
<el-table-column label="退款金额" prop="omsOrderRefund.refundAmount">
|
<template slot-scope="scope">
|
{{scope.row.omsOrderRefund.refundAmount ?'¥'+ scope.row.omsOrderRefund.refundAmount.toFixed(2) : '-'}}
|
</template>
|
</el-table-column>
|
<!-- <el-table-column label="审核状态" v-if="name === 'refundAfterInfo'" prop="omsOrderRefund">
|
<template slot-scope="scope">
|
{{scope.row.omsOrderRefund.circulationStatus === '01' ? '待审核' : scope.row.omsOrderRefund.circulationStatus === '12' ? '审核失败' : scope.row.omsOrderRefund.circulationStatus === '11' ? '审核成功' : ''}}
|
</template>
|
</el-table-column> -->
|
<el-table-column label="审核状态" v-if="name === 'refundAfterInfo'" width="120">
|
<template slot-scope="scope">
|
<span class="statusTag" :style="{ background:'#22d01e'}"
|
v-if="getCirculationStatus(scope.row.omsOrderRefund.circulationStatus).type === 'success'"></span>
|
<span class="statusTag" :style="{ background:'#d0931e'}"
|
v-else-if="getCirculationStatus(scope.row.omsOrderRefund.circulationStatus).type === 'warning'"></span>
|
<span class="statusTag" :style="{ background:'#d0261e'}"
|
v-else-if="getCirculationStatus(scope.row.omsOrderRefund.circulationStatus).type === 'danger'"></span>
|
<span>{{getCirculationStatus(scope.row.omsOrderRefund.circulationStatus).text}}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="推送状态" v-if="name === 'refundAfterInfo'" width="120">
|
<template slot-scope="scope">
|
<span>{{scope.row.omsOrderRefund && scope.row.omsOrderRefund.pushAnjiType === '2' ? '推送失败' : scope.row.omsOrderRefund.pushAnjiType === '1' ? '推送成功' : '-'}}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="退款状态" prop="omsOrderRefund" width="120">
|
<template slot-scope="scope">
|
<span v-if="getRefundStatus(scope.row).text">
|
<span class="statusTag" :style="{ background:'#22d01e'}"
|
v-if="getRefundStatus(scope.row).type === 'success'"></span>
|
<span class="statusTag" :style="{ background:'#d0931e'}"
|
v-else-if="getRefundStatus(scope.row).type === 'warning'"></span>
|
<span class="statusTag" :style="{ background:'#d0261e'}"
|
v-else-if="getRefundStatus(scope.row).type === 'danger'"></span>
|
<span>{{getRefundStatus(scope.row).text}}</span>
|
</span>
|
<span v-else>-</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="退款来源" prop="omsOrderRefund.orderSource" width="140"
|
show-overflow-tooltip>
|
<template slot-scope="scope">
|
{{getArrayLable(formLabel[6].opts, scope.row.omsOrderRefund.orderSource)}}
|
</template>
|
</el-table-column>
|
<el-table-column label="操作" fixed="right" :width="`${3 * $store.getters.colSize}px`">
|
<template slot-scope="scope">
|
<wly-btn @click="lookInfo(scope.row)">详情</wly-btn>
|
<wly-btn :type="'warning'"
|
v-if="((name === 'refundAfterInfo' && scope.row.omsOrderRefund.circulationStatus === '01'))"
|
@click="itemAudit(scope.row)">审核</wly-btn>
|
<wly-btn :type="'warning'"
|
v-if="((scope.row.omsOrderRefund && scope.row.omsOrderRefund.circulationStatus === '11') && (scope.row.omsOrderRefund && scope.row.omsOrderRefund.pushAnjiType === '2')) "
|
@click="pushAnji(scope.row)">手动推送</wly-btn>
|
<wly-btn :type="'warning'"
|
v-if="scope.row.omsOrderRefund.orderSource === 'WLY' &&
|
name === 'refundAuditInfo'&& (scope.row.omsOrderRefund.circulationStatus==='14' || scope.row.omsOrderRefund.circulationStatus==='77')"
|
@click="itemRefund(scope.row)">退款</wly-btn>
|
<wly-btn :type="'primary'"
|
v-if="name === 'refundAfterInfo' && scope.row.omsOrderRefund.circulationStatus==='17'"
|
@click="refuseRefund(scope.row)">拒绝退款</wly-btn>
|
</template>
|
</el-table-column>
|
</template>
|
</list-condition-template>
|
<el-dialog :visible.sync="dialogVisible" class="refundInfo" title="退款详情"
|
:close-on-click-modal="false" :modal-append-to-body="false" width="1100px">
|
<details-info :tag="name" :form="form" :logisticSupplier="logisticSupplier"
|
:warehouse="warehouse" :warehouseData="warehouseData"></details-info>
|
<div slot="footer" class="dialog-footer">
|
<el-button size="mini" @click="dialogVisible=false">关闭</el-button>
|
</div>
|
</el-dialog>
|
<el-dialog :visible.sync="refuseRefundVisible" title="原因" :close-on-click-modal="false"
|
:modal-append-to-body="false" width="400px">
|
<el-form :model="form" ref="form" size="mini">
|
<el-form-item prop="operationDesc" :rules="{required: true, message: '请输入拒绝退款原因'}">
|
<el-input type="textarea" v-model="form.operationDesc" show-word-limit maxlength="20">
|
</el-input>
|
</el-form-item>
|
</el-form>
|
<div slot="footer" class="dialog-footer">
|
<el-button size="mini" type="primary" @click="refundSubmit">确定</el-button>
|
<el-button size="mini" @click="refuseRefundVisible=false">取消</el-button>
|
</div>
|
</el-dialog>
|
</div>
|
</template>
|
<script>
|
import orderMgtApi from '@/api/orderMgt'
|
import detailsInfo from '@/views/refundMgt/components/detailsInfo.vue'
|
import isPushAnjiApi from '@/api/refundMgt/refundAudit'
|
import orderSourceArr from '@/utils/constant/orderSourceArr'
|
import productImg from '@/views/product/components/productImg.vue'
|
import { getArrayLable } from '@/utils/getArrayLable'
|
const refundStatusArray = [
|
{
|
id: '1',
|
name: '退款中'
|
},
|
{
|
id: '2',
|
name: '退款失败'
|
},
|
{
|
id: '3',
|
name: '退款成功'
|
},
|
{
|
id: '4',
|
name: '退款取消'
|
}
|
]
|
export default {
|
components: { detailsInfo, productImg },
|
props: ['refundApi', 'name', 'tag'],
|
data() {
|
return {
|
logisticSupplier: null,
|
warehouse: null,
|
warehouseData: [],
|
listQuery: {
|
orderId: null,
|
orderRefundId: null,
|
spuName: null,
|
creatorName: null,
|
orderRefundTime: null,
|
refundStatus: null,
|
orderSourceArr: null,
|
circulationStatus: null,
|
pushAnjiType: null,
|
orderRefundId: null // 退款编号
|
},
|
formLabel: [
|
{
|
model: 'orderId',
|
label: '订单编号',
|
type: 'input'
|
// rule: /[^\w]/g // 可输入数字字母
|
},
|
{
|
model: 'orderRefundId',
|
label: '退款编号',
|
type: 'input',
|
rule: /[^\w]/g // 可输入数字字母
|
},
|
{
|
model: 'creatorName',
|
label: '用户名',
|
type: 'input'
|
},
|
{
|
model: 'refundStatus',
|
label: '退款状态',
|
type: 'select',
|
isHide: this.isHide(true),
|
opts: this.getRefundStatusArr()
|
},
|
{
|
model: 'circulationStatus',
|
label: '审核状态',
|
type: 'select',
|
isHide: this.isHide(false),
|
opts: [
|
{
|
id: '01',
|
name: '待审核'
|
},
|
{
|
id: '12',
|
name: '审核失败'
|
},
|
{
|
id: '11',
|
name: '审核成功'
|
}
|
]
|
},
|
{
|
model: 'spuName',
|
label: '商品名称',
|
type: 'input',
|
showItem: false
|
},
|
{
|
model: 'orderRefundTime',
|
label: '申请时间',
|
type: 'date',
|
showItem: false
|
},
|
{
|
model: 'orderSourceArr',
|
label: '退款来源',
|
type: 'select',
|
multiple: true,
|
showItem: false,
|
opts: orderSourceArr
|
},
|
{
|
model: 'pushAnjiType',
|
label: '推送状态',
|
type: 'select',
|
isHide: this.isHide(false),
|
showItem: false,
|
labelWidth: '100px',
|
opts: [
|
{
|
id: '1',
|
name: '推送成功'
|
},
|
{
|
id: '2',
|
name: '推送失败'
|
}
|
]
|
}
|
],
|
tableData: [],
|
total: 0,
|
dialogVisible: false,
|
form: {},
|
refuseRefundVisible: false, // 拒绝退款弹窗
|
showFormItem: false
|
}
|
},
|
/**
|
* 数据变化后刷新列表
|
*/
|
activated() {
|
this.queryList(this.$refs.table.getPageInfo())
|
},
|
methods: {
|
toggleForm() {
|
this.showFormItem = !this.showFormItem
|
},
|
/**
|
* 打开拒绝退款弹窗
|
*/
|
refuseRefund(row) {
|
this.refuseRefundVisible = true
|
this.form = row
|
this.$set(this.form, 'operationDesc', null)
|
this.$nextTick(() => {
|
this.$refs.form.clearValidate()
|
})
|
},
|
/**
|
* 提交拒绝原因
|
*/
|
refundSubmit() {
|
this.$refs.form.validate().then(async(valid) => {
|
const params = {
|
operationDesc: this.form.operationDesc,
|
orderRefundId: this.form.omsOrderRefund.orderRefundId
|
}
|
const res = await this.refundApi.platformRefuse(params)
|
if (res.code === '0') {
|
this.$message({
|
type: 'success',
|
message: res.msg
|
})
|
this.$refs.table.changeCondition()
|
this.refuseRefundVisible = false
|
}
|
})
|
},
|
// 是否隐藏表单item
|
isHide(val) {
|
if (this.name === 'refundAfterInfo') {
|
return val
|
} else {
|
return !val
|
}
|
},
|
// 过滤退款状态数据
|
getRefundStatusArr() {
|
let arr = []
|
if (this.name === 'refundAuditInfo') {
|
refundStatusArray.forEach((item) => {
|
if (item.id !== '4') {
|
arr.push(item)
|
}
|
})
|
} else {
|
arr = JSON.parse(JSON.stringify(refundStatusArray))
|
}
|
return arr
|
},
|
/**
|
* 退款
|
*/
|
itemRefund(row) {
|
this.$confirm('请确保仓库已验收商品无误,确认退款后无法撤回操作,您确认要退款吗?', '提示', {
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning'
|
}).then(async() => {
|
try {
|
const res = await this.refundApi.isRefund({ refundId: row.omsOrderRefund.orderRefundId })
|
if (res.code === '0') {
|
this.$message({
|
type: 'success',
|
message: res.msg
|
})
|
this.$refs.table.changeCondition()
|
}
|
} catch (error) {
|
console.log(error)
|
}
|
}).catch()
|
},
|
/**
|
* 审核
|
*/
|
getCirculationStatus(val) {
|
const str = {
|
text: null,
|
type: null
|
}
|
if (val === '01') {
|
str.text = '待审核'
|
str.type = 'warning'
|
} else if (val === '04' || val === '11' || val === '14' || val === '15' || val === '21' || val === '22' ||
|
val === '77' || val === '88' || val === '99' || val === '16' || val === '17'
|
) {
|
str.text = '审核成功'
|
str.type = 'success'
|
} else if (val === '12') {
|
str.text = '审核失败'
|
str.type = 'danger'
|
}
|
return str
|
},
|
/**
|
* 安吉推送
|
*/
|
// getAnji (row) {
|
// switch (row.omsOrderRefund.pushAnjiType) {
|
// case '1': return {
|
// name: '推送成功',
|
// color: 'success'
|
// }
|
// case '2': return {
|
// name: '推送失败',
|
// color: 'danger'
|
// }
|
// }
|
// },
|
/**
|
* 手动推送安吉
|
*/
|
pushAnji(row) {
|
this.$confirm('是否手动推送?', '提示', {
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning'
|
}).then(async() => {
|
try {
|
const res = await isPushAnjiApi.isPushAnji({ returnOrderNo: row.omsOrderRefund.returnOrderNo })
|
if (res.code === '0') {
|
this.$message({
|
type: 'success',
|
message: '手动推送成功'
|
})
|
this.$refs.table.changeCondition()
|
}
|
} catch (error) {
|
console.log(error)
|
}
|
}).catch()
|
},
|
/**
|
* 获取数组的label
|
*/
|
getArrayLable,
|
/**
|
* '分页信息改变时查询列表
|
*/
|
handlePageInfoChange(pageInfo) {
|
this.queryList(pageInfo)
|
},
|
|
/**
|
* 重置
|
*/
|
resetQuery() {
|
this.$refs.table.reloadCurrent()
|
},
|
/**
|
* 点击查询按钮
|
*/
|
queryData() {
|
this.$refs.table.changeCondition()
|
},
|
/**
|
* 获取退款状态
|
*/
|
getRefundStatus(row) {
|
const val = row.omsOrderRefund.circulationStatus
|
const str = {
|
text: null,
|
type: null
|
}
|
if (val === '11' || val === '14' || val === '21' || val === '17' || val === '04'
|
) {
|
str.text = '退款中'
|
str.type = 'warning'
|
} else if (val === '99') {
|
str.text = '退款成功'
|
str.type = 'success'
|
} else if (val === '12' || val === '15' || val === '22' || val === '77') {
|
str.text = '退款失败'
|
str.type = 'danger'
|
} else {
|
// str.text = '退款取消'
|
// str.type = 'info'
|
str.text = null
|
}
|
return str
|
},
|
/**
|
* 查看详情
|
*/
|
lookInfo(row) {
|
this.refundApi.detailsInfo({
|
orderRefundId: row.omsOrderRefund.orderRefundId
|
}).then((res) => {
|
if (res.code === '0' && res.data) {
|
res.data.refundInfoName = this.getRefundStatus(res.data).text
|
res.data.auditState = this.getCirculationStatus(res.data.omsOrderRefund.circulationStatus).text
|
res.data.customer = []
|
res.data.storage = []
|
res.data.orderRefundFlowList.forEach(item => {
|
if (item.applicationStatus === '11') {
|
res.data.customer.push(item)
|
} else if (item.applicationStatus === '14' ||
|
item.applicationStatus === '15' ||
|
item.applicationStatus === '16' ||
|
item.applicationStatus === '17') {
|
res.data.storage.push(item)
|
}
|
})
|
const item = res.data.orderRefundFlowList.find((item) =>
|
item.applicationStatus === res.data.omsOrderRefund.circulationStatus
|
)
|
res.data.operationDesc = item ? item.operationDesc : null
|
this.form = res.data
|
// 获取物流服务商
|
this.getLogisticsProvidersData()
|
if (this.form.orderRefundDetailList && this.form.orderRefundDetailList.length > 0) {
|
this.form.orderRefundDetailList.forEach((item) => {
|
this.getSpecificationCodeList(item)
|
const specificationCodeArr = []
|
const shipmentsCountArr = []
|
const logisticProdsArr = item.logisticProdsJson && item.logisticProdsJson != '' ? JSON.parse(item.logisticProdsJson) : []
|
logisticProdsArr.forEach((v1) => {
|
specificationCodeArr.push(v1.skuId)
|
shipmentsCountArr.push({
|
shipmentsCount: v1.quantity,
|
skuId: v1.skuId
|
})
|
})
|
this.$set(item, 'specificationCode', specificationCodeArr)
|
this.$set(item, 'shipmentsCountList', shipmentsCountArr)
|
})
|
}
|
this.form.shopName = row.spuResultInfoList.length ? row.spuResultInfoList[0].shopName : '-'
|
this.dialogVisible = true
|
}
|
})
|
},
|
/**
|
* 获取物流服务商
|
*/
|
async getLogisticsProvidersData() {
|
this.logisticSupplier = null
|
this.warehouse = null
|
const res = await orderMgtApi.getWarehouseTree({})
|
if (res.code === '200' && res.data.length) {
|
this.warehouseData = res.data
|
const obj = this.warehouseData.find((v1) => v1.warehouseService === this.form.omsOrderDelivery.logisticSupplier)
|
if (obj) {
|
this.logisticSupplier = obj.warehouseServiceName
|
const obj1 = obj.treeList && obj.treeList.length ? obj.treeList.find((v2) => v2.entityWarehouseNo === this.form.omsOrderDelivery.warehouse) : null
|
if (obj1) {
|
this.warehouse = obj1.warehouseName
|
}
|
}
|
}
|
},
|
/**
|
* 根据商品主编码获取所有的规格编码集合
|
*/
|
getSpecificationCodeList(row) {
|
const expInfo = JSON.parse(row.expInfo)
|
orderMgtApi.getSpecificationCodeData({ prodNum: expInfo.spuNum }).then((res) => {
|
let arr = []
|
if (res.code === '200' && res.data.length) {
|
arr = [...res.data]
|
}
|
this.$set(row, 'specificationCodeList', arr)
|
}).catch(() => {
|
this.$set(row, 'specificationCodeList', [])
|
})
|
},
|
/**
|
* 查看订单详情
|
*/
|
lookOrderInfo(row) {
|
console.log(row, '======')
|
this.$router.push({
|
name: 'orderMgtInfo',
|
query: {
|
orderId: row.omsOrderRefund.orderId
|
// promotionStatus: row.promotionStatus
|
}
|
})
|
},
|
/**
|
* 退款审核
|
*/
|
itemAudit(row) {
|
this.$router.push({
|
name: this.name,
|
query: {
|
orderRefundId: row.omsOrderRefund.orderRefundId,
|
shopName: row.shopName ? row.shopName : '-'
|
}
|
})
|
},
|
/**
|
* 查询列表
|
*/
|
queryList(pageInfo = { pageNum: 1, pageSize: 10 }) {
|
const param = {}
|
for (const key in this.listQuery) {
|
if (!this.listQuery[key]) {
|
this.listQuery[key] = null
|
}
|
param[key] = this.listQuery[key]
|
}
|
param.orderSource = JSON.parse(JSON.stringify(param.orderSourceArr.join(',')))
|
delete param.orderSourceArr
|
if (this.name === 'refundAfterInfo') {
|
// param.merchantId = 'WLY,DY,XCX'
|
if (!param.circulationStatus) {
|
param.circulationStatus = '01,04,11,12,14,15,21,22,77,88,99,16,17'
|
} else if (this.listQuery.circulationStatus === '11') {
|
param.circulationStatus = '04,11,14,15,21,22,77,88,99,16,17'
|
}
|
} else {
|
param.merchantIds = '1'
|
}
|
this.refundApi.getList({ ...param, ...pageInfo }).then((res) => {
|
if (res.code === '0' && res.data) {
|
this.setKey(res.data.list, pageInfo)
|
this.tableData = res.data.list
|
console.log(this.tableData, '======')
|
this.total = res.data.total
|
}
|
})
|
},
|
/**
|
* 设置表格行唯一key
|
*/
|
setKey(data, pageInfo) {
|
if (data && data.length) {
|
data.forEach((item, index) => {
|
const curIndex = index + 1
|
item.key = (pageInfo.pageNum - 1) * pageInfo.pageSize + curIndex
|
})
|
}
|
}
|
}
|
}
|
</script>
|
<style lang="scss">
|
.el-table__body img {
|
width: 50px;
|
}
|
.refundInfo {
|
.el-dialog__body {
|
padding: 15px 20px;
|
height: 700px;
|
max-height: 800px;
|
position: relative;
|
overflow: hidden;
|
.refund {
|
position: absolute;
|
left: 0;
|
top: 0;
|
right: -17px;
|
bottom: 0;
|
overflow-y: scroll;
|
padding: 5px 10px;
|
}
|
}
|
}
|
.statusTag {
|
width: 6px;
|
height: 6px;
|
border-radius: 50%;
|
display: inline-block;
|
margin-right: 4px;
|
position: relative;
|
bottom: 2px;
|
}
|
</style>
|