mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 14:17:54 +08:00
专区商品、服务
This commit is contained in:
parent
f13d232ef3
commit
ce3fb44cc0
@ -19,7 +19,8 @@
|
||||
<div class="col-sm-10">
|
||||
<select class="custom-select" v-model="addMainCategoryInfo.categoryType">
|
||||
<option selected disabled value="">必填,请选择目录类别</option>
|
||||
<option value="120406">首页目录</option>
|
||||
<option value="1">家政</option>
|
||||
<option value="2">商圈</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -19,9 +19,9 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-2 col-form-label">商品编号</label>
|
||||
<label class="col-sm-2 col-form-label">商品(服务)编号</label>
|
||||
<div class="col-sm-10">
|
||||
<input v-model="addMainCategoryProductInfo.productId" type="text" placeholder="必填,请填写商品编号"
|
||||
<input v-model="addMainCategoryProductInfo.productId" type="text" placeholder="必填,请填写商品(服务)编号"
|
||||
class="form-control">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -56,7 +56,7 @@
|
||||
},
|
||||
{
|
||||
limit: "maxLength",
|
||||
param: "200",
|
||||
param: "30",
|
||||
errInfo: "商品编号太长"
|
||||
},
|
||||
],
|
||||
@ -144,6 +144,7 @@
|
||||
vc.component.addMainCategoryProductInfo = {
|
||||
mainCategoryId: '',
|
||||
productId: '',
|
||||
productName: '',
|
||||
startTime: '',
|
||||
endTime: '',
|
||||
seq: '',
|
||||
|
||||
@ -19,7 +19,8 @@
|
||||
<div class="col-sm-10">
|
||||
<select class="custom-select" v-model="editMainCategoryInfo.categoryType">
|
||||
<option selected disabled value="">必填,请选择目录类别</option>
|
||||
<option value="120406">首页目录</option>
|
||||
<option value="1">家政</option>
|
||||
<option value="2">商圈</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -13,7 +13,8 @@
|
||||
<div class="col-sm-4">
|
||||
<select class="custom-select" v-model="mainCategoryManageInfo.conditions.categoryType">
|
||||
<option selected value="">请选择目录类别</option>
|
||||
<option value="120406">首页目录</option>
|
||||
<option value="1">家政</option>
|
||||
<option value="2">商圈</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
@ -74,7 +75,7 @@
|
||||
<tr v-for="mainCategory in mainCategoryManageInfo.mainCategorys">
|
||||
<td class="text-center">{{mainCategory.mainCategoryId}}</td>
|
||||
<td class="text-center">{{mainCategory.categoryName}}</td>
|
||||
<td class="text-center">{{mainCategory.categoryType}}</td>
|
||||
<td class="text-center">{{mainCategory.categoryType == '1'?'家政':'商圈'}}</td>
|
||||
<td class="text-center">{{mainCategory.startTime}}</td>
|
||||
<td class="text-center">{{mainCategory.endTime}}</td>
|
||||
<td class="text-center">{{mainCategory.seq}}</td>
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="col-sm-3">
|
||||
<select class="custom-select"
|
||||
v-model="mainCategoryProductManageInfo.conditions.mainCategoryId">
|
||||
<option selected value="">请选择目录</option>
|
||||
@ -20,13 +20,19 @@
|
||||
</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入商品编号"
|
||||
<input type="text" placeholder="请输入编号"
|
||||
v-model="mainCategoryProductManageInfo.conditions.productId" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入名称"
|
||||
v-model="mainCategoryProductManageInfo.conditions.productName" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<select class="custom-select" v-model="mainCategoryProductManageInfo.conditions.state">
|
||||
<option selected value="">请选择状态</option>
|
||||
<option value="10021">待审核</option>
|
||||
@ -67,7 +73,8 @@
|
||||
<tr>
|
||||
|
||||
<th class="text-center">目录</th>
|
||||
<th class="text-center">商品编号</th>
|
||||
<th class="text-center">编号</th>
|
||||
<th class="text-center">名称</th>
|
||||
<th class="text-center">开始时间</th>
|
||||
<th class="text-center">结束时间</th>
|
||||
<th class="text-center">排序</th>
|
||||
@ -80,6 +87,7 @@
|
||||
|
||||
<td class="text-center">{{mainCategoryProduct.categoryName}}</td>
|
||||
<td class="text-center">{{mainCategoryProduct.productId}}</td>
|
||||
<td class="text-center">{{mainCategoryProduct.productName}}</td>
|
||||
<td class="text-center">{{mainCategoryProduct.startTime}}</td>
|
||||
<td class="text-center">{{mainCategoryProduct.endTime}}</td>
|
||||
<td class="text-center">{{mainCategoryProduct.seq}}</td>
|
||||
|
||||
@ -16,6 +16,7 @@
|
||||
conditions: {
|
||||
mainCategoryId: '',
|
||||
productId: '',
|
||||
productName: '',
|
||||
state: '',
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user