123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <template>
- <!-- 新增批车作业页面 -->
- <div id="trainTransport">
- <page-title>返回</page-title>
- <dilTable v-bind.sync="option" v-model="table1" @change="handleCheckedCitiesChange"
- ref="table" @radio-change="currentRadioChange">
- </dilTable>
- <div class="form">
- <!-- 第二部分 -->
- <div class="form_box">
- <dil-form :formId="105" v-model="form1"></dil-form>
- </div>
- </div>
- <div class="button_box">
- <el-button @click="onClickCancel">返回</el-button>
- <el-button type="primary" @click="onClickConfirm">确认</el-button>
- </div>
- </div>
- </template>
- <script>
- import PageTitle from "@/components/Page/Title";
- import { sjTime, isNumber } from "@/utils/sharedJsFile";
- export default {
- components: { PageTitle },
- data() {
- return {
- option: {
- // 表格请求数据的地址
- requestUrl:
- "/api/v1/tms/getAllWagonPlease?apiId=57&status=1&resultType=1",
- // 控制显示当选列
- selectionType: "radio",
- },
- // 表单
- form1: {},
- // 表格
- table1: {},
- contractId: "",
- inf: {},
- };
- },
- mounted() {
- // this.unit();
- },
- methods: {
- onclick(){
- },
- handleCheckedCitiesChange(value) {
- console.log(value);
- },
- // 返回
- onClickCancel() {
- this.$router.go(-1);
- },
- currentRadioChange(row) {
- this.inf = row;
- },
- // 确认
- onClickConfirm() {
- let approveWagonPlease = {
- resultId: this.inf.resultId,
- resultApproveDate: sjTime(this.form1.resultApproveDate),
- resultApproveNumber: this.form1.resultApproveNumber,
- };
- function isNumber() {
- var value = approveWagonPlease.resultApproveNumber;
- //验证是否为数字
- var patrn = /^(-)?\d+(\.\d+)?$/;
- if (patrn.exec(value) == null || value == "") {
- return false;
- } else {
- return true;
- }
- }
- var val = this.value;
- if (
- approveWagonPlease.resultId == null ||
- approveWagonPlease.resultApproveDate == null ||
- approveWagonPlease.resultApproveNumber == null
- )
- this.$message.error("存在空值!");
- else if (!isNumber(val)) this.$message.error("请车数量必须是数字!");
- else console.log(approveWagonPlease);
- this.axios
- .post("/api/v1/tms/addApproveWagonPlease", approveWagonPlease)
- .then(() => {
- this.$message({
- type: "success",
- message: "新增成功!",
- });
- this.$router.go(-1);
- });
- },
- },
- };
- </script>
- <style lang="scss">
- #trainTransport {
- .form {
- display: flex;
- .form_box {
- width: 340px;
- margin-left: 35%;
- margin-top: 30px;
- margin-right: 20px;
- .el-form {
- .preview-group {
- .el-form-item {
- .el-form-item__label {
- display: inline-block;
- width: 70px !important;
- }
- .el-form-item__content {
- .el-select {
- width: 250px;
- }
- .el-input {
- width: 250px;
- }
- }
-
- }
-
- }
- }
- }
-
- }
- .button_box {
- margin-left: 42%;
- margin-top: 55px;
- }
- }
- </style>
|