Showing
1 changed file
with
83 additions
and
5 deletions
| ... | @@ -78,7 +78,7 @@ | ... | @@ -78,7 +78,7 @@ |
| 78 | </Formitem> | 78 | </Formitem> |
| 79 | </el-col> | 79 | </el-col> |
| 80 | <!-- 电商企业代码 --> | 80 | <!-- 电商企业代码 --> |
| 81 | - <el-col :span="6"> | 81 | + <el-col :span="3"> |
| 82 | <Formitem label="申报地海关" prop="declareCustomsCode"> | 82 | <Formitem label="申报地海关" prop="declareCustomsCode"> |
| 83 | <el-select | 83 | <el-select |
| 84 | type="text" | 84 | type="text" |
| ... | @@ -97,6 +97,86 @@ | ... | @@ -97,6 +97,86 @@ |
| 97 | </el-select> | 97 | </el-select> |
| 98 | </Formitem> | 98 | </Formitem> |
| 99 | </el-col> | 99 | </el-col> |
| 100 | + <!-- new --> | ||
| 101 | + <!-- 电商平台代码、电商平台名称、生产销售企业代码、生产销售企业名称、申报业务类型 --> | ||
| 102 | + <el-col :span="3"> | ||
| 103 | + <Formitem label="电商平台代码" prop="ebpCode"> | ||
| 104 | + <el-input | ||
| 105 | + type="text" | ||
| 106 | + class="inputShadow" | ||
| 107 | + id="inputInner--ebpCode" | ||
| 108 | + resize="none" | ||
| 109 | + v-model="formData.ebpCode" | ||
| 110 | + clearable | ||
| 111 | + placeholder="" | ||
| 112 | + ></el-input> | ||
| 113 | + </Formitem> | ||
| 114 | + </el-col> | ||
| 115 | + <el-col :span="6"> | ||
| 116 | + <Formitem label="电商平台名称" prop="ebpName"> | ||
| 117 | + <el-input | ||
| 118 | + type="text" | ||
| 119 | + class="inputShadow" | ||
| 120 | + id="inputInner--ebpName" | ||
| 121 | + resize="none" | ||
| 122 | + v-model="formData.ebpName" | ||
| 123 | + clearable | ||
| 124 | + placeholder="" | ||
| 125 | + ></el-input> | ||
| 126 | + </Formitem> | ||
| 127 | + </el-col> | ||
| 128 | + </el-row> | ||
| 129 | + <el-row :gutter="5"> | ||
| 130 | + <el-col :span="3"> | ||
| 131 | + <Formitem | ||
| 132 | + label="生产销售企业代码" | ||
| 133 | + prop="productionSaleEnterpriseCode" | ||
| 134 | + > | ||
| 135 | + <el-input | ||
| 136 | + type="text" | ||
| 137 | + class="inputShadow" | ||
| 138 | + id="inputInner--productionSaleEnterpriseCode" | ||
| 139 | + resize="none" | ||
| 140 | + v-model="formData.productionSaleEnterpriseCode" | ||
| 141 | + clearable | ||
| 142 | + placeholder="" | ||
| 143 | + ></el-input> | ||
| 144 | + </Formitem> | ||
| 145 | + </el-col> | ||
| 146 | + <el-col :span="6"> | ||
| 147 | + <Formitem label="生产销售企业名称" prop="ebcName"> | ||
| 148 | + <el-input | ||
| 149 | + type="text" | ||
| 150 | + class="inputShadow" | ||
| 151 | + id="inputInner--ebcName" | ||
| 152 | + resize="none" | ||
| 153 | + v-model="formData.ebcName" | ||
| 154 | + clearable | ||
| 155 | + placeholder="" | ||
| 156 | + ></el-input> | ||
| 157 | + </Formitem> | ||
| 158 | + </el-col> | ||
| 159 | + <el-col :span="3"> | ||
| 160 | + <Formitem label="申报业务类型" prop="declareBusinessType"> | ||
| 161 | + <el-select | ||
| 162 | + type="text" | ||
| 163 | + id="inputInner--declareBusinessType" | ||
| 164 | + v-model="formData.declareBusinessType" | ||
| 165 | + filterable | ||
| 166 | + clearable | ||
| 167 | + placeholder="" | ||
| 168 | + > | ||
| 169 | + <el-option | ||
| 170 | + v-for="(item, index) in $store.getters.dict | ||
| 171 | + .DECLARE_STATISTICS_FLAG" | ||
| 172 | + :key="index" | ||
| 173 | + :label="item.itemChineseName" | ||
| 174 | + :value="item.itemValue" | ||
| 175 | + ></el-option> | ||
| 176 | + </el-select> | ||
| 177 | + </Formitem> | ||
| 178 | + </el-col> | ||
| 179 | + <!-- new end --> | ||
| 100 | <!-- 电商企业 --> | 180 | <!-- 电商企业 --> |
| 101 | <el-col :span="3"> | 181 | <el-col :span="3"> |
| 102 | <Formitem label="出口日期" prop="exportDate"> | 182 | <Formitem label="出口日期" prop="exportDate"> |
| ... | @@ -127,8 +207,6 @@ | ... | @@ -127,8 +207,6 @@ |
| 127 | ></el-input> | 207 | ></el-input> |
| 128 | </Formitem> | 208 | </Formitem> |
| 129 | </el-col> | 209 | </el-col> |
| 130 | - </el-row> | ||
| 131 | - <el-row :gutter="5"> | ||
| 132 | <!-- 运杂费 --> | 210 | <!-- 运杂费 --> |
| 133 | <el-col :span="3"> | 211 | <el-col :span="3"> |
| 134 | <Formitem label="运杂费" prop="miscellaneousFreight"> | 212 | <Formitem label="运杂费" prop="miscellaneousFreight"> |
| ... | @@ -163,6 +241,8 @@ | ... | @@ -163,6 +241,8 @@ |
| 163 | </el-select> | 241 | </el-select> |
| 164 | </Formitem> | 242 | </Formitem> |
| 165 | </el-col> | 243 | </el-col> |
| 244 | + </el-row> | ||
| 245 | + <el-row :gutter="5"> | ||
| 166 | <!-- 申报状态 --> | 246 | <!-- 申报状态 --> |
| 167 | <el-col :span="6"> | 247 | <el-col :span="6"> |
| 168 | <Formitem label="主要货物信息" prop="mainGoodsInfo"> | 248 | <Formitem label="主要货物信息" prop="mainGoodsInfo"> |
| ... | @@ -587,8 +667,6 @@ import { | ... | @@ -587,8 +667,6 @@ import { |
| 587 | getDeclareData, | 667 | getDeclareData, |
| 588 | updateDeclareData, | 668 | updateDeclareData, |
| 589 | } from "@/api/declareData-api.js"; | 669 | } from "@/api/declareData-api.js"; |
| 590 | -import { getDictData } from "@/api/system/dict-api.js"; | ||
| 591 | -import item from "@/layout/components/Sidebar/Item.vue"; | ||
| 592 | export default { | 670 | export default { |
| 593 | name: "", | 671 | name: "", |
| 594 | components: { RowDataEditForm }, | 672 | components: { RowDataEditForm }, | ... | ... |
-
Please register or login to post a comment