|
@@ -6,12 +6,11 @@
|
|
|
status-icon
|
|
|
:size="'mini'"
|
|
|
ref="ruleForm"
|
|
|
- label-width="120px"
|
|
|
+ label-width="110px"
|
|
|
class="demo-ruleForm"
|
|
|
>
|
|
|
<el-row>
|
|
|
-
|
|
|
- <el-col :span="type === '1' ? 12 : 24">
|
|
|
+ <el-col :span="12">
|
|
|
<el-form-item label="商品名称" prop="goods_name">
|
|
|
<el-input
|
|
|
:disabled="
|
|
@@ -28,7 +27,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<!-- 采购数量 -->
|
|
|
- <el-col :span="type === '1' ? 12 : 24">
|
|
|
+ <el-col :span="12">
|
|
|
<el-form-item label="采购数量" prop="goods_num">
|
|
|
<el-input
|
|
|
:disabled="
|
|
@@ -43,7 +42,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<!-- 最晚入库时间 -->
|
|
|
- <el-col :span="type === '1' ? 12 : 24">
|
|
|
+ <el-col :span="12">
|
|
|
<el-form-item label="最晚入库时间" prop="last_go_stock">
|
|
|
<el-date-picker
|
|
|
v-model="ruleForm.last_go_stock"
|
|
@@ -62,7 +61,7 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="type === '1' ? 12 : 24">
|
|
|
+ <el-col :span="12">
|
|
|
<el-form-item label="附件" prop="file_url">
|
|
|
<div
|
|
|
class="file_url"
|
|
@@ -93,12 +92,22 @@
|
|
|
查看
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <add-edit> -->
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ :rows="2"
|
|
|
+ placeholder="备注"
|
|
|
+ v-model="remark"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
<el-col
|
|
|
- :span="type === '1' ? 12 : 24"
|
|
|
+ :span="12"
|
|
|
style="padding: 0 0 15px 0; text-align: right"
|
|
|
>
|
|
|
<el-button
|
|
@@ -122,12 +131,7 @@
|
|
|
@searchChange="addGoodsRes"
|
|
|
/>
|
|
|
|
|
|
- <show-pdf-model
|
|
|
- :show-model="showPDF"
|
|
|
- :name="PDF_name"
|
|
|
- :url="PDF_url"
|
|
|
- @closeModel="showPDF = false"
|
|
|
- />
|
|
|
+
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -135,14 +139,13 @@ import resToken from "@/mixins/resToken";
|
|
|
import asyncRequest from "@/apis/service/sellOut/stockApply";
|
|
|
import { isnumber } from "@/utils/validate";
|
|
|
import searchGoodModal from "@/components/search-good-modal";
|
|
|
-// import showPdfModel from "@/components/show-pdf-model";
|
|
|
export default {
|
|
|
name: "stockApply",
|
|
|
props: ["id", "sitem", "newTime", "type"],
|
|
|
mixins: [resToken],
|
|
|
- components: { searchGoodModal
|
|
|
- //, showPdfModel
|
|
|
- },
|
|
|
+ components: {
|
|
|
+ searchGoodModal,
|
|
|
+ },
|
|
|
computed: {
|
|
|
powers() {
|
|
|
let tran =
|
|
@@ -181,14 +184,11 @@ export default {
|
|
|
return time.getTime() < Date.now();
|
|
|
},
|
|
|
},
|
|
|
- showPDF: false,
|
|
|
- PDF_name: "",
|
|
|
- PDF_url: "",
|
|
|
status: "",
|
|
|
cat_id: "",
|
|
|
routerId: "",
|
|
|
stockCode: "",
|
|
|
-
|
|
|
+
|
|
|
showGoodsModel: "",
|
|
|
loading: false,
|
|
|
ruleForm: {
|
|
@@ -206,7 +206,6 @@ export default {
|
|
|
},
|
|
|
rulesThis: this.rules,
|
|
|
rules: {
|
|
|
-
|
|
|
goods_name: [
|
|
|
{
|
|
|
required: true,
|
|
@@ -235,7 +234,6 @@ export default {
|
|
|
trigger: "change",
|
|
|
},
|
|
|
],
|
|
|
-
|
|
|
},
|
|
|
};
|
|
|
},
|
|
@@ -252,13 +250,8 @@ export default {
|
|
|
await this.resetForm();
|
|
|
this.loading = false;
|
|
|
},
|
|
|
- PDFModelShow() {
|
|
|
- this.PDF_name = this.ruleForm.file_url_name;
|
|
|
- this.PDF_url = this.ruleForm.file_url;
|
|
|
- this.showPDF = true;
|
|
|
- console.log(34567);
|
|
|
- },
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
// 执行点击商品名称的抛出事件
|
|
|
addGoodsRes(e) {
|
|
|
let { good_code, type_code, good_name } = e[0];
|
|
@@ -267,7 +260,7 @@ export default {
|
|
|
this.ruleForm.good_code = good_code;
|
|
|
this.$refs.ruleForm.validateField("goods_name");
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
closeModel() {
|
|
|
this.$emit("closeModel");
|
|
|
},
|
|
@@ -293,7 +286,6 @@ export default {
|
|
|
// 缺供应商
|
|
|
} = this.sitem;
|
|
|
|
|
|
-
|
|
|
this.ruleForm = {
|
|
|
id,
|
|
|
good_code,
|
|
@@ -303,7 +295,7 @@ export default {
|
|
|
last_go_stock: lasttime,
|
|
|
file_url: file_url || "",
|
|
|
file_url_name: file_name || "",
|
|
|
-
|
|
|
+
|
|
|
status,
|
|
|
};
|
|
|
}
|