Commit 1d383bca authored by 黄奎's avatar 黄奎
parents 1bddf68a fd8fc745
...@@ -100,6 +100,7 @@ ...@@ -100,6 +100,7 @@
<span class="_r_name _r_IsPublic" v-if="GetDetail.IsPublic==4">{{$t('fnc.zjinchi')}}</span> <span class="_r_name _r_IsPublic" v-if="GetDetail.IsPublic==4">{{$t('fnc.zjinchi')}}</span>
<span class="_r_name _r_IsPublic" v-if="GetDetail.IsPublic==5">{{$t('fnc.ptxnzhanghu')}}</span> <span class="_r_name _r_IsPublic" v-if="GetDetail.IsPublic==5">{{$t('fnc.ptxnzhanghu')}}</span>
<span class="_r_name _r_IsPublic" v-if="GetDetail.IsPublic==6">{{$t('fnc.djxnzhanghu')}}</span> <span class="_r_name _r_IsPublic" v-if="GetDetail.IsPublic==6">{{$t('fnc.djxnzhanghu')}}</span>
<span class="_r_name _r_IsPublic" v-if="GetDetail.IsPublic==7">收支相抵</span>
</p> </p>
<p style="font-weight: bold"><span class="">{{$t('hotel.hotel_SerialNumber')}}</span>{{GetDetail.FrID}}</p> <p style="font-weight: bold"><span class="">{{$t('hotel.hotel_SerialNumber')}}</span>{{GetDetail.FrID}}</p>
</div> </div>
......
...@@ -302,7 +302,7 @@ ...@@ -302,7 +302,7 @@
<el-option v-for="item in roomlist" :key="item.ID" :label="item.HouseInfo" :value="item.ID"> <el-option v-for="item in roomlist" :key="item.ID" :label="item.HouseInfo" :value="item.ID">
</el-option> </el-option>
</el-select> </el-select>
<input type="button" value="新增" class="normalBtn" @click="addhouse()" /> <input type="button" value="新增房间" class="normalBtn" @click="addhouse()" title="需要拼房,但没有双人间(半间)的点击新增房间"/>
</el-form-item> </el-form-item>
</li> </li>
<li> <li>
......
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
</tbody> </tbody>
<tbody v-show="tableList.length===0" class="passengerSaleList_table_noInfo"> <tbody v-show="tableList.length===0" class="passengerSaleList_table_noInfo">
<tr> <tr>
<td colspan="17" class="">暂无数据</td> <td colspan="18" class="">暂无数据</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
......
...@@ -194,6 +194,9 @@ ...@@ -194,6 +194,9 @@
.addIntegralMall .bottom_sub { .addIntegralMall .bottom_sub {
padding-top: 25px; padding-top: 25px;
} }
.addIntegralMall .ql-editor{
min-height: 200px;
}
</style> </style>
<template> <template>
<el-row class="addIntegralMall"> <el-row class="addIntegralMall">
...@@ -240,6 +243,9 @@ ...@@ -240,6 +243,9 @@
></el-option> ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="商品数量" prop="storeNum">
<el-input v-model="addMsg.storeNum" class="w217"/>
</el-form-item>
<el-form-item label="商品状态"> <el-form-item label="商品状态">
<el-select filterable v-model="addMsg.state"> <el-select filterable v-model="addMsg.state">
<el-option label="上架" :value="1" :key="1"></el-option> <el-option label="上架" :value="1" :key="1"></el-option>
...@@ -313,7 +319,10 @@ ...@@ -313,7 +319,10 @@
</div> </div>
<p class="tips tips2">最多上传5张图片</p> <p class="tips tips2">最多上传5张图片</p>
<span class="resource-lititle resource-lititle2">商品描述</span> <span class="resource-lititle resource-lititle2">商品描述</span>
<quill-editor :options="editorOption" v-model="addMsg.description"></quill-editor>
<my-edit v-on:edit-value="addMsg.description = arguments[0]" v-bind:editValue="addMsg.description"
v-bind:toolbarShow="toolbar" v-bind:placeholder="placeholder"></my-edit>
<span class="resource-lititle resource-lititle2">图片介绍</span> <span class="resource-lititle resource-lititle2">图片介绍</span>
<div class="resource-imglist clearfix"> <div class="resource-imglist clearfix">
<div class="re-img re-img2" v-for="(item,index) in DiningImageArray2" :key="index"> <div class="re-img re-img2" v-for="(item,index) in DiningImageArray2" :key="index">
...@@ -378,9 +387,23 @@ ...@@ -378,9 +387,23 @@
</template> </template>
<script> <script>
import { setInterval, setTimeout } from "timers"; import { setInterval, setTimeout } from "timers";
import MyEdit from "../EditTemplate.vue";
export default { export default {
data() { data() {
return { return {
toolbar: {
clean: true, //加粗
font: true, //字体
narrative: false, //叙述,
image:true,
// bold: true, //加粗
// underline: true, //下划线
// header1: true, //H1
// header2: true, //H2
//fontColor: true, //字体颜色
// fontBackgroundColor: true, //背景颜色
},
placeholder: "请输入内容",
editorOption: { editorOption: {
modules: { modules: {
toolbar: [ toolbar: [
...@@ -410,6 +433,7 @@ export default { ...@@ -410,6 +433,7 @@ export default {
quota: 0, quota: 0,
ishot: 0, ishot: 0,
descripImg: '', descripImg: '',
storeNum:''
}, },
MenberList: [], MenberList: [],
GoodsTypeList: [], GoodsTypeList: [],
...@@ -431,7 +455,8 @@ export default { ...@@ -431,7 +455,8 @@ export default {
tradePeopleReq: [ tradePeopleReq: [
{ required: true, message: "交易人头数要求", trigger: "blur" } { required: true, message: "交易人头数要求", trigger: "blur" }
], ],
remark: [{ required: true, message: "请输入备注", trigger: "blur" }] remark: [{ required: true, message: "请输入备注", trigger: "blur" }],
storeNum:[{ required: true, message: "请输入商品数量", trigger: "blur" }]
}, },
//上传的文件数组 //上传的文件数组
DiningImageArray: [], DiningImageArray: [],
...@@ -446,6 +471,9 @@ export default { ...@@ -446,6 +471,9 @@ export default {
GoodsSeriesList: [], GoodsSeriesList: [],
}; };
}, },
components: {
"my-edit": MyEdit
},
methods: { methods: {
getGoodsSeries() { getGoodsSeries() {
this.loading = true; this.loading = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment