|
|
@@ -92,6 +92,18 @@ export default {
|
|
|
async submit()
|
|
|
{
|
|
|
let data=this.form;
|
|
|
+ let image_list="";
|
|
|
+ this.form.imglist.forEach(item => {
|
|
|
+ if(item.response)
|
|
|
+ {
|
|
|
+ image_list+=","+item.response.data.url;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ image_list+=","+item.url;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ data.image_list=image_list;
|
|
|
data.pro_id=this.row.id;
|
|
|
let res=await this.$axios.$post("/uapi/pub/info/user/user_experience_rz/rz",data);
|
|
|
if(res.status==1)
|