Commit 6146e04f68f27804f564afec7c7829c9f0c22d45

Authored by 张红振
2 parents 69cd3ba8 7864ebce

add 列表发布

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