|
@@ -121,6 +121,16 @@
|
|
|
<!-- 上传人群包的界面 -->
|
|
|
<a-modal v-model="updatePackageVisiable" @ok="updatePackageOk" width="75%" id="updatePackageOk">
|
|
|
<p class="title">上传人群包</p>
|
|
|
+ <div class="updatePackagebody">
|
|
|
+ <p class="item">
|
|
|
+ <span class="desc">匹配类型 <span class="redCircular"></span></span>
|
|
|
+ <a-select size="default" v-model="matchValue" style="width: 400px" @change="matchChange">
|
|
|
+ <a-select-option v-for="i in 25" :key="(i + 9).toString(36) + i">
|
|
|
+ {{ (i + 9).toString(36) + i }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
<p>Some contents...</p>
|
|
|
<p>Some contents...</p>
|
|
|
</a-modal>
|
|
@@ -297,6 +307,7 @@ export default {
|
|
|
batchValue:undefined, //批量操作的选中值
|
|
|
|
|
|
updatePackageVisiable:false,//上传人群包的弹出框
|
|
|
+ matchValue:undefined, //上传人群包的匹配框
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -526,6 +537,22 @@ export default {
|
|
|
font-size: 18px;
|
|
|
font-weight: 700;
|
|
|
}
|
|
|
+ .desc{
|
|
|
+ width: 100px;
|
|
|
+ display: inline-block;
|
|
|
+ text-align: right;
|
|
|
+ margin-right: 10px;
|
|
|
+ .redCircular{
|
|
|
+ display: inline-block;
|
|
|
+ margin-left: 5px;
|
|
|
+ width: 5px;
|
|
|
+ height: 5px;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: red;
|
|
|
+ position: relative;
|
|
|
+ top: -2px;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
}
|