12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <template>
- <!-- 火运费账单页面 -->
- <div class="purchaseOrder">
- <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>
- <el-button type="primary" @click="trainclick">
- 生成火运费账单
- </el-button>
- </div>
- <dilTable v-bind.sync="option">
- <el-table-column fixed="right" label="操作" width="100">
- <template slot-scope="scope">
- <el-button @click="btnclick(scope.row)" type="text" size="small"
- >详情</el-button
- >
- </template>
- </el-table-column>
- </dilTable>
- </div>
- </template>
- <script>
- export default {
- name: "purchaseOrder",
- data() {
- return {
- input:"",
- option: {
- // 表格请求数据的地址
- requestUrl: "/api/v1/bms/getTrainStatementList?apiId=121",
- },
- };
- },
- methods: {
- onclick() {
- this.option.requestUrl = "/api/v1/bms/getTrainStatementList?apiId=121&con="+this.input;
- },
- btnclick(row) {
- this.$router.push("/statementDetailsOrder/" + row.batchId + "?statementId=" + row.statementId);
- },
- trainclick() {
- this.$router.push("/uncomplateTrainDetails");
- },
- // waterclick() {
- // this.$router.push("/bmsship/uncomplateWater");
- // },
- // click() {
- // this.$confirm("是否生成", "提示", {
- // confirmButtonText: "确定",
- // cancelButtonText: "取消",
- // type: "warning",
- // center: true,
- // })
- // .then(() => {
- // this.$message({
- // type: "success",
- // message: "生成途损账单成功!",
- // });
- // this.axios.post("/api/v1/bmsship/bmsshipstatement/addLossStatement",this.mapList)
- // .then(() => {
- // this.$router.go(-1);
- // });
- // })
- // .catch(() => {
- // this.$message({
- // type: "info",
- // message: "取消生成!",
- // });
- // });
- // // this.$router.push("/path/addHomeworkPath/");
- // },
- // click() {
- // this.$router.push("/bmsship/toBeStatement");
- // }
- },
- };
- </script>
- <style lang='scss' scoped>
- .purchaseOrder {
- .top {
- padding: 1.25rem 1.875rem;
- }
- }
- </style>
|