12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <template>
- <!-- 修改原料仓库信息 -->
- <div id="contractDetails">
- <page-title>编辑</page-title>
- <div class="main">
- <span class="text">原料仓库信息</span>
- </div>
- <div class="contractTitle">
- <div class="form-box">
- <div class="form-one">
- <dil-form :formId="355" v-model="form1"></dil-form>
- </div>
- </div>
- </div>
- <div class="button-box">
- <el-button type="primary" @click="onClickConfirm">确认</el-button>
- <el-button @click="onClickCancel">返回</el-button>
- </div>
- </div>
- </template>
- <script>
- import PageTitle from "@/components/Page/Title";
- export default {
- components: { PageTitle },
- data() {
- return {
- form1: {
- warehouseName: '',
- },
- };
- },
- mounted() {
- console.log(this.$route)
- this.information();
- },
- methods: {
- information() {
- //编辑
- console.log("warehouseId",this.$route.params.warehouseId);
- this.axios
- .post(
- "/api/v1/rms/getWarehouseById/" +
- this.$route.params.warehouseId
- )
- .then((res) => {
- this.form1.warehouseName = res.data.data.warehouseName;
- });
- },
- // 返回
- onClickCancel() {
- this.$router.go(-1);
- },
- // 确认
- onClickConfirm() {
- console.log(this.form1)
- let RmsWarehouse={
- warehouseId:this.$route.params.warehouseId,
- warehouseName:this.form1.warehouseName
- };
- if(
- warehouseName==null
- )this.$message.error("存在空值!");
- console.log(RmsWarehouse)
- this.axios
- .post(
- "/api/v1/rms/updateWarehouse",
- RmsWarehouse
- )
- .then((res) => {
- if (res.data.code == "200") {
- this.$router.go(-1);
- }
- });
- },
- },
- };
- </script>
- <style lang='scss' scoped>
- .form-box,
- .button-box{
- display: flex;
- text-align: center;
- align-items: center;
- justify-content: center;
- margin-top: 0.3125rem;
- margin-bottom: 1.25rem;
- }
- </style>
|