| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <!-- -->
- <template>
- <div class="m-container">
- <h2>
- <div class="squrt"></div>
- 乐器维护
- </h2>
- <div class="m-core">
- <save-form
- :inline="true"
- :model="searchForm"
- @submit="search"
- @reset="onReSet"
- >
- <el-form-item>
- <el-input
- v-model.trim="searchForm.search"
- clearable
- @keyup.enter.native="search"
- placeholder="学生姓名、编号、电话"
- ></el-input>
- </el-form-item>
- <el-form-item>
- <el-select
- class="multiple"
- v-model.trim="searchForm.organId"
- filterable
- clearable
- placeholder="请选择分部"
- >
- <el-option
- v-for="(item, index) in selects.branchs"
- :key="index"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-select
- placeholder="请选择乐器分类"
- v-model="searchForm.goodsCategoryId"
- clearable
- filterable
- >
- <el-option
- v-for="(item) in categoryList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item prop="status">
- <el-select
- v-model.trim="searchForm.status"
- filterable
- clearable
- placeholder="是否乐保"
- >
- <el-option value="0" label="否"></el-option>
- <el-option value="1" label="是"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button native-type="submit" type="primary">搜索</el-button>
- <el-button native-type="reset" type="danger">重置</el-button>
- </el-form-item>
- </save-form>
- <div class="tableWrap">
- <el-table
- style="width: 100%"
- :header-cell-style="{ background: '#EDEEF0', color: '#444' }"
- :data="tableList"
- >
- <el-table-column
- align="center"
- prop="id"
- label="维护编号"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="organName"
- label="分部"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="studentId"
- label="学员编号"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="studentName"
- label="学员姓名"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="phone"
- label="联系电话"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="goodsName"
- label="乐器名称"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="goodsCategoryName"
- label="乐器种类"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="goodsId"
- label="乐器编号"
- ></el-table-column>
- <el-table-column
- align="center"
- prop="studentId"
- label="有效期"
- >
- <template slot-scope="scope">
- <div>
- {{ scope.row.startTime|formatTimer}}~{{scope.row.endTime | formatTimer}}
- </div>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="studentId" label="操作">
- <template slot-scope="scope">
- <div>
- <el-button type="text" @click="lookRepair(scope.row)">查看维修单</el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- sync
- :total.sync="rules.total"
- :page.sync="rules.page"
- :limit.sync="rules.limit"
- :page-sizes="rules.page_size"
- @pagination="getList"
- />
- </div>
- </div>
- </div>
- </template>
- <script>
- import axios from "axios";
- import { getToken } from "@/utils/auth";
- import pagination from "@/components/Pagination/index";
- import { categoryListTree } from "@/api/businessManager";
- import { getInstrument } from "@/api/buildTeam";
- import load from "@/utils/loading";
- export default {
- components: { pagination },
- data() {
- return {
- searchForm: {
- search: null,
- organId:'',
- goodsCategoryId:'',
- status:''
- },
- soundLists: [],
- organList: [],
- tableList:[],
- rules: {
- // 分页规则
- limit: 10, // 限制显示条数
- page: 1, // 当前页
- total: 0, // 总条数
- page_size: [10, 20, 40, 50], // 选择限制显示条数
- },
- categoryList:[]
- };
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {},
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- // 获取分部
- this.$store.dispatch("setBranchs");
- this.init();
- this.getList()
- },
- methods: {
- init() {
- this.getCategory()
- },
- search() {
- this.rules.page = 1;
- this.getList()
- },
- onReSet() {},
- async getList() {
- try{
- const res = await getInstrument({...this.searchForm,rows:this.rules.limit,page:this.rules.page})
- this.tableList = res.data.rows
- }catch(e){
- console.log(e)
- }
- },
- getCategory() {
- let params = {
- delFlag: 0,
- rows: 9999,
- };
- categoryListTree(params).then((res) => {
- let result = res.data;
- if (res.code == 200) {
- let tempArray = [];
- result.rows.forEach((row) => {
- tempArray.push({
- label: row.name,
- value: row.id,
- });
- });
- this.categoryList = tempArray;
- }
- });
- },
- lookRepair(row){
- this.$router.push({path:'/business/repairList',query:{hasExemptionAmount:'1',studentInstrumentId:row.id}})
- }
- },
- };
- </script>
- <style lang='scss' scoped>
- </style>
|