2025-03-23 10:03:12 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="page">
|
|
|
|
|
<topBar
|
|
|
|
|
v-if="topList.length > 0"
|
2025-08-19 11:46:15 +08:00
|
|
|
|
:top-list="topList"
|
2025-03-23 10:03:12 +08:00
|
|
|
|
:moren="moren"
|
2025-08-19 11:46:15 +08:00
|
|
|
|
/>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
<div class="thetopbox">
|
|
|
|
|
<el-form ref="form" :model="queryParams" label-width="100px">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="4">
|
2025-05-26 10:41:35 +08:00
|
|
|
|
<el-form-item :label="'结算期数'" prop="memberSettlePeriodId">
|
2025-03-23 10:03:12 +08:00
|
|
|
|
<el-select
|
2025-08-19 11:46:15 +08:00
|
|
|
|
v-model="queryParams.memberSettlePeriodId"
|
2025-05-26 10:41:35 +08:00
|
|
|
|
:placeholder="'请选择'"
|
2025-03-23 10:03:12 +08:00
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in memberSettlePeriodList"
|
|
|
|
|
:key="item.pkId"
|
|
|
|
|
:label="item.settleDate"
|
|
|
|
|
:value="item.pkId"
|
2025-09-25 15:01:57 +08:00
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
<el-col :span="4">
|
2025-09-25 15:01:57 +08:00
|
|
|
|
<el-form-item :label="'会员编号'" prop="memberCode">
|
2025-03-23 10:03:12 +08:00
|
|
|
|
<el-input
|
2025-09-25 15:01:57 +08:00
|
|
|
|
v-model="queryParams.memberCode"
|
2025-08-19 11:46:15 +08:00
|
|
|
|
clearable
|
2025-09-25 15:01:57 +08:00
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
2025-03-23 10:03:12 +08:00
|
|
|
|
<el-col :span="4">
|
2025-09-25 15:01:57 +08:00
|
|
|
|
<el-form-item label="阶段" prop="stage">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.stage"
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="(item, index) in levelList"
|
|
|
|
|
:key="index"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="4">
|
|
|
|
|
<el-form-item label="状态" prop="stageStatus">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.stageStatus"
|
|
|
|
|
:placeholder="'请选择'"
|
2025-09-28 17:25:41 +08:00
|
|
|
|
clearable
|
2025-09-25 15:01:57 +08:00
|
|
|
|
>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
<el-option
|
2025-09-25 15:01:57 +08:00
|
|
|
|
v-for="(item, index) in statusEnum"
|
2025-03-23 10:03:12 +08:00
|
|
|
|
:key="index"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value"
|
2025-08-19 11:46:15 +08:00
|
|
|
|
/>
|
2025-09-25 15:01:57 +08:00
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
<el-col :span="4" style="margin-left: 30px">
|
|
|
|
|
<div class="searchbox">
|
2025-08-19 11:46:15 +08:00
|
|
|
|
<el-button
|
|
|
|
|
:loading="loading"
|
|
|
|
|
class="searchbtn"
|
|
|
|
|
@click="getSearch"
|
2025-09-25 15:01:57 +08:00
|
|
|
|
> {{ '搜索' }}</el-button>
|
|
|
|
|
<el-button @click="resetHandle"> {{ '重置' }}</el-button>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
2025-09-25 15:01:57 +08:00
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
</div>
|
2025-09-26 10:43:16 +08:00
|
|
|
|
<div class="main">
|
|
|
|
|
<div class="maintable">
|
|
|
|
|
<el-table
|
|
|
|
|
ref="table"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
:height="'630px'"
|
|
|
|
|
:header-cell-style="{ background: '#EEEEEE' }"
|
|
|
|
|
lass="content"
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
:row-class-name="tableRowClassName"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" />
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
align="center"
|
|
|
|
|
prop="orderSourceVal"
|
|
|
|
|
label="子点位"
|
|
|
|
|
width="180"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ tempMemberCode + '-' + scope.row.childNode }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
align="center"
|
|
|
|
|
prop="pointTypeLabel"
|
|
|
|
|
label="点位类型"
|
|
|
|
|
width="100"
|
2025-09-30 09:51:09 +08:00
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag size="small" :type="scope.row.pointTypeLabel === '普通点位' ? 'info' : 'warning'">
|
|
|
|
|
{{ scope.row.pointTypeLabel }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2025-09-26 10:43:16 +08:00
|
|
|
|
<el-table-column
|
|
|
|
|
align="center"
|
|
|
|
|
prop="stage"
|
|
|
|
|
label="阶段"
|
|
|
|
|
width="100"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.stage === 1 ? '一阶段' : scope.row.stage === 2 ? '二阶段' : '三阶段' }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
align="center"
|
|
|
|
|
prop="stageStatus"
|
|
|
|
|
label="状态"
|
|
|
|
|
width="100"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
2025-09-28 17:25:41 +08:00
|
|
|
|
<el-tag v-if="scope.row.stageStatus !== 1" size="small" type="success">已完成</el-tag>
|
|
|
|
|
<span v-else>未完成</span>
|
2025-09-26 10:43:16 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
align="center"
|
|
|
|
|
prop="customer"
|
|
|
|
|
label="点位"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div style="display: flex; justify-content: center; column; gap: 20px;">
|
|
|
|
|
<div style="display: flex; column; gap: 6px;">
|
|
|
|
|
<div
|
|
|
|
|
v-for="(item, idx) in level1"
|
|
|
|
|
:key="idx"
|
|
|
|
|
class="node-wrapper"
|
|
|
|
|
:class="{ 'empty-node': !scope.row[item.memberName] }"
|
|
|
|
|
@click="handleNodeClick(item, scope.row)"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: flex; column; gap: 6px;">
|
|
|
|
|
<div
|
|
|
|
|
v-for="(item, idx) in level2"
|
|
|
|
|
:key="idx"
|
|
|
|
|
class="node-wrapper"
|
|
|
|
|
:class="{ 'empty-node': !scope.row[item.memberName] }"
|
|
|
|
|
@click="handleNodeClick(item, scope.row)"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: flex; column; gap: 6px;">
|
|
|
|
|
<div
|
|
|
|
|
v-for="(item, idx) in level3"
|
|
|
|
|
:key="idx"
|
|
|
|
|
class="node-wrapper"
|
|
|
|
|
:class="{ 'empty-node': !scope.row[item.memberName] }"
|
|
|
|
|
@click="handleNodeClick(item, scope.row)"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
align="center"
|
|
|
|
|
prop="creationTime"
|
|
|
|
|
:label="'激活日期'"
|
|
|
|
|
width="210"
|
2025-09-25 15:01:57 +08:00
|
|
|
|
/>
|
2025-08-19 11:46:15 +08:00
|
|
|
|
|
2025-09-26 10:43:16 +08:00
|
|
|
|
</el-table>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-09-26 10:43:16 +08:00
|
|
|
|
<pagination
|
|
|
|
|
v-show="total > 0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
<el-dialog
|
|
|
|
|
:visible.sync="nodeInfoDialogVisible"
|
|
|
|
|
title="子节点信息"
|
|
|
|
|
width="50%"
|
|
|
|
|
>
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<div class="box">
|
|
|
|
|
<div class="title">
|
|
|
|
|
{{ queryParams.memberCode }}
|
|
|
|
|
<el-tag size="small">{{ nodeInfo.position }}</el-tab>
|
|
|
|
|
</el-tag></div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="margin-bottom: 10px;" :span="12">
|
|
|
|
|
<span
|
|
|
|
|
style="margin-right: 10px; font-weight: 500;"
|
|
|
|
|
@click="copyContent(nodeInfo.memberCode)"
|
|
|
|
|
>会员编号:</span>
|
|
|
|
|
<span>{{ nodeInfo.memberCode }}</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="margin-bottom: 10px; " :span="12">
|
|
|
|
|
<span style="margin-right: 10px; font-weight: 500;">点位信息:</span>
|
|
|
|
|
<span>{{ nodeInfo.memberName }}</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="margin-bottom: 10px;" :span="12">
|
|
|
|
|
<span style="margin-right: 10px; font-weight: 500;">荣誉奖衔:</span>
|
|
|
|
|
<span>{{ nodeInfo.awardsName }}</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="margin-bottom: 10px;" :span="12">
|
|
|
|
|
<span style="margin-right: 10px; font-weight: 500;">隶属体系:</span>
|
|
|
|
|
<span>{{ nodeInfo.vertexName }}</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="margin-bottom: 10px;" :span="12">
|
|
|
|
|
<span style="margin-right: 10px; font-weight: 500;">创建时间:</span>
|
|
|
|
|
<span>{{ nodeInfo.creationTime }}</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- <el-col :span="12">
|
|
|
|
|
<span>隶属体系</span>
|
|
|
|
|
<span>{{ nodeInfo.vertexName }}</span>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
</el-row>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<el-button type="primary" @click="nodeInfoDialogVisible = false">关闭</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
2025-03-23 10:03:12 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2025-08-19 11:46:15 +08:00
|
|
|
|
<script>
|
|
|
|
|
import topBar from '@/components/topBar'
|
2025-03-23 10:03:12 +08:00
|
|
|
|
import {
|
2025-09-26 10:43:16 +08:00
|
|
|
|
getAzFrameworkList,
|
|
|
|
|
getAzFramewrokNodeInfo,
|
|
|
|
|
getMemberSettlePeriod
|
2025-08-19 11:46:15 +08:00
|
|
|
|
} from '@/api/archityecture'
|
|
|
|
|
import { isLocals } from '../../../utils/numberToCurrency'
|
2025-09-25 15:01:57 +08:00
|
|
|
|
import tabBarMixin from './mixins/tab-bar'
|
2025-09-26 10:43:16 +08:00
|
|
|
|
|
|
|
|
|
const initParmas = {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 50,
|
|
|
|
|
memberSettlePeriodId: '',
|
|
|
|
|
memberCode: '',
|
|
|
|
|
stage: 1,
|
|
|
|
|
stageStatus: ''
|
|
|
|
|
}
|
2025-03-23 10:03:12 +08:00
|
|
|
|
export default {
|
2025-09-25 15:01:57 +08:00
|
|
|
|
name: 'Azjg',
|
2025-03-23 10:03:12 +08:00
|
|
|
|
components: {
|
2025-09-25 15:01:57 +08:00
|
|
|
|
topBar
|
2025-03-23 10:03:12 +08:00
|
|
|
|
},
|
2025-09-25 15:01:57 +08:00
|
|
|
|
mixins: [tabBarMixin],
|
2025-03-23 10:03:12 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
2025-08-19 11:46:15 +08:00
|
|
|
|
moren: 'azjg2',
|
2025-03-23 10:03:12 +08:00
|
|
|
|
queryParams: {
|
2025-09-26 10:43:16 +08:00
|
|
|
|
...initParmas
|
2025-03-23 10:03:12 +08:00
|
|
|
|
},
|
2025-09-25 15:01:57 +08:00
|
|
|
|
levelList: [
|
|
|
|
|
{ value: 1, label: '一阶段' },
|
|
|
|
|
{ value: 2, label: '二阶段' },
|
|
|
|
|
{ value: 3, label: '三阶段' }
|
|
|
|
|
],
|
|
|
|
|
statusEnum: [
|
|
|
|
|
{ value: 0, label: '已完成' },
|
|
|
|
|
{ value: 1, label: '未完成' }
|
|
|
|
|
],
|
2025-09-26 10:43:16 +08:00
|
|
|
|
level1: [
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember11',
|
|
|
|
|
pointKey: 'point11'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember12',
|
|
|
|
|
pointKey: 'point12'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
level2: [
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember21',
|
|
|
|
|
pointKey: 'point21'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember22',
|
|
|
|
|
pointKey: 'point22'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember23',
|
|
|
|
|
pointKey: 'point23'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember24',
|
|
|
|
|
pointKey: 'point24'
|
|
|
|
|
}
|
2025-03-23 10:03:12 +08:00
|
|
|
|
],
|
2025-09-26 10:43:16 +08:00
|
|
|
|
level3: [
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember31',
|
|
|
|
|
pointKey: 'point31'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember33',
|
|
|
|
|
pointKey: 'point33'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember34',
|
|
|
|
|
pointKey: 'point34'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember35',
|
|
|
|
|
pointKey: 'point35'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember36',
|
|
|
|
|
pointKey: 'point36'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember37',
|
|
|
|
|
pointKey: 'point37'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
memberName: 'pointMember38',
|
|
|
|
|
pointKey: 'point38'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
tableData: [],
|
|
|
|
|
memberSettlePeriodList: [], // 期数
|
2025-09-25 15:01:57 +08:00
|
|
|
|
loading: false,
|
2025-09-26 10:43:16 +08:00
|
|
|
|
total: 0,
|
|
|
|
|
nodeInfo: {},
|
|
|
|
|
nodeInfoDialogVisible: false,
|
|
|
|
|
tempMemberCode: ''
|
2025-08-19 11:46:15 +08:00
|
|
|
|
}
|
2025-03-23 10:03:12 +08:00
|
|
|
|
},
|
|
|
|
|
created() {
|
2025-09-25 15:01:57 +08:00
|
|
|
|
getMemberSettlePeriod().then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.memberSettlePeriodList = (res.data || []).filter(item => item.isThisDay !== 0)
|
|
|
|
|
this.queryParams.memberSettlePeriodId = this.memberSettlePeriodList[0].pkId
|
|
|
|
|
}
|
|
|
|
|
})
|
2025-03-23 10:03:12 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
isLocals,
|
2025-09-26 10:43:16 +08:00
|
|
|
|
getSearch() {
|
|
|
|
|
if (!this.queryParams.memberCode) {
|
|
|
|
|
this.$message.warning('会员编号不能为空')
|
|
|
|
|
return
|
2025-09-25 15:01:57 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
this.tempMemberCode = this.queryParams.memberCode
|
|
|
|
|
this.queryParams.pageNum = 1
|
|
|
|
|
this.getList()
|
2025-03-23 10:03:12 +08:00
|
|
|
|
},
|
2025-09-26 10:43:16 +08:00
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true
|
|
|
|
|
getAzFrameworkList(this.queryParams).then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.tableData = res.data.rows
|
|
|
|
|
this.total = res.data.total
|
|
|
|
|
}
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
})
|
2025-03-23 10:03:12 +08:00
|
|
|
|
},
|
2025-09-26 10:43:16 +08:00
|
|
|
|
handleNodeClick(node, row) {
|
|
|
|
|
const memberId = row[node.memberName]
|
|
|
|
|
console.log(memberId, node, '...memberId')
|
|
|
|
|
this.nodeInfo = {}
|
|
|
|
|
if (memberId) {
|
|
|
|
|
this.nodeInfoDialogVisible = true
|
|
|
|
|
this.getMemberInfoById({
|
|
|
|
|
pkMember: row.pkMember,
|
|
|
|
|
point: row[node.pointKey],
|
|
|
|
|
stage: row.stage,
|
|
|
|
|
position: node.pointKey.replace('point', '').split('').join('-'),
|
|
|
|
|
pointMember: memberId
|
2025-08-19 11:46:15 +08:00
|
|
|
|
})
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2025-09-26 10:43:16 +08:00
|
|
|
|
getMemberInfoById({ pkMember, point, stage, position, pointMember }) {
|
|
|
|
|
this.nodeInfo = {}
|
|
|
|
|
getAzFramewrokNodeInfo({
|
|
|
|
|
point,
|
|
|
|
|
pkMember,
|
|
|
|
|
memberSettlePeriodId: this.queryParams.memberSettlePeriodId,
|
|
|
|
|
stage,
|
|
|
|
|
pointMember
|
|
|
|
|
}).then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.nodeInfo = {
|
|
|
|
|
...res.data,
|
|
|
|
|
position
|
|
|
|
|
}
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-08-19 11:46:15 +08:00
|
|
|
|
})
|
2025-03-23 10:03:12 +08:00
|
|
|
|
},
|
2025-08-19 11:46:15 +08:00
|
|
|
|
resetHandle() {
|
2025-03-23 10:03:12 +08:00
|
|
|
|
this.queryParams = {
|
2025-09-26 10:43:16 +08:00
|
|
|
|
...initParmas
|
2025-08-19 11:46:15 +08:00
|
|
|
|
}
|
2025-09-26 14:02:40 +08:00
|
|
|
|
this.queryParams.memberSettlePeriodId = this.memberSettlePeriodList[0].pkId
|
2025-09-26 10:43:16 +08:00
|
|
|
|
this.tableData = []
|
|
|
|
|
this.childNodeList = []
|
2025-09-25 15:01:57 +08:00
|
|
|
|
},
|
2025-09-26 10:43:16 +08:00
|
|
|
|
tableRowClassName({ row, rowIndex }) {
|
|
|
|
|
if (rowIndex % 2 === 1) {
|
|
|
|
|
return 'warning-row'
|
|
|
|
|
} else if (rowIndex % 2 === 0) {
|
|
|
|
|
return 'success-row'
|
2025-09-25 15:01:57 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
return ''
|
|
|
|
|
},
|
|
|
|
|
copyContent(content) {
|
|
|
|
|
// this.$message.success('复制成功')
|
2025-08-19 11:46:15 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
|
2025-08-19 11:46:15 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2025-03-23 10:03:12 +08:00
|
|
|
|
</script>
|
2025-09-26 10:43:16 +08:00
|
|
|
|
<style scoped lang="scss">
|
2025-03-23 10:03:12 +08:00
|
|
|
|
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-range-editor.el-input__inner{
|
|
|
|
|
width: 100%!important;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-button{
|
|
|
|
|
padding: 8px 20px;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-date-editor .el-range__close-icon{
|
|
|
|
|
margin-top: -10px;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-date-editor .el-range-separator{
|
|
|
|
|
margin-top: -10px;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-date-editor .el-range__icon{
|
|
|
|
|
margin-top: -10px;
|
2025-09-25 15:01:57 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-input__inner{
|
|
|
|
|
//height:28px;
|
|
|
|
|
//line-height: 28px;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-form-item__label{
|
|
|
|
|
color: #333;
|
|
|
|
|
font-weight: inherit;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-table .warning-row {
|
|
|
|
|
background: #f9f9f9;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-25 15:01:57 +08:00
|
|
|
|
|
2025-09-26 10:43:16 +08:00
|
|
|
|
::v-deep .el-table .success-row {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-table thead {
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.uploadIcon ::v-deep .el-upload--picture-card {
|
|
|
|
|
display: none !important; /* 上传按钮隐藏 */
|
|
|
|
|
}
|
|
|
|
|
.page {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
background: #f9f9f9;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
.main {
|
|
|
|
|
background: #f9f9f9;
|
|
|
|
|
.maintop {
|
2025-03-23 10:03:12 +08:00
|
|
|
|
display: flex;
|
2025-09-26 10:43:16 +08:00
|
|
|
|
padding: 0 0;
|
|
|
|
|
justify-content: space-between;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
align-items: center;
|
2025-09-26 14:02:40 +08:00
|
|
|
|
|
2025-09-25 15:01:57 +08:00
|
|
|
|
}
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
2025-09-26 10:43:16 +08:00
|
|
|
|
}
|
2025-08-19 11:46:15 +08:00
|
|
|
|
|
2025-09-26 10:43:16 +08:00
|
|
|
|
.searchbtn {
|
|
|
|
|
width: 68px;
|
|
|
|
|
background: #c8161d;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
.node-wrapper {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
// 激活颜色
|
|
|
|
|
background-color: #007bff;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.empty-node {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 2px dashed #95a5a6;
|
|
|
|
|
}
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #333333;
|
|
|
|
|
margin-bottom: 18px;
|
2025-03-23 10:03:12 +08:00
|
|
|
|
}
|
|
|
|
|
</style>
|