|
@@ -217,6 +217,21 @@
|
|
<el-input v-model="step3Form.pubAppSecret" autocomplete="off" placeholder="请输入公众号密钥"></el-input>
|
|
<el-input v-model="step3Form.pubAppSecret" autocomplete="off" placeholder="请输入公众号密钥"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
+ <el-form-item label="改派通知" prop="pubTemplateId1">
|
|
|
|
+ <el-input v-model="step3Form.pubTemplateId1" autocomplete="off" placeholder="请输入工单派工,改派通知"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="发货通知" prop="pubTemplateId2">
|
|
|
|
+ <el-input v-model="step3Form.pubTemplateId2" autocomplete="off" placeholder="请输入商城订单支付成功提醒发货通知"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="维权订单提醒" prop="pubTemplateId3">
|
|
|
|
+ <el-input v-model="step3Form.pubTemplateId3" autocomplete="off" placeholder="请输入商城维权订单提醒"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="支付成功通知" prop="pubTemplateId4">
|
|
|
|
+ <el-input v-model="step3Form.pubTemplateId4" autocomplete="off" placeholder="请输入订单支付成功(含全部销售订单和延保)"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="维保费用申请" prop="pubTemplateId5">
|
|
|
|
+ <el-input v-model="step3Form.pubTemplateId5" autocomplete="off" placeholder="请输入维保的费用申请"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
</el-card>
|
|
@@ -429,6 +444,12 @@ export default {
|
|
templateId: '',
|
|
templateId: '',
|
|
pubAppId: '',
|
|
pubAppId: '',
|
|
pubAppSecret: '',
|
|
pubAppSecret: '',
|
|
|
|
+
|
|
|
|
+ pubTemplateId1:'',
|
|
|
|
+ pubTemplateId2:'',
|
|
|
|
+ pubTemplateId3:'',
|
|
|
|
+ pubTemplateId4:'',
|
|
|
|
+ pubTemplateId5:'',
|
|
},
|
|
},
|
|
step3FormRules: {
|
|
step3FormRules: {
|
|
enterpriseId: [
|
|
enterpriseId: [
|
|
@@ -528,6 +549,13 @@ export default {
|
|
this.step3Form.templateId = res.data.template;
|
|
this.step3Form.templateId = res.data.template;
|
|
this.step3Form.pubAppId = res.data.pubAppId;
|
|
this.step3Form.pubAppId = res.data.pubAppId;
|
|
this.step3Form.pubAppSecret = res.data.pubAppSecret;
|
|
this.step3Form.pubAppSecret = res.data.pubAppSecret;
|
|
|
|
+
|
|
|
|
+ this.step3Form.pubTemplateId1 = res.data.pubTemplateId1;
|
|
|
|
+ this.step3Form.pubTemplateId2 = res.data.pubTemplateId2;
|
|
|
|
+ this.step3Form.pubTemplateId3 = res.data.pubTemplateId3;
|
|
|
|
+ this.step3Form.pubTemplateId4 = res.data.pubTemplateId4;
|
|
|
|
+ this.step3Form.pubTemplateId5 = res.data.pubTemplateId5;
|
|
|
|
+
|
|
this.companyWechatId = res.data.companyWechatId;
|
|
this.companyWechatId = res.data.companyWechatId;
|
|
|
|
|
|
this.step4Form.dayNum = res.data.dayNum
|
|
this.step4Form.dayNum = res.data.dayNum
|
|
@@ -698,6 +726,13 @@ export default {
|
|
template: this.step3Form.templateId,
|
|
template: this.step3Form.templateId,
|
|
pubAppId: this.step3Form.pubAppId,
|
|
pubAppId: this.step3Form.pubAppId,
|
|
pubAppSecret: this.step3Form.pubAppSecret,
|
|
pubAppSecret: this.step3Form.pubAppSecret,
|
|
|
|
+
|
|
|
|
+ pubTemplateId1: this.step3Form.pubTemplateId1,
|
|
|
|
+ pubTemplateId2: this.step3Form.pubTemplateId2,
|
|
|
|
+ pubTemplateId3: this.step3Form.pubTemplateId3,
|
|
|
|
+ pubTemplateId4: this.step3Form.pubTemplateId4,
|
|
|
|
+ pubTemplateId5: this.step3Form.pubTemplateId5,
|
|
|
|
+
|
|
companyWechatId: this.companyWechatId
|
|
companyWechatId: this.companyWechatId
|
|
}
|
|
}
|
|
editAccount(params).then(res => {
|
|
editAccount(params).then(res => {
|