新增global,缓存职位信息
This commit is contained in:
@ -3,28 +3,51 @@
|
||||
<el-dialog :title="title" :visible.sync="open" width="550px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||
<el-form-item label="调理项目" prop="projectId">
|
||||
<el-select v-model="form.projectId" placeholder="请选择调理项目" filterable clearable size="small">
|
||||
<el-option v-for="dict in conditioningProjectIdOption"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"/>
|
||||
<el-select
|
||||
v-model="form.projectId"
|
||||
placeholder="请选择调理项目"
|
||||
filterable
|
||||
clearable
|
||||
size="small"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in conditioningProjectIdOption"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!--<el-form-item label="客户姓名" prop="name">
|
||||
<el-input v-model="form.name" placeholder="请输入客户姓名"/>
|
||||
</el-form-item>-->
|
||||
<el-form-item label="金额" prop="amount" style="width: 300px;">
|
||||
<el-input v-model="form.amount" placeholder="请输入金额"/>
|
||||
<el-form-item label="金额" prop="amount" style="width: 300px">
|
||||
<el-input v-model="form.amount" placeholder="请输入金额" />
|
||||
</el-form-item>
|
||||
<el-form-item label="服务承诺" prop="servePromise" v-show="form.projectId == 0" >
|
||||
<el-input style="width: 200px;" v-model="form.servePromise" placeholder="请输入服务承诺"/><span style="margin-left: 5px;">斤</span>
|
||||
<el-form-item
|
||||
label="服务承诺"
|
||||
prop="servePromise"
|
||||
v-show="form.projectId == 0"
|
||||
>
|
||||
<el-input
|
||||
style="width: 200px"
|
||||
v-model="form.servePromise"
|
||||
placeholder="请输入服务承诺"
|
||||
/><span style="margin-left: 5px">斤</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="营养师" prop="nutritionistId">
|
||||
<el-select v-model="form.nutritionistId" placeholder="请选择营养师" clearable size="small">
|
||||
<el-option v-for="dict in nutritionistIdOptions"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"/>
|
||||
<el-select
|
||||
v-model="form.nutritionistId"
|
||||
placeholder="请选择营养师"
|
||||
clearable
|
||||
size="small"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in nutritionistIdOptions"
|
||||
:key="dict.dictValue"
|
||||
:label="dict.dictLabel"
|
||||
:value="parseInt(dict.dictValue)"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="服务时间" prop="serveTime">
|
||||
@ -38,7 +61,11 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容"/>
|
||||
<el-input
|
||||
v-model="form.remark"
|
||||
type="textarea"
|
||||
placeholder="请输入内容"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
@ -48,20 +75,17 @@
|
||||
</el-dialog>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
import {addContract} from "@/api/custom/contract";
|
||||
import {getOptions} from "@/api/custom/order";
|
||||
import { addContract } from "@/api/custom/contract";
|
||||
import { mapState } from "vuex";
|
||||
|
||||
export default {
|
||||
name: "ContractAdd",
|
||||
components: {
|
||||
|
||||
},
|
||||
components: {},
|
||||
props: {},
|
||||
data() {
|
||||
const checkServePromise = (rule, value, callback) => {
|
||||
if (this.form.projectId == 0 && !value) {
|
||||
return callback(new Error('请输入服务承诺'))
|
||||
return callback(new Error("请输入服务承诺"));
|
||||
}
|
||||
callback();
|
||||
};
|
||||
@ -75,14 +99,14 @@ export default {
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
projectId:[
|
||||
{required: true, message: "请选择调理项目", trigger: "blur"}
|
||||
projectId: [
|
||||
{ required: true, message: "请选择调理项目", trigger: "blur" },
|
||||
],
|
||||
/*name: [
|
||||
{required: true, message: "请输入客户姓名", trigger: "blur"}
|
||||
],*/
|
||||
amount: [
|
||||
{required: true, message: "请输入签订金额", trigger: "blur"},
|
||||
{ required: true, message: "请输入签订金额", trigger: "blur" },
|
||||
{
|
||||
required: true,
|
||||
trigger: "blur",
|
||||
@ -91,35 +115,31 @@ export default {
|
||||
},
|
||||
],
|
||||
servePromise: [
|
||||
{required: true, trigger: "blur", validator: checkServePromise}
|
||||
{ required: true, trigger: "blur", validator: checkServePromise },
|
||||
],
|
||||
serveTime: [
|
||||
{required: true, message: "请选择服务时间", trigger: "blur"}
|
||||
{ required: true, message: "请选择服务时间", trigger: "blur" },
|
||||
],
|
||||
nutritionistId: [
|
||||
{required: true, message: "请选择营养师", trigger: "blur"}
|
||||
]
|
||||
{ required: true, message: "请选择营养师", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
conditioningProjectIdOption:[],
|
||||
serveTimeOptions:[],
|
||||
nutritionistIdOptions:[]
|
||||
conditioningProjectIdOption: [],
|
||||
serveTimeOptions: [],
|
||||
// nutritionistIdOptions: [],
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
...mapState({
|
||||
nutritionistIdOptions: (state) =>
|
||||
state.global.nutritionistIdOptions.slice(1),
|
||||
}),
|
||||
},
|
||||
created() {
|
||||
getOptions().then(response => {
|
||||
const options = response.data.reduce((opts, cur) => {
|
||||
if (!opts[cur.postCode]) {
|
||||
opts[cur.postCode] = [];
|
||||
}
|
||||
opts[cur.postCode].push({dictValue: cur.userId, dictLabel: cur.userName, remark: cur.remark})
|
||||
return opts;
|
||||
}, {})
|
||||
this.nutritionistIdOptions = options['nutri'] || [];
|
||||
})
|
||||
this.getDicts("cus_serve_time").then(response => {
|
||||
this.getDicts("cus_serve_time").then((response) => {
|
||||
this.serveTimeOptions = response.data;
|
||||
});
|
||||
this.getDicts("conditioning_project").then(response => {
|
||||
this.getDicts("conditioning_project").then((response) => {
|
||||
this.conditioningProjectIdOption = response.data;
|
||||
});
|
||||
},
|
||||
@ -127,29 +147,37 @@ export default {
|
||||
showDialog(data, callback) {
|
||||
this.callback = callback;
|
||||
this.reset(data);
|
||||
this.title = "新增"+`「${data.customer}」客户合同`;
|
||||
this.title = "新增" + `「${data.customer}」客户合同`;
|
||||
this.open = true;
|
||||
},
|
||||
// 表单重置
|
||||
reset(obj) {
|
||||
const defaultNutritionist = this.nutritionistIdOptions.find(opt => opt.dictValue === obj.nutritionistId);
|
||||
const defaultProjectIdOption = this.conditioningProjectIdOption.find(opt => opt.remark === 'default');
|
||||
const defaultNutritionist = this.nutritionistIdOptions.find(
|
||||
(opt) => opt.dictValue === obj.nutritionistId
|
||||
);
|
||||
const defaultProjectIdOption = this.conditioningProjectIdOption.find(
|
||||
(opt) => opt.remark === "default"
|
||||
);
|
||||
|
||||
this.form = {
|
||||
id: null,
|
||||
customerId: obj.customerId,
|
||||
projectId: defaultProjectIdOption ? parseInt(defaultProjectIdOption.dictValue) : null,
|
||||
projectId: defaultProjectIdOption
|
||||
? parseInt(defaultProjectIdOption.dictValue)
|
||||
: null,
|
||||
name: obj.customer,
|
||||
phone: null,
|
||||
serveTime: null,
|
||||
amount: null,
|
||||
path: null,
|
||||
createBy: null,
|
||||
nutritionistId: defaultNutritionist ? parseInt(defaultNutritionist.dictValue) : null,
|
||||
nutritionistId: defaultNutritionist
|
||||
? parseInt(defaultNutritionist.dictValue)
|
||||
: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
remark: null
|
||||
remark: null,
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
@ -159,13 +187,16 @@ export default {
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
this.form.tutor = this.selectDictLabel(this.nutritionistIdOptions, this.form.nutritionistId)
|
||||
if(this.form.projectId != 0){
|
||||
this.form.tutor = this.selectDictLabel(
|
||||
this.nutritionistIdOptions,
|
||||
this.form.nutritionistId
|
||||
);
|
||||
if (this.form.projectId != 0) {
|
||||
this.form.servePromise = null;
|
||||
}
|
||||
addContract(this.form).then(response => {
|
||||
addContract(this.form).then((response) => {
|
||||
if (response.code === 200) {
|
||||
this.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
@ -174,7 +205,7 @@ export default {
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
@ -14,15 +14,25 @@
|
||||
<el-cascader
|
||||
v-model="form.orderType"
|
||||
:options="orderTypeOptions"
|
||||
style="width: 100%">
|
||||
style="width: 100%"
|
||||
>
|
||||
</el-cascader>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="自动创建售后提成订单" prop="secondAfterSaleFlag" label-width="200px">
|
||||
<el-select v-model="form.secondAfterSaleFlag" :disabled="secondAfterSaleFlagShow" style="width: 100px" placeholder="请选择">
|
||||
<el-option :key="0" label="否" :value="0"/>
|
||||
<el-option :key="1" label="是" :value="1"/>
|
||||
<el-form-item
|
||||
label="自动创建售后提成订单"
|
||||
prop="secondAfterSaleFlag"
|
||||
label-width="200px"
|
||||
>
|
||||
<el-select
|
||||
v-model="form.secondAfterSaleFlag"
|
||||
:disabled="secondAfterSaleFlagShow"
|
||||
style="width: 100px"
|
||||
placeholder="请选择"
|
||||
>
|
||||
<el-option :key="0" label="否" :value="0" />
|
||||
<el-option :key="1" label="是" :value="1" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
@ -120,7 +130,11 @@
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="主营养师" prop="nutritionistIdList">
|
||||
<el-select v-model="form.nutritionistIdList" multiple placeholder="请选择">
|
||||
<el-select
|
||||
v-model="form.nutritionistIdList"
|
||||
multiple
|
||||
placeholder="请选择"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in nutritionistIdOptions"
|
||||
:key="dict.dictValue"
|
||||
@ -132,7 +146,11 @@
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="拆分比例" prop="nutritionistRate">
|
||||
<el-select v-model="form.nutritionistRate" :disabled="orderRateOptionsShow" placeholder="请选择" >
|
||||
<el-select
|
||||
v-model="form.nutritionistRate"
|
||||
:disabled="orderRateOptionsShow"
|
||||
placeholder="请选择"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in orderRateOptions"
|
||||
:key="dict.dictValue"
|
||||
@ -264,9 +282,11 @@
|
||||
</el-dialog>
|
||||
</template>
|
||||
<script>
|
||||
import { addOrder, getOptions, updateOrder } from "@/api/custom/order";
|
||||
import { addOrder, updateOrder } from "@/api/custom/order";
|
||||
import dayjs from "dayjs";
|
||||
import * as orderTypeData from "@/utils/orderType";
|
||||
import { mapGetters } from "vuex";
|
||||
|
||||
export default {
|
||||
name: "OrderEdit",
|
||||
props: {
|
||||
@ -383,16 +403,6 @@ export default {
|
||||
},
|
||||
// 收款方式字典
|
||||
payTypeIdOptions: [],
|
||||
// 售前字典
|
||||
preSaleIdOptions: [],
|
||||
// 售后字典
|
||||
afterSaleIdOptions: [],
|
||||
// 主营养师字典
|
||||
nutritionistIdOptions: [],
|
||||
// 助理营养师字典
|
||||
nutriAssisIdOptions: [],
|
||||
// 策划字典
|
||||
plannerIdOptions: [],
|
||||
// 账号
|
||||
accountIdOptions: [],
|
||||
// 服务时长
|
||||
@ -401,54 +411,25 @@ export default {
|
||||
giveTimeIdOption: [],
|
||||
//调理项目
|
||||
conditioningProjectIdOption: [],
|
||||
// 策划助理字典
|
||||
plannerAssisIdOptions: [],
|
||||
// 运营字典
|
||||
operatorIdOptions: [],
|
||||
// 审核状态
|
||||
reviewStatusOptions: [],
|
||||
//
|
||||
operatorAssisIdOptions: [],
|
||||
//下拉列表对应关系(用于选择收款账号自动选择策划、策划助理、运营、运营助理)
|
||||
orderDropdownCorrespondingOptions: [],
|
||||
//订单类型
|
||||
orderTypeOptions: orderTypeData['orderTypeArray'],
|
||||
orderTypeOptions: orderTypeData["orderTypeArray"],
|
||||
secondAfterSaleFlagShow: true,
|
||||
//分成比例
|
||||
orderRateOptions: orderTypeData['orderRateArray'],
|
||||
orderRateOptionsShow: true
|
||||
orderRateOptions: orderTypeData["orderRateArray"],
|
||||
orderRateOptionsShow: true,
|
||||
};
|
||||
},
|
||||
created() {
|
||||
getOptions().then((res) => {
|
||||
const options = res.data.reduce((opts, cur) => {
|
||||
if (!opts[cur.postCode]) {
|
||||
opts[cur.postCode] = [
|
||||
{ dictValue: 0, dictLabel: "无", remark: null },
|
||||
];
|
||||
}
|
||||
opts[cur.postCode].push({
|
||||
dictValue: cur.userId,
|
||||
dictLabel: cur.userName,
|
||||
remark: cur.remark,
|
||||
});
|
||||
return opts;
|
||||
}, {});
|
||||
this.preSaleIdOptions = options["pre_sale"] || [];
|
||||
this.afterSaleIdOptions = options["after_sale"] || [];
|
||||
this.nutritionistIdOptions = options["nutri"] || [];
|
||||
this.nutriAssisIdOptions = options["nutri_assis"] || [];
|
||||
this.plannerIdOptions = options["planner"] || [];
|
||||
this.plannerAssisIdOptions = options["planner_assis"] || [];
|
||||
this.operatorIdOptions = options["operator"] || [];
|
||||
this.operatorAssisIdOptions = options["operator_assis"] || [];
|
||||
});
|
||||
this.getDicts("cus_pay_type").then((response) => {
|
||||
this.payTypeIdOptions = response.data;
|
||||
});
|
||||
this.getDicts("cus_account").then((response) => {
|
||||
this.accountIdOptions = response.data;
|
||||
console.log(response.data);
|
||||
// console.log(response.data);
|
||||
this.accountIdOptions.splice(0, 0, {
|
||||
dictLabel: "无",
|
||||
dictValue: "0",
|
||||
@ -484,6 +465,26 @@ export default {
|
||||
this.orderTypeOptions = response.data;
|
||||
});*/
|
||||
},
|
||||
computed: {
|
||||
...mapGetters([
|
||||
// 售前字典
|
||||
"preSaleIdOptions",
|
||||
// 售后字典
|
||||
"afterSaleIdOptions",
|
||||
// 主营养师字典
|
||||
"nutritionistIdOptions",
|
||||
// 助理营养师字典
|
||||
"nutriAssisIdOptions",
|
||||
// 策划字典
|
||||
"plannerIdOptions",
|
||||
// 策划助理字典
|
||||
"plannerAssisIdOptions",
|
||||
// 运营字典
|
||||
"operatorIdOptions",
|
||||
// 运营助理字典
|
||||
"operatorAssisIdOptions",
|
||||
]),
|
||||
},
|
||||
methods: {
|
||||
showDialog(data, callback) {
|
||||
// this.data = data;
|
||||
@ -554,7 +555,9 @@ export default {
|
||||
(opt) => parseInt(opt.dictValue) === accountId
|
||||
);
|
||||
|
||||
const defaultOrderRate = this.orderRateOptions.find((opt) => opt.remark === "default");
|
||||
const defaultOrderRate = this.orderRateOptions.find(
|
||||
(opt) => opt.remark === "default"
|
||||
);
|
||||
|
||||
const [
|
||||
plannerId,
|
||||
@ -590,7 +593,9 @@ export default {
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
nutritionistId: null,
|
||||
nutritionistIdList: defaultNutritionist ? [parseInt(defaultNutritionist.dictValue)] : null,
|
||||
nutritionistIdList: defaultNutritionist
|
||||
? [parseInt(defaultNutritionist.dictValue)]
|
||||
: null,
|
||||
nutritionistRate: defaultOrderRate ? defaultOrderRate.dictValue : null,
|
||||
remark: null,
|
||||
nutriAssisId: defaultNutriAssis
|
||||
@ -647,9 +652,9 @@ export default {
|
||||
};
|
||||
}
|
||||
},
|
||||
handleOrderTypeChange(){
|
||||
console.log(this.form.orderType);
|
||||
}
|
||||
handleOrderTypeChange() {
|
||||
console.log(this.form.orderType);
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
// 监听收款账号的变化
|
||||
@ -657,22 +662,22 @@ export default {
|
||||
this.initPlanningAndOperation();
|
||||
},
|
||||
"form.orderType": function (newVal, oldVal) {
|
||||
//判断订单类型是否选择了二开
|
||||
if(newVal[1] == 1){
|
||||
this.form.secondAfterSaleFlag = 1;
|
||||
this.secondAfterSaleFlagShow = false;
|
||||
}else{
|
||||
this.form.secondAfterSaleFlag = 0;
|
||||
this.secondAfterSaleFlagShow = true;
|
||||
}
|
||||
//判断是否选择了比例拆分单
|
||||
if(newVal[0] == 1){
|
||||
this.orderRateOptionsShow = false;
|
||||
this.form.nutritionistRate = "2,8";
|
||||
}else{
|
||||
this.orderRateOptionsShow = true;
|
||||
this.form.nutritionistRate = "0,10";
|
||||
}
|
||||
//判断订单类型是否选择了二开
|
||||
if (newVal[1] == 1) {
|
||||
this.form.secondAfterSaleFlag = 1;
|
||||
this.secondAfterSaleFlagShow = false;
|
||||
} else {
|
||||
this.form.secondAfterSaleFlag = 0;
|
||||
this.secondAfterSaleFlagShow = true;
|
||||
}
|
||||
//判断是否选择了比例拆分单
|
||||
if (newVal[0] == 1) {
|
||||
this.orderRateOptionsShow = false;
|
||||
this.form.nutritionistRate = "2,8";
|
||||
} else {
|
||||
this.orderRateOptionsShow = true;
|
||||
this.form.nutritionistRate = "0,10";
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
|
@ -235,8 +235,9 @@
|
||||
</el-dialog>
|
||||
</template>
|
||||
<script>
|
||||
import { addOrder, getOptions, updateOrder } from "@/api/custom/order";
|
||||
import { addOrder, updateOrder } from "@/api/custom/order";
|
||||
import dayjs from "dayjs";
|
||||
import { mapGetters } from "vuex";
|
||||
|
||||
export default {
|
||||
name: "OrderEdit",
|
||||
@ -354,16 +355,6 @@ export default {
|
||||
},
|
||||
// 收款方式字典
|
||||
payTypeIdOptions: [],
|
||||
// 售前字典
|
||||
preSaleIdOptions: [],
|
||||
// 售后字典
|
||||
afterSaleIdOptions: [],
|
||||
// 主营养师字典
|
||||
nutritionistIdOptions: [],
|
||||
// 助理营养师字典
|
||||
nutriAssisIdOptions: [],
|
||||
// 策划字典
|
||||
plannerIdOptions: [],
|
||||
// 账号
|
||||
accountIdOptions: [],
|
||||
// 服务时长
|
||||
@ -372,42 +363,13 @@ export default {
|
||||
giveTimeIdOption: [],
|
||||
//调理项目
|
||||
conditioningProjectIdOption: [],
|
||||
// 策划助理字典
|
||||
plannerAssisIdOptions: [],
|
||||
// 运营字典
|
||||
operatorIdOptions: [],
|
||||
// 审核状态
|
||||
reviewStatusOptions: [],
|
||||
//
|
||||
operatorAssisIdOptions: [],
|
||||
//下拉列表对应关系(用于选择收款账号自动选择策划、策划助理、运营、运营助理)
|
||||
orderDropdownCorrespondingOptions: [],
|
||||
};
|
||||
},
|
||||
created() {
|
||||
getOptions().then((res) => {
|
||||
const options = res.data.reduce((opts, cur) => {
|
||||
if (!opts[cur.postCode]) {
|
||||
opts[cur.postCode] = [
|
||||
{ dictValue: 0, dictLabel: "无", remark: null },
|
||||
];
|
||||
}
|
||||
opts[cur.postCode].push({
|
||||
dictValue: cur.userId,
|
||||
dictLabel: cur.userName,
|
||||
remark: cur.remark,
|
||||
});
|
||||
return opts;
|
||||
}, {});
|
||||
this.preSaleIdOptions = options["pre_sale"] || [];
|
||||
this.afterSaleIdOptions = options["after_sale"] || [];
|
||||
this.nutritionistIdOptions = options["nutri"] || [];
|
||||
this.nutriAssisIdOptions = options["nutri_assis"] || [];
|
||||
this.plannerIdOptions = options["planner"] || [];
|
||||
this.plannerAssisIdOptions = options["planner_assis"] || [];
|
||||
this.operatorIdOptions = options["operator"] || [];
|
||||
this.operatorAssisIdOptions = options["operator_assis"] || [];
|
||||
});
|
||||
this.getDicts("cus_pay_type").then((response) => {
|
||||
this.payTypeIdOptions = response.data;
|
||||
});
|
||||
@ -435,6 +397,26 @@ export default {
|
||||
this.orderDropdownCorrespondingOptions = response.data;
|
||||
});
|
||||
},
|
||||
computed: {
|
||||
...mapGetters([
|
||||
// 售前字典
|
||||
"preSaleIdOptions",
|
||||
// 售后字典
|
||||
"afterSaleIdOptions",
|
||||
// 主营养师字典
|
||||
"nutritionistIdOptions",
|
||||
// 助理营养师字典
|
||||
"nutriAssisIdOptions",
|
||||
// 策划字典
|
||||
"plannerIdOptions",
|
||||
// 策划助理字典
|
||||
"plannerAssisIdOptions",
|
||||
// 运营字典
|
||||
"operatorIdOptions",
|
||||
// 运营助理字典
|
||||
"operatorAssisIdOptions",
|
||||
]),
|
||||
},
|
||||
methods: {
|
||||
showDialog(data, callback) {
|
||||
// this.data = data;
|
||||
|
Reference in New Issue
Block a user