::v-deep=>:deep()

This commit is contained in:
aixianling
2022-12-01 09:35:20 +08:00
parent d12c7b2c5e
commit 883ec09a0e
352 changed files with 1277 additions and 1281 deletions

View File

@@ -40,11 +40,11 @@ export default {
.AppHelpByNeighbours {
height: 100%;
::v-deep.mar-t16 {
:deep(.mar-t16 ){
margin-top: 16px;
}
::v-deep.mar-t8 {
:deep(.mar-t8 ){
margin-top: 8px;
}
}

View File

@@ -34,7 +34,7 @@
<ai-info-item label="审核人" :value="info.auditUserName"></ai-info-item>
<ai-info-item label="审核时间" :value="info.auditTime"></ai-info-item>
<ai-info-item label="驳回理由" v-if="info.auditStatus == '2'" isLine :value="info.auditOpinion"></ai-info-item>
</ai-wrapper>
</div>
</ai-card>
@@ -233,15 +233,15 @@ export default {
display: flex;
align-items: center;
::v-deep .el-form-item .el-form-item__content {
:deep( .el-form-item .el-form-item__content ){
margin-left: 0 !important;
}
::v-deep .ai-select {
:deep( .ai-select ){
margin: 0 !important;
}
::v-deep .el-form-item {
:deep( .el-form-item ){
width: auto;
margin-bottom: 0;

View File

@@ -88,9 +88,9 @@
{ prop: 'partyName', label: '申请人' },
{ prop: 'partyPhone', align: 'center', label: '联系电话' },
{ prop: 'createTime', align: 'center', label: '申请时间' },
{ prop: 'integralRuleName', align: 'center', label: '事件名称'},
{ prop: 'auditStatus', align: 'center', label: '状态', formart: v => v ? this.dict.getLabel('integralDeclareStatus', v) : '-' },
{ prop: 'auditUserName', align: 'center', label: '审批人' },
{ prop: 'integralRuleName', align: 'center', label: '事件名称'},
{ prop: 'auditStatus', align: 'center', label: '状态', formart: v => v ? this.dict.getLabel('integralDeclareStatus', v) : '-' },
{ prop: 'auditUserName', align: 'center', label: '审批人' },
{ prop: 'auditTime', align: 'center', label: '审批时间' }
],
tableData: [],
@@ -164,7 +164,7 @@
<style scoped lang="scss">
.list {
::v-deep .ai-list__content {
:deep( .ai-list__content ){
padding: 0!important;
.ai-list__content--right-wrapper {

View File

@@ -113,7 +113,7 @@ export default {
color: #26f;
}
::v-deep .staCard {
:deep( .staCard ){
font-size: 14px;
width: 25%;

View File

@@ -116,7 +116,7 @@ export default {
this.search.current = 1
this.getTableData()
},
onSearch(v) {
this.orgTree.filter(v)
},
@@ -151,7 +151,7 @@ export default {
.psList {
height: 100%;
::v-deep .is-current>.el-tree-node__content{
:deep( .is-current>.el-tree-node__content){
width: 100%!important;
padding-right: 16px!important;
}

View File

@@ -12,7 +12,7 @@
<ai-select v-model="search.type" :selectList="typeList" placeholder="请选择推送分类" @change="page.current=1,getTableData()"/>
</template>
</ai-search-bar>
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size" @getList="getTableData"
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size" @getList="getTableData"
:col-configs="colConfigs" :dict="dict" @selection-change="v=>search.ids=v.map(e=>e.id).toString()">
<el-table-column slot="type" label="推送分类" align="center" width="200">
<template slot-scope="{row}">
@@ -27,7 +27,7 @@
</el-table-column>
</ai-table>
</template>
</ai-list>
<ai-dialog title="推送信息" :visible.sync="dialog" @closed="formInit" @onConfirm="submit" width="600px">
<el-form :model="form" size="small" ref="DialogForm" :rules="rules" label-width="80px">
@@ -141,7 +141,7 @@ export default {
formInit() {
for(let key in this.form) {
this.form[key] = ''
}
}
}
},
created() {
@@ -154,11 +154,11 @@ export default {
.AppTvMsg {
height: 100%;
::v-deep.mar-t16 {
:deep(.mar-t16 ){
margin-top: 16px;
}
::v-deep.mar-t8 {
:deep(.mar-t8 ){
margin-top: 8px;
}
}