Browse Source

代码提交

master
juwei001 1 year ago
parent
commit
4194399f35
  1. 7
      src/views/modules/communityParty/inventory/activitys.vue
  2. 4
      src/views/modules/communityParty/inventory/activitysDetail.vue
  3. 13
      src/views/modules/communityParty/inventory/activitysForm.vue
  4. 923
      src/views/modules/communityParty/orgActivity/activivityList/addActivity.vue
  5. 6
      src/views/modules/partymember/edit-ldbz.vue
  6. 1
      src/views/modules/partymember/icpartyorgtree.vue

7
src/views/modules/communityParty/inventory/activitys.vue

@ -74,13 +74,16 @@
:header-cell-style="{ background: '#2195FE', color: '#FFFFFF' }" :header-cell-style="{ background: '#2195FE', color: '#FFFFFF' }"
:height="tableHeight" :height="tableHeight"
> >
<el-table-column prop="title" label="标题"> </el-table-column> <el-table-column prop="title" width="360" label="标题"> </el-table-column>
<el-table-column prop="type" label="类型"> <el-table-column prop="type" width="100" label="类型">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ getTypeLable(scope.row.type) }}</span> <span>{{ getTypeLable(scope.row.type) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="content" label="内容"> </el-table-column> <el-table-column prop="content" label="内容"> </el-table-column>
<el-table-column prop="sort" width="100" label="排序">
</el-table-column>
<el-table-column label="操作" fixed="right" width="200" class="operate"> <el-table-column label="操作" fixed="right" width="200" class="operate">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button

4
src/views/modules/communityParty/inventory/activitysDetail.vue

@ -11,6 +11,10 @@
<span class="info-title-2">标题</span> <span class="info-title-2">标题</span>
<span>{{ formData.title }}</span> <span>{{ formData.title }}</span>
</div> </div>
<div class="info-prop">
<span class="info-title-2">排序</span>
<span>{{ formData.sort }}</span>
</div>
<div class="info-prop"> <div class="info-prop">
<span class="info-title-2">内容</span> <span class="info-title-2">内容</span>
<p class="text_p" style="background-color:#ccc !important;" v-html="formData.content"></p> <p class="text_p" style="background-color:#ccc !important;" v-html="formData.content"></p>

13
src/views/modules/communityParty/inventory/activitysForm.vue

@ -39,6 +39,19 @@
> >
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item
label="排序"
prop="sort"
label-width="150px"
style="display: block"
>
<el-input
class="item_width_1"
placeholder="请输入"
v-model="formData.sort"
>
</el-input>
</el-form-item>
<el-form-item <el-form-item
label="内容" label="内容"

923
src/views/modules/communityParty/orgActivity/activivityList/addActivity.vue

File diff suppressed because it is too large

6
src/views/modules/partymember/edit-ldbz.vue

@ -23,6 +23,12 @@
<el-input v-model="tableDataEdit[scope.$index].position" v-else /> <el-input v-model="tableDataEdit[scope.$index].position" v-else />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="sort" label="排序">
<template slot-scope="scope">
<span v-if="!scope.row.ifEdit">{{ scope.row.sort }}</span>
<el-input v-model="tableDataEdit[scope.$index].sort" v-else />
</template>
</el-table-column>
<el-table-column label="操作" align="center"> <el-table-column label="操作" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button

1
src/views/modules/partymember/icpartyorgtree.vue

@ -58,6 +58,7 @@
> >
<el-button <el-button
@click="openLdbz(scope.row)" @click="openLdbz(scope.row)"
v-if="scope.row.partyOrgType==3||scope.row.partyOrgType==4||scope.row.partyOrgType==5"
type="text" type="text"
size="small" size="small"
class="div-table-button--detail" class="div-table-button--detail"

Loading…
Cancel
Save