Commit 497f95ec authored by 黄奎's avatar 黄奎

111

parent 4d2d05a5
...@@ -2,10 +2,11 @@ ...@@ -2,10 +2,11 @@
<div> <div>
<div class="searchInput" style="margin-bottom:20px;"> <div class="searchInput" style="margin-bottom:20px;">
<el-input style="display:inline-block;width:225px;height:30px" placeholder="请输入模板名称" v-model="qMsg.TemplateName" <el-input style="display:inline-block;width:225px;height:30px" placeholder="请输入模板名称" v-model="qMsg.TemplateName"
size="small" clearable @keyup.enter.native="qMsg.pageIndex=1,getList()" @clear="qMsg.pageIndex=1,getList()"> size="small" clearable @keyup.enter.native="qMsg.pageIndex = 1, getList()"
@clear="qMsg.pageIndex = 1, getList()">
</el-input> </el-input>
<span class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px" <span class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px"
@click="qMsg.pageIndex=1,getList()"> </span> @click="qMsg.pageIndex = 1, getList()"> </span>
</div> </div>
<br> <br>
<el-table :data="dataList" style="width: 100%"> <el-table :data="dataList" style="width: 100%">
...@@ -25,46 +26,46 @@ ...@@ -25,46 +26,46 @@
</div> </div>
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
dataList: [], dataList: [],
total: 0, total: 0,
qMsg: { qMsg: {
pageIndex: 1, pageIndex: 1,
pageSize: 20, pageSize: 20,
TemplateName: "" TemplateName: ""
}
} }
}
},
methods: {
handleCurrentChange(val) {
this.qMsg.pageIndex = val;
this.getList();
}, },
methods: { //获取数据
handleCurrentChange(val) { getList() {
this.qMsg.pageIndex = val; this.apipost("/api/Template/GetMiniTemplatePageList", this.qMsg, res => {
this.getList(); if (res.data.resultCode == 1) {
}, this.dataList = res.data.data.pageData;
//获取数据 this.total = res.data.data.count;
getList() { } else {
this.apipost("/api/Template/GetMiniTemplatePageList", this.qMsg, res => { this.Info(res.data.message);
if (res.data.resultCode == 1) {
this.dataList = res.data.data.pageData;
this.total = res.data.data.count;
} else {
this.Info(res.data.message);
}
})
},
//选择
getModel(item) {
var obj = {
Id: item.Id,
TemplateName: item.TemplateName
} }
this.$emit('getCustom', obj) })
},
}, },
mounted() { //选择
this.getList(); getModel(item) {
} var obj = {
Id: item.Id,
TemplateName: item.TemplateName
}
this.$emit('getCustom', obj)
},
},
mounted() {
this.getList();
} }
}
</script> </script>
...@@ -51,8 +51,8 @@ ...@@ -51,8 +51,8 @@
</div> </div>
<el-tooltip v-for="(item, index) in PageList" :key="index" class="item" effect="dark" <el-tooltip v-for="(item, index) in PageList" :key="index" class="item" effect="dark"
:content="'双击选中【' + item.Name + '】'" placement="top-start"> :content="'双击选中【' + item.Name + '】'" placement="top-start">
<div @click="PageSelect(item, 1)" @dblclick="PageSelect(item, 2)" :class="getChecked(item) ? 'selected' : ''" <div @click="PageSelect(item, 1)" @dblclick="PageSelect(item, 2)"
class="el-tooltip item app-attachment-item"> :class="getChecked(item) ? 'selected' : ''" class="el-tooltip item app-attachment-item">
<img :src="getIconLink(item.Path)" class="app-attachment-img" style="width: 100px; height: 100px;"> <img :src="getIconLink(item.Path)" class="app-attachment-img" style="width: 100px; height: 100px;">
<div class="app-attachment-name">{{ item.Name }}</div> <div class="app-attachment-name">{{ item.Name }}</div>
</div> </div>
...@@ -78,7 +78,8 @@ ...@@ -78,7 +78,8 @@
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item label="排序" prop="Sort"> <el-form-item label="排序" prop="Sort">
<el-input @keyup.native="checkInteger(addGroupMsg, 'Sort')" size="small" v-model="addGroupMsg.Sort"></el-input> <el-input @keyup.native="checkInteger(addGroupMsg, 'Sort')" size="small" v-model="addGroupMsg.Sort">
</el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
<div> <div>
<el-button @click="openChangeDig()" size="small">选择文件</el-button> <el-button @click="openChangeDig()" size="small">选择文件</el-button>
</div> </div>
<div > <div>
<img v-if="postMsg.Image" :src="postMsg.Image" alt="" style="width:100px;height:100px;" /> <img v-if="postMsg.Image" :src="postMsg.Image" alt="" style="width:100px;height:100px;" />
</div> </div>
</el-form-item> </el-form-item>
......
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