Commit 26cc1a15 authored by honghy's avatar honghy

需求114 后台-集运-包裹列表-操作-特需

parent f0ee0b51
This diff is collapsed.
......@@ -170,6 +170,7 @@
<el-button size="mini" type="text" icon="el-icon-edit" @click="transmutation(scope.row)">{{$t('转异')}}</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="specialNeedsCons(scope.row)">{{$t('特需')}}</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="specialNeedsConsLook(scope.row)">{{$t('特需查看')}}</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="feeApplication(scope.row)">{{$t('费用申请')}}</el-button>
</template>
</el-table-column>
</el-table>
......@@ -253,6 +254,7 @@
<Transmutation :showException.sync="showException" :id="id" @determine="getList"></Transmutation>
<SpecialNeedsCons :showSpecialNeedsCons.sync="showSpecialNeedsCons" :currency="JSON.stringify(currencyList)" :consId="id" :consNum="consNum" @determine="getList"></SpecialNeedsCons>
<SpecialNeedsConsLook :showSpecialNeedsConsLook.sync="showSpecialNeedsConsLook" :consNum="consNum" :consId="id"></SpecialNeedsConsLook>
<fee-application-cons v-if="feeApplicationBol" :order-id="id" :currencys="JSON.stringify(currencyList)" :dialog-visible.sync="feeApplicationBol "@refresh="getList"></fee-application-cons>
</div>
</template>
......@@ -263,12 +265,13 @@ import Transmutation from "@/views/ecw/cons/components/Transmutation.vue"
import Template from "@/views/cms/template/index.vue";
import UserSelector from "@/components/UserSelector/index.vue";
import { getWarehouseList } from "@/api/ecw/warehouse";
import {getTradeCountryList} from "@/api/ecw/region";
import {getRegionList} from "@/api/ecw/order";
import SpecialNeedsCons from "@/views/ecw/cons/components/SpecialNeedsCons.vue"
import SpecialNeedsConsLook from "@/views/ecw/cons/components/SpecialNeedsConsLook.vue"
import { getCurrencyList } from "@/api/ecw/currency"
import FeeApplicationCons from "@/views/ecw/cons/components/FeeApplicationCons.vue"
import FeeApplication from "@/views/ecw/order/feeApplication.vue"
export default {
name: "Cons",
......@@ -276,6 +279,7 @@ export default {
UserSelector,
Transmutation,
Template,
FeeApplicationCons,
SpecialNeedsConsLook,
SpecialNeedsCons
},
......@@ -343,6 +347,7 @@ export default {
id: null,
currencyList: [],
consNum: null,
feeApplicationBol: false
};
},
created() {
......@@ -566,6 +571,12 @@ export default {
this.id = row.id
this.consNum = row.consNum
this.showSpecialNeedsConsLook = true
},
//费用申请
feeApplication(row) {
this.id = row.id
this.consNum = row.consNum
this.feeApplicationBol = true
}
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment