Commit c26ec6ef by 无尘

fix: 修改提示

parent bb65f4c5
.list-content .el-input[data-v-04cfa4fe]{width:180px;margin-right:10px}.list-content .el-select[data-v-04cfa4fe]{width:148px;margin-right:10px}.list-content .el-date-picker[data-v-04cfa4fe]{margin-right:10px}.content-search[data-v-04cfa4fe]{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px}.content-data[data-v-04cfa4fe],.content-first[data-v-04cfa4fe],.content-search[data-v-04cfa4fe]{display:-webkit-box;display:-ms-flexbox;display:flex}.content-data[data-v-04cfa4fe]{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px}.color1[data-v-04cfa4fe]{color:#303133;font-size:16px;padding-right:15px;font-weight:500}.color2[data-v-04cfa4fe]{position:relative;color:#606266;font-size:14px;font-weight:400}.color2[data-v-04cfa4fe]:not(:first-of-type){padding-left:16px}.color2[data-v-04cfa4fe]:not(:first-of-type):before{content:"|";position:absolute;top:0;left:0;color:#dcdfe6}
\ No newline at end of file
.list-content .el-input[data-v-6bf266e7]{width:180px;margin-right:10px}.list-content .el-select[data-v-6bf266e7]{width:148px;margin-right:10px}.list-content .el-date-picker[data-v-6bf266e7]{margin-right:10px}.list-content .w-171[data-v-6bf266e7]{width:171px}.content-search[data-v-6bf266e7]{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px}.content-data[data-v-6bf266e7],.content-first[data-v-6bf266e7],.content-search[data-v-6bf266e7]{display:-webkit-box;display:-ms-flexbox;display:flex}.content-data[data-v-6bf266e7]{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px}.color1[data-v-6bf266e7]{color:#303133;font-size:16px;padding-right:15px;font-weight:500}.color2[data-v-6bf266e7]{position:relative;color:#606266;font-size:14px;font-weight:400}.color2[data-v-6bf266e7]:not(:first-of-type){padding-left:16px}.color2[data-v-6bf266e7]:not(:first-of-type):before{content:"|";position:absolute;top:0;left:0;color:#dcdfe6}
\ No newline at end of file
......@@ -4,13 +4,14 @@
* @Author: 无尘
* @Date: 2020-11-09 10:39:37
* @LastEditors: 无尘
* @LastEditTime: 2020-11-24 14:20:31
* @LastEditTime: 2020-12-01 10:41:10
-->
<template>
<div class="common-app-right">
<div class="list-content">
<div class="content-search">
<div class="list-content" v-loading="loading">
<common-alert-tip :tip-content="tipContent"></common-alert-tip>
<div class="content-search m-t-20">
<div class="content-first">
<el-input
v-model.trim="search.search"
......@@ -21,7 +22,7 @@
@change="searchChange">
</el-input>
<el-select v-model="search.performanceSubType" placeholder="全部指标类型" @change="searchChange" clearable>
<el-select class="w-171" v-model="search.performanceSubType" placeholder="全部指标类型" @change="searchChange" clearable>
<el-option :label="`${[ '业绩', '新增会员' ][activeName - 1]}指标日权重`" value="1"></el-option>
<el-option :label="`${[ '业绩', '新增会员' ][activeName - 1]}指标日指标`" value="2"></el-option>
</el-select>
......@@ -73,7 +74,6 @@
<el-table
:data="tableData"
v-loading="loading"
style="width: 100%"
ref="multipleTable"
@selection-change="handleSelectionChange">
......@@ -193,13 +193,14 @@
</template>
<script>
import commonAlertTip from '@/components/common/common-alert-tip.vue';
import gicSelectGroupMult from '@/components/common/gic-select-group-mult.vue';
import gicSelectTag from '@/components/common/gic-select-tag.vue';
import fetch from '@/api/target-manage-app.js';
const { getStorePerformanceDetail } = fetch;
export default {
name: 'TargetStore',
components: { gicSelectGroupMult, gicSelectTag },
components: { gicSelectGroupMult, gicSelectTag, commonAlertTip },
props: {
brandId: {
type: String,
......@@ -211,7 +212,7 @@ export default {
activeName: '',
applicationId: '',
haoban: {},
tipContent: '仅支持批量设置日权重,暂无法批量设置日指标',
search: {
search: '',
performanceSubType: '',
......@@ -378,6 +379,9 @@ export default {
.el-date-picker {
margin-right: 10px;
}
.w-171 {
width: 171px;
}
}
// .el-select .el-input.is-focus .el-input__inner {
// z-index: 2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment