Showing
2 changed files
with
94 additions
and
1 deletions
| ... | @@ -97,12 +97,18 @@ export const constantRoutes = [ | ... | @@ -97,12 +97,18 @@ export const constantRoutes = [ |
| 97 | meta: { title: '查询管理', icon: 'fedexSystem' }, | 97 | meta: { title: '查询管理', icon: 'fedexSystem' }, |
| 98 | children: [ | 98 | children: [ |
| 99 | { | 99 | { |
| 100 | - path: '/apiManager', | 100 | + path: '/exportBillQuery', |
| 101 | component: (resolve) => require(['@/views/exportBillQuery/index'], resolve), | 101 | component: (resolve) => require(['@/views/exportBillQuery/index'], resolve), |
| 102 | hidden: false, | 102 | hidden: false, |
| 103 | meta: { title: '出口订单查询', icon: 'api' }, | 103 | meta: { title: '出口订单查询', icon: 'api' }, |
| 104 | }, | 104 | }, |
| 105 | { | 105 | { |
| 106 | + path: '/exportBillDetail', | ||
| 107 | + component: (resolve) => require(['@/views/exportBillDetail/index'], resolve), | ||
| 108 | + hidden: false, | ||
| 109 | + meta: { title: '出口订单详情', icon: 'api' }, | ||
| 110 | + }, | ||
| 111 | + { | ||
| 106 | path: 'index', | 112 | path: 'index', |
| 107 | component: (resolve) => require(['@/views/index'], resolve), | 113 | component: (resolve) => require(['@/views/index'], resolve), |
| 108 | name: '首页', | 114 | name: '首页', | ... | ... |
src/views/exportBillDetail/index.vue
0 → 100644
| 1 | +<template> | ||
| 2 | + <h3> | ||
| 3 | + 出口订单详情 | ||
| 4 | + </h3> | ||
| 5 | + <el-form | ||
| 6 | + class="fedexFormStyle fedexformSreach fedexformSreachBottomBorder" | ||
| 7 | + ref="sreachForm" | ||
| 8 | + :model="searchForm" | ||
| 9 | + label-position="top" | ||
| 10 | + size="small" | ||
| 11 | + > | ||
| 12 | + <el-row class="row-border"> | ||
| 13 | + <el-col :span="5"> | ||
| 14 | + <Formitem label="订单编号" prop="consignmentCode"> | ||
| 15 | + <el-popover | ||
| 16 | + placement="bottom" | ||
| 17 | + width="320" | ||
| 18 | + trigger="manual" | ||
| 19 | + popper-class="popoverconsignmentCode" | ||
| 20 | + v-model="textareaVisible.formItemconsignmentCode" | ||
| 21 | + > | ||
| 22 | + <el-input | ||
| 23 | + name="consignmentCode-textarea" | ||
| 24 | + type="textarea" | ||
| 25 | + :rows="5" | ||
| 26 | + id="popoverInputconsignmentCode" | ||
| 27 | + class="inputShadow textareaPopover" | ||
| 28 | + v-model="searchForm.consignmentCode" | ||
| 29 | + resize="none" | ||
| 30 | + maxlength="13000" | ||
| 31 | + placeholder="" | ||
| 32 | + @blur="textareaBlur" | ||
| 33 | + @input="input" | ||
| 34 | + ></el-input> | ||
| 35 | + <el-input | ||
| 36 | + slot="reference" | ||
| 37 | + name="consignmentCode" | ||
| 38 | + type="textarea" | ||
| 39 | + :rows="1" | ||
| 40 | + class="inputShadow" | ||
| 41 | + id="inputInner--consignmentCode" | ||
| 42 | + v-model="searchForm.consignmentCode" | ||
| 43 | + resize="none" | ||
| 44 | + placeholder="" | ||
| 45 | + @focus="textareaFocus" | ||
| 46 | + @input="input" | ||
| 47 | + ></el-input> | ||
| 48 | + </el-popover> | ||
| 49 | + </Formitem> | ||
| 50 | + </el-col> | ||
| 51 | + <el-col :span="4"> | ||
| 52 | + <Formitem label="订单类型" prop="factoryCode"> | ||
| 53 | + <el-select | ||
| 54 | + type="text" | ||
| 55 | + id="inputInner--declaredPort" | ||
| 56 | + v-model="searchForm.declaredPort" | ||
| 57 | + clearable | ||
| 58 | + placeholder="" | ||
| 59 | + @change="portChange" | ||
| 60 | + > | ||
| 61 | + <el-option | ||
| 62 | + v-for="(item, index) in dictData.userport" | ||
| 63 | + :key="index" | ||
| 64 | + :label="item.name" | ||
| 65 | + :value="item.name" | ||
| 66 | + ></el-option> | ||
| 67 | + </el-select> | ||
| 68 | + </Formitem> | ||
| 69 | + </el-col> | ||
| 70 | + </el-row> | ||
| 71 | + </el-form>> | ||
| 72 | +</template> | ||
| 73 | + | ||
| 74 | +<script> | ||
| 75 | +export default { | ||
| 76 | + name: "index.vue", | ||
| 77 | + data() { | ||
| 78 | + return { | ||
| 79 | + | ||
| 80 | + } | ||
| 81 | + } | ||
| 82 | +} | ||
| 83 | +</script> | ||
| 84 | + | ||
| 85 | +<style scoped lang="scss"> | ||
| 86 | + | ||
| 87 | +</style> |
-
Please register or login to post a comment