| | |
| | | <el-table-column prop="areas" label="包含地区" min-width="200px" align="center"> |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.areaList && row.areaList.length" > |
| | | <span v-for="item in row.areaList">{{item.name}};> </span> |
| | | <span v-for="item in row.areaList">{{item.name}};</span> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | }, |
| | | methods: { |
| | | statusChange (row) { |
| | | this.api.updateById({ id: row.id, status: row.status }) |
| | | this.api.updateStatusById({ id: row.id, status: row.status }) |
| | | .then(() => { |
| | | this.$message.success('操作成功') |
| | | }) |