Commit 6146e04f68f27804f564afec7c7829c9f0c22d45

Authored by 张红振
2 parents 69cd3ba8 7864ebce

add 列表发布

src/views/event/category/index.vue
@@ -203,7 +203,7 @@ onMounted(() => { @@ -203,7 +203,7 @@ onMounted(() => {
203 <el-form-item> 203 <el-form-item>
204 <el-button type="primary" @click="getList">查询</el-button> 204 <el-button type="primary" @click="getList">查询</el-button>
205 <el-button type="primary" @click="dialogFormVisible = true" 205 <el-button type="primary" @click="dialogFormVisible = true"
206 - >添加活动类型</el-button 206 + >新增活动类型</el-button
207 > 207 >
208 </el-form-item> 208 </el-form-item>
209 </el-form> 209 </el-form>
@@ -250,7 +250,7 @@ onMounted(() =&gt; { @@ -250,7 +250,7 @@ onMounted(() =&gt; {
250 250
251 <el-dialog 251 <el-dialog
252 v-model="dialogFormVisible" 252 v-model="dialogFormVisible"
253 - title="编辑活动类型" 253 + title="新增活动类型"
254 @close="dialogClose" 254 @close="dialogClose"
255 > 255 >
256 <el-form 256 <el-form
src/views/event/handwork/edit.vue
@@ -345,7 +345,7 @@ onMounted(() =&gt; { @@ -345,7 +345,7 @@ onMounted(() =&gt; {
345 <template> 345 <template>
346 <div class="page-container"> 346 <div class="page-container">
347 <el-card class="form_card" style="max-width: 1303px"> 347 <el-card class="form_card" style="max-width: 1303px">
348 - <h1 v-show="form.dataType === 'add'">新增活动</h1> 348 + <h1 v-show="form.dataType === 'add'">发布活动</h1>
349 <h1 v-show="form.dataType === 'edit'">编辑活动</h1> 349 <h1 v-show="form.dataType === 'edit'">编辑活动</h1>
350 <el-form 350 <el-form
351 :inline="true" 351 :inline="true"
src/views/event/handwork/index.vue
@@ -205,8 +205,10 @@ onMounted(() =&gt; { @@ -205,8 +205,10 @@ onMounted(() =&gt; {
205 <el-button type="primary" @click="getList">查询</el-button> 205 <el-button type="primary" @click="getList">查询</el-button>
206 </el-form-item> 206 </el-form-item>
207 <el-form-item> 207 <el-form-item>
208 - <router-link to="/event/handwork/edit">  
209 - <el-button type="primary"> 添加活动 </el-button> 208 + <router-link to="/event/handwork/edit">
  209 + <el-button type="primary">
  210 + 发布活动
  211 + </el-button>
210 </router-link> 212 </router-link>
211 </el-form-item> 213 </el-form-item>
212 </el-form> 214 </el-form>