diff --git a/src/components/page/Hoster/Listing.vue b/src/components/page/Hoster/Listing.vue
index 9f581d8..546ffa5 100644
--- a/src/components/page/Hoster/Listing.vue
+++ b/src/components/page/Hoster/Listing.vue
@@ -26,7 +26,7 @@
请确认或修改资产类型
-
+
@@ -86,10 +86,10 @@
+ :label="item.name"
+ :value="item.id">
交易信息
@@ -98,26 +98,26 @@
拍卖
-
+
-
+
-
+
-
+
-
+
-
+
网银支付
@@ -160,15 +160,15 @@ export default {
},
options:[],
props: {
- multiple: true,
value:'id',
label:'name',
leaf:'is_son',
+ emitPath:false
},
province:[],
city:[],
area:[],
- xuanzeguojia:[],
+ price:[],
ruleForm:{
serial_name:'',
serial_img:[],
@@ -268,6 +268,7 @@ export default {
getPrice().then(res => {
console.info(res)
if(res.code==100){
+ this.price=res.data
}
})
},
@@ -318,10 +319,16 @@ export default {
})
},
submit(){
+ console.info(this.ruleForm)
this.$refs["ruleForm1"].validate((valid) => {
if(valid){
cartellino(this.ruleForm).then(res=>{
-
+ console.info(res)
+ if(res.code==100){
+ this.$message.success('上传成功!请等待审核~');
+ }else{
+ this.$message.error(res.msg);
+ }
})
}
})