Files
temu-plugin/src/view/lables/AddTemplate.vue

132 lines
3.1 KiB
Vue
Raw Normal View History

<template>
<AiDetail class="add-label">
<template #title>
2024-10-25 15:31:01 +08:00
<ai-title title="添加模板" isShowBack :isShowBottomBorder="true" @onBackClick="cancel">
<template #center>
2024-10-25 15:31:01 +08:00
<label>模板名称</label>
<el-input placeholder="请输入模板名称" size="small" v-model="name" style="width: 200px;"></el-input>
</template>
<template #rightBtn>
<el-button @click="preview" size="small" type="danger">预览</el-button>
<el-button @click="savePdf" size="small" type="primary">下载pdf</el-button>
<el-button @click="print" size="small">打印</el-button>
<el-button @click="clearPaper" size="small" type="danger">清空纸张</el-button>
2024-10-26 22:49:11 +08:00
<el-button @click="saveTemplate" size="small" type="primary" :loading="isLoading">保存</el-button>
</template>
</ai-title>
</template>
<template #content>
<ai-card title="标签模板" class="card" :hideTitle="true">
<template #content>
<div class="add-label__wrapper">
<Print ref="printRef" :template="template" :printData="printData" :isPrint="false"></Print>
</div>
</template>
</ai-card>
</template>
</AiDetail>
</template>
<script>
import Print from '@/components/print/Print'
2024-10-25 15:31:01 +08:00
import template from '@/components/print/template'
export default {
components: {
Print
},
data () {
return {
2024-10-25 15:31:01 +08:00
name: '',
template: template,
2024-10-26 22:49:11 +08:00
printData: {},
id: '',
isLoading: false
}
},
mounted() {
this.printData = {
labelCode: 96778555251,
productSkuId: 6606980005,
skuExtCode: 'AAA1100mWh-orange',
skuSpecName: '8pcs'
}
},
methods: {
cancel() {
this.$router.go(-1)
},
preview () {
2024-10-26 22:49:11 +08:00
this.$refs.printRef.preview()
},
savePdf () {
this.$refs.printRef.savePdf()
},
rotatePaper () {
this.$refs.printRef.rotatePaper()
},
saveTemplate () {
2024-10-25 15:31:01 +08:00
if (!this.name) {
return this.$message.error('模板名称不能为空')
}
2024-10-26 22:49:11 +08:00
const data = this.$refs.printRef.save()
console.log(data)
this.isLoading = true
this.$http.post('/api/template/addTemplate', {
name: this.name,
codes: data.html,
content: JSON.stringify(data.json),
params: data.params
}).then(res => {
if (res.code === 0) {
this.isLoading = false
}
}).catch(() => {
this.isLoading = false
})
},
print() {
this.$refs.printRef.print()
},
clearPaper () {
this.$refs.printRef.clearPaper()
}
}
}
</script>
<style lang="scss" scoped>
.add-label {
::v-deep(.ai-detail__content--wrapper) {
max-width: 100%;
height: 100%;
margin: 0 20px;
}
.card {
height: 100%;
overflow: hidden;
::v-deep(.ai-card__body) {
flex: 1;
height: 100%;
}
.add-label__wrapper {
padding-bottom: 20px;
}
}
}
</style>