This commit is contained in:
ping 2025-09-15 17:09:27 +08:00
commit d8b57bc6d2
15 changed files with 326 additions and 388 deletions

View File

@ -88,7 +88,7 @@
class="cloud-contact-us-icon"></span> class="cloud-contact-us-icon"></span>
<p class="cloud-contact-us-tit" style="font-size: 14px;">售前咨询</p> <p class="cloud-contact-us-tit" style="font-size: 14px;">售前咨询</p>
</div> </div>
<div style=";display: flex;justify-content: center;align-items: center;" <div style="display: flex;justify-content: center;align-items: center;"
> >
<div v-if="!phone" <div v-if="!phone"
style="width: 80px;height: 25px;display: flex!important;justify-content: center;align-items: center"> style="width: 80px;height: 25px;display: flex!important;justify-content: center;align-items: center">
@ -991,6 +991,7 @@ export default {
background-color: white; background-color: white;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
padding: 10px; padding: 10px;
z-index: 11;
} }
@keyframes slideInRight { @keyframes slideInRight {

View File

@ -5,3 +5,4 @@ export default {
document.body.style.userSelect = 'none'; document.body.style.userSelect = 'none';
}, },
}; };

View File

@ -10,7 +10,7 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="充值金额:" prop="balance"> <el-form-item label="充值金额:" prop="balance" label-width="130px">
<el-input v-model="form.balance"></el-input> <el-input v-model="form.balance"></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>

File diff suppressed because it is too large Load Diff

View File

@ -98,7 +98,7 @@
<!-- </div>--> <!-- </div>-->
<div style="display:flex;"> <div style="display:flex;">
<el-button @keyup.enter.native="handleLogin('loginForm')" :loading="loading" type="primary" <el-button @keyup.enter.native="handleLogin('loginForm')" :loading="loading" type="primary"
style="width: 300px;margin-top: 30px;margin-bottom: 30px" class="login-btn" style="width: 300px;margin-top: 30px;margin-bottom: 10px" class="login-btn"
@click.native.prevent="handleLogin('loginForm')">立即登录 @click.native.prevent="handleLogin('loginForm')">立即登录
</el-button> </el-button>
</div> </div>

View File

@ -9,21 +9,21 @@
fixed fixed
prop="username" prop="username"
label="用户名" label="用户名"
width="150"> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="orgname" prop="orgname"
label="用户机构" label="用户机构"
width="120"> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="create_at" prop="create_at"
label="申请时间" label="申请时间"
width="180"> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="操作" label="操作"
width="150"> >
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="scope.row.type==='0'"> <div v-if="scope.row.type==='0'">
<el-button @click="handleClick(scope.row)" size="mini" type="primary">同意</el-button> <el-button @click="handleClick(scope.row)" size="mini" type="primary">同意</el-button>

View File

@ -220,6 +220,7 @@ export default {
justify-content: flex-start; justify-content: flex-start;
flex-wrap: wrap; flex-wrap: wrap;
background-color: white; background-color: white;
padding: 20px;
} }
.itemStyle { .itemStyle {

View File

@ -4,7 +4,7 @@
<el-row class="customerList"> <el-row class="customerList">
<el-col :span="10"> <el-col :span="10">
<div style="display:flex;"> <div style="display:flex;">
<el-button size="small" type="success" @click="addSaleActives">添加促销活动</el-button> <el-button size="small" type="success" @click="addSaleActives" style="margin-bottom: 10px;">添加促销活动</el-button>
</div> </div>
<div class="leftTable"> <div class="leftTable">
<el-table :data="leftTableData" row-key="id" border height="calc(100vh - 200px)" @row-click="getProduct" <el-table :data="leftTableData" row-key="id" border height="calc(100vh - 200px)" @row-click="getProduct"
@ -24,7 +24,7 @@
<el-col :span="14"> <el-col :span="14">
<div style="display:flex; flex-direction: row;"> <div style="display:flex; flex-direction: row;">
<div style="display:flex;padding-right:20px"> <div style="display:flex;padding-right:20px">
<el-button size="small" type="success" @click="addProduct()" :disabled="isAddProduct">添加折扣产品 <el-button size="small" type="success" @click="addProduct()" :disabled="isAddProduct" style="margin-bottom: 10px;">添加折扣产品
</el-button> </el-button>
</div> </div>
<div> <div>
@ -97,7 +97,7 @@
<!-- 添加折扣产品弹窗 --> <!-- 添加折扣产品弹窗 -->
<el-dialog class="addSaleProduct" :title="'请为'+ this.tableTitle+'添加促销产品'" :visible.sync="addProductDialog" <el-dialog class="addSaleProduct" :title="'请为'+ this.tableTitle+'添加促销产品'" :visible.sync="addProductDialog"
width="45%" :before-close="handleClose1" :isEdit="isEdit"> width="45%" :before-close="handleClose1" :isEdit="isEdit" >
<el-form ref="productForm" :model="productForm" label-width="120px" :rules="ProductRules" style="width: 80%"> <el-form ref="productForm" :model="productForm" label-width="120px" :rules="ProductRules" style="width: 80%">
<div class="treeSelect"> <div class="treeSelect">
<el-form-item label="促销产品:" prop="" required=""> <el-form-item label="促销产品:" prop="" required="">

View File

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<div style="display:flex;"> <div style="display:flex;">
<el-button type="primary" size="small" @click="addDocument">新增文档</el-button> <el-button type="primary" size="small" @click="addDocument" style="margin:10px 0;">新增文档</el-button>
</div> </div>
<el-table :data="tableData" style="width: 100%" height="720"> <el-table :data="tableData" style="width: 100%" height="720">
<el-table-column prop="title" label="标题"> </el-table-column> <el-table-column prop="title" label="标题"> </el-table-column>

View File

@ -804,7 +804,7 @@ export default {
} }
.jd-code { .jd-code {
//border:1px solid red; /* border:1px solid red; */
.el-dialog__body { .el-dialog__body {
display: flex; display: flex;

View File

@ -2,7 +2,7 @@
<div class="box"> <div class="box">
<div class="left_box"> <div class="left_box">
<div style="background-color: white;display:flex;"> <div style="background-color: white;display:flex;">
<el-button @click="drawer = true" type="primary" size="small">添加分销商</el-button> <el-button @click="drawer = true" type="primary" size="small" style="margin: 10px 20px;">添加分销商</el-button>
</div> </div>
<div class="distributor_box"> <div class="distributor_box">
<el-table :data="distributorList" style="width: 100%" :unique-opened="true" height="calc(100vh - 130px)" <el-table :data="distributorList" style="width: 100%" :unique-opened="true" height="calc(100vh - 130px)"

View File

@ -919,4 +919,5 @@ export default {
.drawer_style { .drawer_style {
padding: 0px 30px 0px 30px !important; padding: 0px 30px 0px 30px !important;
} }
</style> </style>