|
@@ -11,6 +11,8 @@
|
|
|
placeholder="请选择"
|
|
|
style="width: 100%"
|
|
|
clearable
|
|
|
+ @change="fvslChange"
|
|
|
+ @clear="fvslClear"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in TVesselfs"
|
|
@@ -224,7 +226,9 @@ import Cookies from "js-cookie";
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
- form: {},
|
|
|
+ form: {
|
|
|
+ fVoyid: null,
|
|
|
+ },
|
|
|
show: false,
|
|
|
tableData: [],
|
|
|
tableOption: tableOption,
|
|
@@ -251,7 +255,7 @@ export default {
|
|
|
fName: "审核通过",
|
|
|
},
|
|
|
],
|
|
|
- sysType:null,
|
|
|
+ sysType: null,
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
@@ -274,6 +278,18 @@ export default {
|
|
|
this.$refs.columnSetting.getRow(this.tableOption);
|
|
|
},
|
|
|
methods: {
|
|
|
+ fvslChange(id) {
|
|
|
+ selectTVoyagef({ fPid: id }).then((res) => {
|
|
|
+ this.TVoyagefs = res.rows;
|
|
|
+ });
|
|
|
+ this.form.fVoyid = null;
|
|
|
+ },
|
|
|
+ fvslClear() {
|
|
|
+ selectTVoyagef().then((res) => {
|
|
|
+ this.TVoyagefs = res.rows;
|
|
|
+ });
|
|
|
+ this.form.fVoyid = null;
|
|
|
+ },
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
let that = this;
|
|
@@ -325,7 +341,8 @@ export default {
|
|
|
} else {
|
|
|
return prev;
|
|
|
}
|
|
|
- }, 0)).toFixed(2) + "元";
|
|
|
+ }, 0)
|
|
|
+ ).toFixed(2) + "元";
|
|
|
} else {
|
|
|
sums[index] =
|
|
|
Number(
|