This commit is contained in:
parent
749068ea41
commit
5680d23bdf
|
@ -55,7 +55,7 @@
|
||||||
<el-table-column prop="introduce" label="简介"> </el-table-column>
|
<el-table-column prop="introduce" label="简介"> </el-table-column>
|
||||||
<el-table-column prop="shopInfo.userName" label="作者">
|
<el-table-column prop="shopInfo.userName" label="作者">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="workTag" label="标签"> </el-table-column>
|
<!-- <el-table-column prop="workTag" label="标签"> </el-table-column> -->
|
||||||
<el-table-column prop="typeName" label="类型">
|
<el-table-column prop="typeName" label="类型">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<span>{{ scope.row.typeName }} - {{ scope.row.typesName }}</span>
|
<span>{{ scope.row.typeName }} - {{ scope.row.typesName }}</span>
|
||||||
|
@ -368,8 +368,8 @@ export default {
|
||||||
this.detailForm.wpPath = value.wpPath;
|
this.detailForm.wpPath = value.wpPath;
|
||||||
this.detailForm.code = value.code;
|
this.detailForm.code = value.code;
|
||||||
let img1 = null;
|
let img1 = null;
|
||||||
if (value.file) {
|
if (value.domainInfo.file) {
|
||||||
img1 = value.file.split(",");
|
img1 = value.domainInfo.file.split(",");
|
||||||
if (img1.length > 0) {
|
if (img1.length > 0) {
|
||||||
img1.forEach((ele) => {
|
img1.forEach((ele) => {
|
||||||
this.imgList.push({
|
this.imgList.push({
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div style="margin-left: 10px">
|
<div style="margin-left: 10px">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="value1"
|
v-model="value1"
|
||||||
placeholder="请输入商品名"
|
placeholder="请输入标题"
|
||||||
:input-style="inputStyle"
|
:input-style="inputStyle"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
|
@ -52,10 +52,11 @@
|
||||||
<el-table-column type="index" label="序号" width="80">
|
<el-table-column type="index" label="序号" width="80">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="goodsName" label="商品"> </el-table-column>
|
<el-table-column prop="goodsName" label="商品"> </el-table-column>
|
||||||
<el-table-column prop="introduce" label="简介"> </el-table-column>
|
<el-table-column prop="domainInfo.introduce" label="简介">
|
||||||
|
</el-table-column>
|
||||||
<el-table-column prop="shopInfo.userName" label="作者">
|
<el-table-column prop="shopInfo.userName" label="作者">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="workTag" label="标签"> </el-table-column>
|
<!-- <el-table-column prop="workTag" label="标签"> </el-table-column> -->
|
||||||
<el-table-column prop="typeName" label="类型">
|
<el-table-column prop="typeName" label="类型">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<span>{{ scope.row.typeName }} - {{ scope.row.typesName }}</span>
|
<span>{{ scope.row.typeName }} - {{ scope.row.typesName }}</span>
|
||||||
|
@ -177,7 +178,7 @@
|
||||||
>
|
>
|
||||||
<el-form :model="detailForm" label-width="100px">
|
<el-form :model="detailForm" label-width="100px">
|
||||||
<el-form-item label="商品名称">
|
<el-form-item label="商品名称">
|
||||||
<el-input v-model="detailForm.goodsName"></el-input>
|
<el-input v-model="detailForm.name"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="作者">
|
<el-form-item label="作者">
|
||||||
<el-input v-model="detailForm.userName"></el-input>
|
<el-input v-model="detailForm.userName"></el-input>
|
||||||
|
@ -360,13 +361,13 @@ export default {
|
||||||
this.imgList = [];
|
this.imgList = [];
|
||||||
this.title = title;
|
this.title = title;
|
||||||
this.opens = true;
|
this.opens = true;
|
||||||
this.detailForm.goodsName = value.goodsName;
|
this.detailForm.name = value.goodsName;
|
||||||
|
this.detailForm.wpPath = value.domainInfo.wpPath;
|
||||||
|
this.detailForm.code = value.domainInfo.code;
|
||||||
this.detailForm.userName = value.shopInfo.userName;
|
this.detailForm.userName = value.shopInfo.userName;
|
||||||
this.detailForm.wpPath = value.panUrl;
|
|
||||||
this.detailForm.code = value.panCode;
|
|
||||||
let img1 = null;
|
let img1 = null;
|
||||||
if (value.file) {
|
if (value.domainInfo.file) {
|
||||||
img1 = value.file.split(",");
|
img1 = value.domainInfo.file.split(",");
|
||||||
if (img1.length > 0) {
|
if (img1.length > 0) {
|
||||||
img1.forEach((ele) => {
|
img1.forEach((ele) => {
|
||||||
this.imgList.push({
|
this.imgList.push({
|
||||||
|
|
Loading…
Reference in New Issue