ownerInfo.js
741 字节
"use strict";
const common_vendor = require("../common/vendor.js");
const _sfc_main = {
__name: "ownerInfo",
props: {
carInfo: {
type: Object,
require: true
}
},
setup(__props) {
return (_ctx, _cache) => {
return {
a: common_vendor.t(__props.carInfo.name),
b: common_vendor.t(__props.carInfo.sysDeptName),
c: common_vendor.t(__props.carInfo.vehicleType),
d: common_vendor.t(__props.carInfo.phone),
e: common_vendor.t(__props.carInfo.policyTime),
f: common_vendor.t(__props.carInfo.createTime)
};
};
}
};
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-a0938ee9"]]);
wx.createComponent(Component);