133 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			133 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <ai-list>
 | |
|     <ai-title slot="title" title="晒农产品" isShowBottomBorder></ai-title>
 | |
|     <template slot="content">
 | |
|       <ai-search-bar bottomBorder>
 | |
|         <template #left>
 | |
|           <ai-select v-model="search.type" clearable @change="search.current = 1, getList()" :selectList="dict.getDict('agriculturalType')"></ai-select>
 | |
|           <el-button icon="iconfont iconDelete" size="small" @click="removeAll" :disabled="ids.length == 0">删除 </el-button>
 | |
|         </template>
 | |
|         <template #right>
 | |
|           <el-input
 | |
|             v-model="search.title"
 | |
|             size="small"
 | |
|             placeholder="请输入标题/联系电话"
 | |
|             clearable
 | |
|             v-throttle="() => {search.current = 1, getList()}"
 | |
|             @clear="search.current = 1, search.title = '', getList()"
 | |
|             suffix-icon="iconfont iconSearch">
 | |
|           </el-input>
 | |
|         </template>
 | |
|       </ai-search-bar>
 | |
|       <ai-table
 | |
|         :tableData="tableData"
 | |
|         :col-configs="colConfigs"
 | |
|         :total="total"
 | |
|         v-loading="loading"
 | |
|         style="margin-top: 16px;"
 | |
|         :current.sync="search.current"
 | |
|         :size.sync="search.size"
 | |
|         @selection-change="v => (ids = v.map((e) => e.id))"
 | |
|         @getList="getList">
 | |
|         <el-table-column slot="options" width="120px" fixed="right" label="操作" align="center">
 | |
|           <template slot-scope="{ row }">
 | |
|             <div class="table-options">
 | |
|               <el-button type="text" @click="remove(row.id)">删除</el-button>
 | |
|             </div>
 | |
|           </template>
 | |
|         </el-table-column>
 | |
|       </ai-table>
 | |
|     </template>
 | |
|   </ai-list>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
|   export default {
 | |
|     name: 'List',
 | |
| 
 | |
|     props: {
 | |
|       instance: Function,
 | |
|       dict: Object
 | |
|     },
 | |
| 
 | |
|     data () {
 | |
|       return {
 | |
|         search: {
 | |
|           current: 1,
 | |
|           status: '',
 | |
|           size: 10,
 | |
|           type: '',
 | |
|           title: ''
 | |
|         },
 | |
|         ids: [],
 | |
|         tableData: [],
 | |
|         total: 0,
 | |
|         loading: false
 | |
|       }
 | |
|     },
 | |
| 
 | |
|     computed: {
 | |
|       colConfigs () {
 | |
|         return [
 | |
|           { type: 'selection' },
 | |
|           { prop: 'title', label: '标题' },
 | |
|           { prop: 'type', align: 'center', label: '类型', formart: v => this.dict.getLabel('agriculturalType', v) },
 | |
|           { prop: 'phone', align: 'center', label: '联系电话' },
 | |
|           { prop: 'contactPerson', align: 'center', label: '发布人' },
 | |
|           { prop: 'createTime', align: 'center', label: '发布时间' }
 | |
|         ]
 | |
|       }
 | |
|     },
 | |
| 
 | |
|     created () {
 | |
|       this.dict.load('agriculturalType').then(() => {
 | |
|         this.getList()
 | |
|       })
 | |
|     },
 | |
| 
 | |
|     mounted () {
 | |
|       this.loading = true
 | |
|     },
 | |
| 
 | |
|     methods: {
 | |
|       getList () {
 | |
|         this.instance.post(`/app/appshowagriculturalproduce/list`, null, {
 | |
|           params: {
 | |
|             ...this.search
 | |
|           }
 | |
|         }).then(res => {
 | |
|           if (res.code == 0) {
 | |
|             this.tableData = res.data.records
 | |
|             this.total = res.data.total
 | |
|             this.loading = false
 | |
|           } else {
 | |
|             this.loading = false
 | |
|           }
 | |
|         }).catch(() => {
 | |
|           this.loading = false
 | |
|         })
 | |
|       },
 | |
| 
 | |
|       remove (id) {
 | |
|         this.$confirm('确定删除该数据?').then(() => {
 | |
|           this.instance.post(`/app/appshowagriculturalproduce/delete?ids=${id}`).then(res => {
 | |
|             if (res.code == 0) {
 | |
|               this.$message.success('删除成功!')
 | |
|               this.getList()
 | |
|             }
 | |
|           })
 | |
|         })
 | |
|       },
 | |
| 
 | |
|       removeAll() {
 | |
|         var id = this.ids.join(',')
 | |
|         this.remove(id)
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| </script>
 | |
| 
 | |
| <style scoped lang="scss">
 | |
| 
 | |
| </style>
 |