Commit b5380156 authored by 罗超's avatar 罗超

1

parent f2de6bc5
...@@ -535,6 +535,9 @@ input:-webkit-autofill { ...@@ -535,6 +535,9 @@ input:-webkit-autofill {
.w780 { .w780 {
width: 780px!important; width: 780px!important;
} }
.w1000 {
width: 1000px!important;
}
.w50 { .w50 {
width: 50px !important; width: 50px !important;
......
<style> <style>
@import "../../assets/css/advert/advmanager"; @import "../../assets/css/advert/advmanager";
</style> </style>
<template> <template>
<div class="advmanager-box"> <div class="advmanager-box">
<div class="content" style="top: 50px">
<div class="content" style="top:50px;"> <!-- <ul>
<!-- <ul>
<li v-for='item in addatas' :key="item.id"> <li v-for='item in addatas' :key="item.id">
<div class="img-box"> <div class="img-box">
<img :src="item.advertisingPicUrlStr" /> <img :src="item.advertisingPicUrlStr" />
...@@ -18,139 +17,189 @@ ...@@ -18,139 +17,189 @@
</div> </div>
</li> </li>
</ul> --> </ul> -->
<vueWaterfallEasy v-if='addatas.length!=0' ref="waterfall" :imgsArr="addatas" @scrollReachBottom="handleCurrentChange" :maxCols='7' :imgWidth='208' :enablePullDownEvent='true'> <vueWaterfallEasy
<template slot-scope="props"> v-if="addatas.length != 0"
<span class="free"><i class="el-icon-share"></i> 0</span> ref="waterfall"
<div class="zezhao"> :imgsArr="addatas"
<a :href='`/#/advert?id=${props.value.id}`'><i class="el-icon-edit" title="修改"></i></a> @scrollReachBottom="handleCurrentChange"
<a :href='props.value.advertisingPicUrlStr' download="广告图.png"><i class="el-icon-download" title="下载"></i></a> :maxCols="7"
<i class="el-icon-delete" title="删除" @click="deleteItem(props.value)"></i> :imgWidth="208"
</div> :enablePullDownEvent="true"
</template> >
</vueWaterfallEasy> <template slot-scope="props">
<span class="free"><i class="el-icon-share"></i> 0</span>
<div class="zezhao">
<a :href="`/#/advert?id=${props.value.id}`"
><i class="el-icon-edit" title="修改"></i
></a>
<a :href="props.value.advertisingPicUrlStr" download="广告图.png"
><i class="el-icon-download" title="下载"></i
></a>
<i
class="el-icon-delete"
title="删除"
@click="deleteItem(props.value)"
></i>
</div>
</template>
</vueWaterfallEasy>
<div v-if='addatas.length==0' style='width:100%;margin-top:50px;text-align:center;color: #ccc;'> <div
<i class="iconfont icon-kong" style="font-size: 120px;"></i><br/> v-if="addatas.length == 0"
还没有广告哦,<a href='/#/advert' style="color:rgb(0, 129, 255)">立即制作</a> style="width: 100%; margin-top: 50px; text-align: center; color: #ccc"
</div> >
</div> <i class="iconfont icon-kong" style="font-size: 120px"></i><br />
还没有广告哦,<a href="/#/advert" style="color: rgb(0, 129, 255)"
>立即制作</a
>
</div>
</div> </div>
</div>
</template> </template>
<script> <script>
import vueWaterfallEasy from 'vue-waterfall-easy' import vueWaterfallEasy from "vue-waterfall-easy";
export default { export default {
data(){ data() {
return{ return {
lines:[], lines: [],
teams:[], teams: [],
modelTeams:[], modelTeams: [],
countrys:[], countrys: [],
addatas:[], addatas: [],
pageIndex:0, pageIndex: 0,
pageSize:15, pageSize: 15,
total:0, total: 0,
msg:{ msg: {
lineId:'0', lineId: "0",
teamId:'0', teamId: "0",
countryId:'0', countryId: "0",
type:'0' type: "0",
}, },
user:{}, user: {},
model:{}, model: {},
isAdd:false, isAdd: false,
uploadType:0, uploadType: 0,
} };
}, },
components: { components: {
vueWaterfallEasy vueWaterfallEasy,
},
mounted() {
this.user = JSON.parse(window.localStorage.userInfo);
this.getline();
this.getcountry();
this.getaddatas(0);
},
methods: {
deleteItem(x) {
this.apipost(
"Advertising_post_Remove",
{ ID: x.id },
(x) => {
if (x.data.resultCode == 1) {
this.$message.success("删除成功");
this.getaddatas(0);
} else {
this.$message.error(x.data.message);
}
},
(err) => {}
);
}, },
mounted(){
this.user=JSON.parse(window.localStorage.userInfo) handleCurrentChange(val) {
this.getline() this.pageIndex++;
this.getcountry() this.getaddatas(1);
this.getaddatas(0)
}, },
methods:{ getaddatas(type) {
deleteItem(x){ if (type == 0) {
this.apipost("Advertising_post_Remove", {'ID':x.id}, x => { this.pageIndex = 0;
if(x.data.resultCode==1){ }
this.$message.success('删除成功') let msg = {
this.getaddatas(0) pageIndex: this.pageIndex,
}else{ pageSize: this.pageSize,
this.$message.error(x.data.message) };
} this.apipost(
},err => {}) "Advertising_post_GetPageList",
}, msg,
(x) => {
handleCurrentChange(val) { x.data.data.pageData.forEach((x) => {
this.pageIndex++ x.src = `${x.advertisingPicUrlStr}?x-oss-process=image/resize,w_200`;
this.getaddatas(1) });
}, if (x.data.data.pageData.length == 0) {
getaddatas(type){ this.$refs.waterfall.waterfallOver();
if(type==0){ }
this.pageIndex=0 this.addatas = [];
} this.addatas = this.addatas.concat(x.data.data.pageData);
let msg={ this.total = x.data.data.pageCount;
pageIndex:this.pageIndex,
pageSize:this.pageSize
}
this.apipost("Advertising_post_GetPageList", msg, x => {
x.data.data.pageData.forEach(x=>{
x.src=`${x.advertisingPicUrlStr}?x-oss-process=image/resize,w_200`
})
if(x.data.data.pageData.length==0){
this.$refs.waterfall.waterfallOver()
}
this.addatas=[];
this.addatas=this.addatas.concat(x.data.data.pageData)
this.total=x.data.data.pageCount
},err => {})
},
getcountry(){
this.apipost("dict_post_Destination_GetCountry", {}, x => {
this.countrys=x.data.data
},err => {})
}, },
getteam(){ (err) => {}
let msg={ );
'RB_Branch_id':this.user.RB_Branch_id, },
'isTOOP':1, getcountry() {
'lineID':this.msg.lineId this.apipost(
} "dict_post_Destination_GetCountry",
this.apipost("team_post_GetList", msg, x => { {},
this.teams=x.data.data (x) => {
if(x.data.data.length>0) this.countrys = x.data.data;
this.msg.teamId=x.data.data[0].LtID
},err => {})
}, },
changeLine(){ (err) => {}
this.teams.splice(0,this.teams.length-1) );
if(this.msg.lineId!==0){ },
this.getteam() getteam() {
} let msg = {
RB_Branch_id: this.user.RB_Branch_id,
isTOOP: 1,
lineID: this.msg.lineId,
};
this.apipost(
"team_post_GetList",
msg,
(x) => {
this.teams = x.data.data;
if (x.data.data.length > 0) this.msg.teamId = x.data.data[0].LtID;
}, },
changeLineForm(){ (err) => {}
this.modelTeams.splice(0,this.modelTeams.length-1) );
if(this.model.LineID!==0&&this.model.LineID!=''){ },
let msg={ changeLine() {
'RB_Branch_id':this.user.RB_Branch_id, this.teams.splice(0, this.teams.length - 1);
'isTOOP':1, if (this.msg.lineId !== 0) {
'lineID':this.model.LineID this.getteam();
} }
this.apipost("team_post_GetList", msg, x => { },
this.modelTeams=x.data.data changeLineForm() {
if(x.data.data.length>0) this.modelTeams.splice(0, this.modelTeams.length - 1);
this.model.SeriesID=x.data.data[0].LtID if (this.model.LineID !== 0 && this.model.LineID != "") {
},err => {}) let msg = {
} RB_Branch_id: this.user.RB_Branch_id,
isTOOP: 1,
lineID: this.model.LineID,
};
this.apipost(
"team_post_GetList",
msg,
(x) => {
this.modelTeams = x.data.data;
if (x.data.data.length > 0)
this.model.SeriesID = x.data.data[0].LtID;
},
(err) => {}
);
}
},
getline() {
let msg = { pageIndex: 0, pageSize: 100 };
this.apipost(
"line_post_GetPageList",
msg,
(x) => {
this.lines = x.data.data.pageData;
}, },
getline(){ (err) => {}
let msg={'pageIndex':0,'pageSize':100} );
this.apipost("line_post_GetPageList", msg, x => { },
this.lines=x.data.data.pageData },
},err => {}) };
}
}
}
</script> </script>
\ No newline at end of file
...@@ -37,33 +37,35 @@ import pinyin from 'pinyin' ...@@ -37,33 +37,35 @@ import pinyin from 'pinyin'
// import JsPDF from 'jspdf' // import JsPDF from 'jspdf'
import lrz from 'lrz' import lrz from 'lrz'
import 'vue-easytable/libs/themes-base/index.css' import 'vue-easytable/libs/themes-base/index.css'
import {VTable,VPagination} from 'vue-easytable' import { VTable, VPagination } from 'vue-easytable'
import 'viewerjs/dist/viewer.css' import 'viewerjs/dist/viewer.css'
import Viewer from 'v-viewer' import Viewer from 'v-viewer'
Vue.component(VTable.name, VTable) Vue.component(VTable.name, VTable)
Vue.component(VPagination.name, VPagination) Vue.component(VPagination.name, VPagination)
Vue.config.productionTip = false Vue.config.productionTip = false
Vue.http = Vue.prototype.$http = axios Vue.http = Vue.prototype.$http = axios
Vue.cookie = Vue.prototype.$cookie=cookie Vue.cookie = Vue.prototype.$cookie = cookie
Vue.commonUtils = Vue.prototype.$commonUtils=commonUtils Vue.commonUtils = Vue.prototype.$commonUtils = commonUtils
Vue.tripUtils=Vue.prototype.$tripUtils=tripUtils Vue.tripUtils = Vue.prototype.$tripUtils = tripUtils
Vue.DMCUtils=Vue.prototype.$DMCUtils=DMCUtils Vue.DMCUtils = Vue.prototype.$DMCUtils = DMCUtils
Vue.languageUtils=Vue.prototype.$languageUtils=languageUtils Vue.languageUtils = Vue.prototype.$languageUtils = languageUtils
Vue.calendarUtils=Vue.prototype.$calendarUtils=calendarUtils Vue.calendarUtils = Vue.prototype.$calendarUtils = calendarUtils
Vue.lunarCalendar=Vue.prototype.$lunarCalendar=lunarCalendar Vue.lunarCalendar = Vue.prototype.$lunarCalendar = lunarCalendar
Vue.googleMap=Vue.prototype.$googleMap=googleMap Vue.googleMap = Vue.prototype.$googleMap = googleMap
Vue.AuthCode=Vue.prototype.$AuthCode=AuthCode Vue.AuthCode = Vue.prototype.$AuthCode = AuthCode
Vue.prototype.$echarts = echarts Vue.prototype.$echarts = echarts
Vue.chartsUtils=Vue.prototype.$chartsUtils=chartsUtils Vue.chartsUtils = Vue.prototype.$chartsUtils = chartsUtils
Vue.prototype.$VueBarcode = VueBarcode Vue.prototype.$VueBarcode = VueBarcode
// Vue.prototype.GLOBAL = global_ // Vue.prototype.GLOBAL = global_
// Vue.component('barcode', VueBarcode); // Vue.component('barcode', VueBarcode);
Vue.prototype.pinyin = pinyin Vue.prototype.pinyin = pinyin
// Vue.prototype.h2c=h2c // Vue.prototype.h2c=h2c
Vue.prototype.lrz=lrz Vue.prototype.lrz = lrz
/* eslint-disable no-new */ /* eslint-disable no-new */
// Vue.use(htmlToPdf) // Vue.use(htmlToPdf)
...@@ -74,7 +76,7 @@ Vue.use(vueQuillEditor) ...@@ -74,7 +76,7 @@ Vue.use(vueQuillEditor)
//Vue.use(VueAMap); //Vue.use(VueAMap);
Vue.use(VueBarcode); //声明条形码组件 Vue.use(VueBarcode); //声明条形码组件
Vue.use(store); Vue.use(store);
Vue.use(Viewer,{ Vue.use(Viewer, {
defaultOptions: { defaultOptions: {
zIndex: 9999 zIndex: 9999
} }
...@@ -87,28 +89,28 @@ Vue.use(Viewer,{ ...@@ -87,28 +89,28 @@ Vue.use(Viewer,{
// 时间扩展格式化 // 时间扩展格式化
Date.prototype.Format = function (fmt) { Date.prototype.Format = function (fmt) {
var o = { var o = {
"M+": this.getMonth() + 1, //月份 "M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日 "d+": this.getDate(), //日
"h+": this.getHours(), //小时 "h+": this.getHours(), //小时
"m+": this.getMinutes(), //分 "m+": this.getMinutes(), //分
"s+": this.getSeconds() //秒 "s+": this.getSeconds() //秒
}; };
if (/(y+)/.test(fmt)){ //根据y的长度来截取年 if (/(y+)/.test(fmt)) { //根据y的长度来截取年
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
} }
for (var k in o){ for (var k in o) {
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
} }
return fmt; return fmt;
}; };
Vue.prototype.DateDiff = function (sDate1, sDate2) { Vue.prototype.DateDiff = function (sDate1, sDate2) {
var aDate, oDate1, oDate2, iDays var aDate, oDate1, oDate2, iDays
aDate = sDate1.split("-") aDate = sDate1.split("-")
oDate1 = new Date(aDate[1] + '-' + aDate[2] + '-' + aDate[0]) oDate1 = new Date(aDate[1] + '-' + aDate[2] + '-' + aDate[0])
aDate = sDate2.split("-") aDate = sDate2.split("-")
oDate2 = new Date(aDate[1] + '-' + aDate[2] + '-' + aDate[0]) oDate2 = new Date(aDate[1] + '-' + aDate[2] + '-' + aDate[0])
iDays = parseInt(Math.abs(oDate1 - oDate2) / 1000 / 60 / 60 /24) //把相差的毫秒数转换为天数 iDays = parseInt(Math.abs(oDate1 - oDate2) / 1000 / 60 / 60 / 24) //把相差的毫秒数转换为天数
return iDays return iDays
} }
// 数组对比 // 数组对比
...@@ -155,7 +157,7 @@ const i18n = new VueI18n({ ...@@ -155,7 +157,7 @@ const i18n = new VueI18n({
'zh-CN': require('./assets/common/lang/zh'), // 中文语言包 'zh-CN': require('./assets/common/lang/zh'), // 中文语言包
'en-US': require('./assets/common/lang/en'), // 英文语言包 'en-US': require('./assets/common/lang/en'), // 英文语言包
'zh-TW': require('./assets/common/lang/zh-tw'), // 台湾语言包 'zh-TW': require('./assets/common/lang/zh-tw'), // 台湾语言包
'Japanese' : require('./assets/common/lang/jp') // 日本语言包 'Japanese': require('./assets/common/lang/jp') // 日本语言包
} }
}) })
......
This diff is collapsed.
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