123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <!-- 辅料进厂作业页面 -->
- <div class="homeworkPath">
- <div class="top">
- <el-input placeholder="请输入内容" v-model="input" clearable> </el-input>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- </div>
- <dilTable v-bind.sync="option">
-
- </dilTable>
- </div>
- </template>
- <script>
- export default {
- name: "homeworkPath",
- data() {
- return {
- restaurants: [],
- input: "",
- option: {
- // 表格请求数据的地址
- requestUrl: "/api/v1/tms/getAllEnFactoryResult?apiId=143&orderType=5",
- },
- };
- },
- methods: {
- querySearch(queryString, cb) {
- var restaurants = this.restaurants;
- var results = queryString
- ? restaurants.filter(this.createFilter(queryString))
- : restaurants;
- cb(results);
- },
- createFilter(queryString) {
- return (restaurant) => {
- return (
- restaurant.value.toLowerCase().indexOf(queryString.toLowerCase()) ===
- 0
- );
- };
- },
- onclick() {
- this.option.requestUrl = "/api/v1/tms/getAllEnFactoryResult?apiId=143&orderType=5&con=" + this.input;
- },
- updateClick(resultId) {
- this.$router.push("/tmsTruck/truckLoadResultEdit/" + resultId);
- },
- //新增
- insertClick() {
- this.$router.push("/tmsTruck/truckLoadResultAdd/");
- },
- // deleteclick(scope) {
- // let pathId = scope;
- // this.$axios
- // .post("/api/v1/tms/operationPath/operationPathDelete?pathId=" + pathId)
- // .then((res) => {
- // this.$message({
- // message: "删除成功",
- // type: "success",
- // });
- // this.$router.go(0);
- // });
- // },
- deleteClick(resultId) {
-
- this.$confirm("是否删除", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- center: true,
- })
- .then(() => {
- this.$message({
- type: "success",
- message: "删除成功!",
- });
- this.$axios
- .post(
- "/api/v1/tms/deleteLoadResult/" + resultId
- )
- .then(() => {
- this.$router.go(0);
- });
- })
- .catch(() => {
- this.$message({
- type: "info",
- message: "取消删除!",
- });
- });
- },
- },
- };
- </script>
- <style lang='scss' scoped>
- .homeworkPath {
- .top {
- padding: 1.25rem 1.875rem;
- }
- }
- </style>
|