| | |
| | | <!-- </el-table-column>--> |
| | | <el-table-column label="配方编码" width="130" align="center" :show-overflow-tooltip="true"> |
| | | <template slot-scope="scope"> |
| | | <router-link :to="{path: '/main/formula-data/index/', query: {routeCode: scope.row.formulaCode }}" class="link-type"> |
| | | <router-link :to="{path: '/main/formula-data/index/', query: {formulaCode: scope.row.formulaCode }}" class="link-type"> |
| | | <span>{{ scope.row.formulaCode }}</span> |
| | | </router-link> |
| | | </template> |
| | |
| | | let formulaCode = this.$route.query.formulaCode; |
| | | this.queryParams.formulaCode = formulaCode; |
| | | this.formulaCode = formulaCode; |
| | | this.form.formulaCode = formulaCode; |
| | | this.headerInformation(); |
| | | this.getList(); |
| | | }, |