|
@@ -216,6 +216,9 @@
|
|
|
style="width: 100%"
|
|
|
:disabled="modify"
|
|
|
class="elSelect"
|
|
|
+ clearable
|
|
|
+ @change="fvslChange"
|
|
|
+ @clear="fvslClear"
|
|
|
placeholder="请输入模糊查找目的船名"
|
|
|
>
|
|
|
<el-scrollbar>
|
|
@@ -2109,7 +2112,9 @@ export default {
|
|
|
modify: true,
|
|
|
doNot: true,
|
|
|
activeNames: ["1", "2", "3", "4", "5"],
|
|
|
- form: {},
|
|
|
+ form: {
|
|
|
+ fVoyid:null
|
|
|
+ },
|
|
|
fMblnoOptions: [],
|
|
|
uploadImgUrl: process.env.VUE_APP_BASE_API + "/common/upload", // 上传的图片服务器地址
|
|
|
relevantAttachments: [],
|
|
@@ -2435,6 +2440,18 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
+ fvslChange(id) {
|
|
|
+ voyageNumber({ fPid: id }).then((res) => {
|
|
|
+ this.voyidList = res.rows;
|
|
|
+ });
|
|
|
+ this.form.fVoyid = null;
|
|
|
+ },
|
|
|
+ fvslClear() {
|
|
|
+ voyageNumber().then((res) => {
|
|
|
+ this.voyidList = res.rows;
|
|
|
+ });
|
|
|
+ this.form.fVoyid = null;
|
|
|
+ },
|
|
|
rejectDeletion() {
|
|
|
this.$confirm("驳回并删除, 是否继续?", "提示", {
|
|
|
confirmButtonText: "确定",
|