Changes
parent
f8328b4dd1
commit
8f800b09e5
|
@ -126,10 +126,13 @@
|
|||
<el-form-item label="规则名称" prop="name">
|
||||
<el-input v-model="form.name" placeholder="请输入规则名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="是否激活" prop="isActivate">
|
||||
<el-input v-model="form.isActivate" placeholder="请输入是否激活" />
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="是否激活">
|
||||
<el-radio-group v-model="form.isActivate" placeholder="请输入是否激活">
|
||||
<el-radio label="Y"></el-radio>
|
||||
<el-radio label="N"></el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="规则描述" prop="ruleDesc">
|
||||
<el-input v-model="form.ruleDesc" type="textarea" placeholder="请输入内容" />
|
||||
|
|
|
@ -175,22 +175,22 @@
|
|||
|
||||
|
||||
<el-row :gutter="10">
|
||||
<el-empty description="暂无支付客户" v-if="customerList.length === 0"></el-empty>
|
||||
<el-col :span="8" v-for="customer in customerList" v-if="customerList.length !== 0">
|
||||
<!-- <el-empty description="暂无支付客户" v-if="customerList.length === 0"></el-empty>-->
|
||||
<!-- <el-col :span="8" v-for="customer in customerList" v-if="customerList.length !== 0">-->
|
||||
|
||||
<el-card class="box-card">
|
||||
<div slot="header" class="clearfix">
|
||||
<span style="font-size: 18px;font-weight: 900">{{ customer.appName }}</span>
|
||||
<el-switch
|
||||
style="float: right; margin: 4px 5px 0;"
|
||||
v-model="customer.status"
|
||||
active-color="#13ce66"
|
||||
inactive-color="#ff4949"
|
||||
active-value="Y"
|
||||
inactive-value="N"
|
||||
@change="handleStatusChange(customer)"
|
||||
>
|
||||
</el-switch>
|
||||
<!-- <el-switch-->
|
||||
<!-- style="float: right; margin: 4px 5px 0;"-->
|
||||
<!-- v-model="customer.status"-->
|
||||
<!-- active-color="#13ce66"-->
|
||||
<!-- inactive-color="#ff4949"-->
|
||||
<!-- active-value="Y"-->
|
||||
<!-- inactive-value="N"-->
|
||||
<!-- @change="handleStatusChange(customer)"-->
|
||||
<!-- >-->
|
||||
<!-- </el-switch>-->
|
||||
|
||||
<el-popconfirm
|
||||
confirm-button-text='好的'
|
||||
|
@ -210,7 +210,7 @@
|
|||
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<!-- </el-col>-->
|
||||
</el-row>
|
||||
|
||||
<!-- 添加或修改规则对话框 -->
|
||||
|
|
Loading…
Reference in New Issue