123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944 |
- <template>
- <el-form
- ref="ruleForm"
- :loading="loading"
- :model="ruleForm"
- status-icon
- :size="'mini'"
- :rules="rulesThis"
- label-width="110px"
- style="width: 100%"
- >
- <el-row>
- <el-col :span="12">
- <el-form-item label="销售方" prop="companyNo" class="clear">
- <search-work-company
- :value="ruleForm.companyNo"
- :placeholder="'销售方公司'"
- :disabled="type === 'view'"
- :size="'mini'"
- :isDetail="type === 'view'"
- @searchChange="company_idsearchChange"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="购买方公司" prop="khNo" class="clear">
- <search-customer
- :value="ruleForm.khNo"
- :names="ruleForm.customer_name"
- :placeholder="'购买方公司'"
- :size="'mini'"
- @searchChange="customerChange"
- :disabled="type === 'view'"
- :is-detail="type === 'view'"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="所属平台" prop="platform_code" class="clear">
- <search-terrace
- :value="ruleForm.platform_code"
- :disabled="type === 'view'"
- :size="'mini'"
- :isDetail="type === 'view'"
- :names="platform_code_name"
- :placeholder="'所属平台'"
- @searchChange="platform_code_codesearchChange"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="咨询截止时间" prop="endtime" class="clear">
- <el-date-picker
- v-model="ruleForm.endtime"
- type="datetime"
- value-format="yyyy-MM-dd HH:mm:ss"
- style="width: 100%"
- :picker-options="pickerOptions"
- placeholder="咨询截止时间"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="咨询类型" prop="is_project" class="clear">
- <el-select
- v-model="ruleForm.is_project"
- style="width: 100%"
- :disabled="false"
- placeholder="咨询类型"
- @change="is_project_change"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="ruleForm.is_project === '1'">
- <el-form-item label="项目名称" prop="projectNo" class="clear">
- <el-select
- v-model="ruleForm.projectNo"
- multiple
- filterable
- remote
- clearable
- :multiple-limit="1"
- reserve-keyword
- style="width: 100%"
- :placeholder="'项目名称'"
- :remote-method="remoteMethod"
- :loading="selectLoading"
- @change="selectChange"
- >
- <el-option
- v-for="(item, index) in poptions"
- :key="item.projectNo + index"
- :label="item.project_name"
- :value="item.projectNo + ''"
- :disabled="item.status !== '1'"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="ruleForm.is_project === '1'">
- <el-form-item
- label="项目咨询截止时间"
- class="clear"
- required
- label-width="140px"
- >
- <el-input
- placeholder="项目咨询截止时间"
- v-model="ruleForm.pendtime"
- disabled
- maxlength="500"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="ruleForm.is_project === '1'">
- <el-form-item label="要求到货时间" class="clear" required>
- <el-input
- placeholder="要求到货时间"
- v-model="ruleForm.arrtime"
- disabled
- />
- </el-form-item>
- </el-col>
- <el-col :span="16" v-if="ruleForm.is_project === '1'">
- <el-form-item label="项目用途" class="clear" required>
- <el-input
- placeholder="项目用途"
- v-model="ruleForm.use_desc"
- disabled
- maxlength="500"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="ruleForm.is_project === '1'">
- <el-form-item label="项目总预算" class="clear" required>
- <el-input
- placeholder="项目总预算"
- v-model="ruleForm.budget_total"
- disabled
- >
- <template slot="append">元</template></el-input
- >
- </el-form-item>
- </el-col>
- <el-col :span="24" v-if="ruleForm.is_project === '1'">
- <el-form-item label="项目商品要求" class="clear" required>
- <el-table
- ref="multipleTable"
- :data="ptableData"
- :size="'mini'"
- border
- stripe
- tooltip-effect="dark"
- style="width: 100%"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="40"> </el-table-column>
- <el-table-column label="商品阶梯" width="70px">
- <template slot-scope="scope"> {{ scope.$index + 1 }}</template>
- </el-table-column>
- <el-table-column prop="good_type" label="商品类型" width="80px">
- <template slot-scope="scope">
- <el-tag
- :size="'mini'"
- v-text="
- (
- statusOptions.find(
- (item) => item.value == scope.row.good_type
- ) || {}
- ).label || '--'
- "
- ></el-tag
- ></template>
- </el-table-column>
- <el-table-column prop="budget_price" label="预算单价" width="110" />
- <el-table-column prop="num" label="购买数量" width="110" />
- <el-table-column prop="cat_name" label="商品分类" />
- <el-table-column prop="good_img" label="图片" width="50">
- <template slot-scope="scope">
- <div
- v-if="scope.row.good_img"
- style="width: 20px; height: 20px"
- class="hover"
- v-viewer
- >
- <img
- :src="scope.row.good_img"
- style="display: inline-block; width: 100%; height: 100%"
- alt=""
- />
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="good_name" label="商品名称" />
- </el-table>
- </el-form-item>
- </el-col>
- <el-co :span="24">
- <el-form-item label="咨询商品要求" class="clear" required>
- <el-table
- :data="tableData"
- stripe
- border
- :size="'mini'"
- style="width: 100%"
- >
-
- <el-table-column
- prop="arrival_time"
- label="到货时间"
- width="100"
- show-overflow-tooltip
- />
- <el-table-column
- prop="budget_price"
- label="预算单价"
- show-overflow-tooltip
- width="110"
- />
- <el-table-column
- prop="num"
- label="购买数量"
- show-overflow-tooltip
- width="80"
- >
- <template slot-scope="scope">
- <span>{{ scope.row.num }}</span
- ><span>{{ scope.row.unit_name }}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="cat_id_name"
- label="商品分类"
- show-overflow-tooltip
- min-width="170"
- />
- <el-table-column
- prop="good_img"
- label="图片"
- width="50"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <img
- v-viewer
- style="width: 23px; height: 23px; margin: 0 5px 0 0"
- class="fl"
- v-if="scope.row.good_img"
- :src="scope.row.good_img"
- alt=""
- />
- </template>
- </el-table-column>
- <el-table-column
- prop="good_name"
- label="商品名称"
- show-overflow-tooltip
- min-width="170"
- />
- <el-table-column
- prop="specinfo"
- label="商品规格"
- show-overflow-tooltip
- width="170"
- >
- <template slot-scope="scope">
- <span
- v-for="(si, sii) in scope.row.specinfo"
- :key="si.spec_name + sii"
- ><span v-if="sii !== 0">-</span>{{ si.spec_name }}:[{{
- si.spec_value_name
- }}]</span
- >
- </template>
- </el-table-column>
- <el-table-column
- prop="is_addrs"
- label="是否多地"
- width="70"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.is_addrs === "1" ? "多地" : "一地" }}
- </template>
- </el-table-column>
- <el-table-column
- prop="is_custom"
- label="是否定制"
- width="70"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.is_custom === "1" ? "定制" : "非定制" }}
- </template>
- </el-table-column>
- <el-table-column fixed="right" width="80">
- <template slot="header" slot-scope="scope">
- <span>操作</span>
- <el-tooltip
- class="item"
- effect="dark"
- v-if="status === ''"
- content="添加活动商品"
- placement="top"
- >
- <i
- class="el-icon-circle-plus-outline fr"
- style="font-size: 18px; margin-top: 2px"
- @click="openEdit(-1, {})"
- />
- </el-tooltip>
- </template>
- <template slot-scope="scope">
- <el-tooltip effect="dark" content="修改" placement="top">
- <i
- class="el-icon-edit tb-icon"
- @click="openEdit(scope.$index, scope.row)"
- ></i>
- </el-tooltip>
- <el-tooltip
- v-if="status === ''"
- effect="dark"
- content="删除"
- placement="top"
- >
- <i
- class="el-icon-delete tb-icon"
- @click="openCostEditDelete(scope.$index)"
- ></i>
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table>
- </el-form-item>
- <add-edit-good-modal
- :showModel="showModel"
- :sitem="editItem"
- @cancel="showModel = false"
- @refresh="editGoodRefresh"
- />
- </el-co>
- <el-col :span="24" style="text-align: right" v-if="id === 'add'">
- <el-button type="primary" @click="submitForm" :size="'mini'"
- >保 存</el-button
- >
- </el-col>
- </el-row>
- </el-form>
- </template>
- <script>
- import asyncRequest from "@/apis/service/sellOut/zixunOrder";
- import resToken from "@/mixins/resToken";
- import addEditGoodModal from "./addEditGoodModal";
- export default {
- name: "handover",
- props: ["id", "sitem", "newTime"],
- mixins: [resToken],
- components: {
- addEditGoodModal,
- },
- data() {
- return {
- multipleSelection: [],
-
- tableData: [],
- ptableData: [],
- showModel: false,
- editItem: {},
- options: [
- { value: "0", label: "非项目" },
- { value: "1", label: "项目" },
- ],
- statusOptions: [
- { value: "1", label: "竞品" },
- { value: "2", label: "竞聘" },
- ],
- configOptions: ["证书", "包装盒", "绒布袋", "标签", "其他"],
- poptions: [],
- loading: false,
- selectLoading: false,
- pickerOptions: {
- disabledDate(time) {
- return time.getTime() < Date.now() - 60 * 60 * 24 * 1000;
- },
- },
- status: "",
- ruleForm: {
- is_project: "0",
- projectNo: [],
- khNo: [],
- customer_name: "",
- companyNo: "",
- endtime: "",
- pendtime: "",
- platform_code: "",
- use_desc: "",
- budget_total: "",
- arrtime: "",
- },
- rulesThis: this.rules,
-
- rules: {
- companyNo: [
- {
- required: true,
- message: "请选择销售方公司",
- trigger: "change",
- },
- ],
- khNo: [
- {
- type: "array",
- required: true,
- message: "请选择购买方公司",
- trigger: "change",
- },
- ],
- platform_code: [
- {
- required: true,
- message: "请选择所属平台",
- trigger: "change",
- },
- ],
- endtime: [
- {
- required: true,
- message: "咨询截止时间不能为空",
- trigger: "change",
- },
- ],
- is_project: [
- {
- required: true,
- message: "请选择咨询类型!",
- trigger: "change",
- },
- ],
- projectNo: [
- {
- type: "array",
- required: true,
- message: "请选择项目",
- trigger: "change",
- },
- ],
- },
- };
- },
- computed: {
- powers() {
- let tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "zixunOrderDetail"
- ) || {};
- if (tran && tran.action && tran.action.length > 0) {
- return tran.action;
- } else {
- return [];
- }
- },
- },
- mounted() {
- this.initForm();
- },
- watch: {
- id: function (val) {
- if (val) {
- this.initForm();
- }
- },
- newTime: function (val) {
- if (val) {
- this.initForm();
- }
- },
- },
- methods: {
- async initForm() {
- this.loading = true;
- this.status = "";
- this.rulesThis = this.rules;
- this.disabled = false;
- await this.resetForm();
- this.loading = false;
- },
- openEdit(index, editItem) {
- const { is_project } = this.ruleForm;
- if (index + "" == "-1" && is_project === "1") {
- if (this.multipleSelection.length === 0) {
- this.$message.warning("请选择一个项目商品要求!");
- return;
- }
- if (this.multipleSelection.length > 1) {
- this.$message.warning("每次创建只能选择一个项目商品要求!");
- return;
- }
- const {
- cat_info,
- budget_price,
- pgNo,
- num,
- good_type,
- good_name,
- good_img,
- } = this.multipleSelection[0];
- let cat_id = [];
- if (cat_info && cat_info.length > 0) {
- cat_info.forEach((e) => {
- cat_id.push(e.id);
- });
- }
- console.log(this.multipleSelection[0]);
- this.editItem = {
- p_cat_info: cat_info,
- p_cat_id: cat_id,
- p_budget_price: budget_price,
- p_pgNo: pgNo,
- p_num: num,
- p_good_type: good_type,
- p_good_name: good_name,
- p_good_img: good_img,
- p_arrtime: this.ruleForm.arrtime,
- };
- this.editItem.index = index;
- this.showModel = true;
- } else {
- this.editItem = editItem;
- this.editItem.index = index;
- this.showModel = true;
- }
- },
- handleSelectionChange(val) {
- this.multipleSelection = val;
- },
- editGoodRefresh(e) {
- console.log(e);
- const { index } = e;
- if (index + "" === "-1") {
- this.tableData.push(JSON.parse(JSON.stringify(e)));
- } else {
- const fsindex = parseInt(index + "");
- this.tableData[fsindex] = JSON.parse(JSON.stringify(e));
- this.$set(this.tableData, fsindex, this.tableData[fsindex]);
- }
- this.showModel = false;
- },
- //咨询类型选择
- is_project_change() {
- const { is_project } = this.ruleForm;
- if (is_project === "0") {
- } else {
- this.ptableData = [];
- }
- },
- openCostEditDelete(index) {
- this.tableData.splice(index, 1);
- },
- async resetForm() {
- this.resign_name = "";
- this.hand_name = "";
- this.status = "";
-
- await this.$nextTick(async () => {
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- let {
- is_project,
- projectNo,
- khNo,
- customer_name,
- companyNo,
- endtime,
- platform_code,
- ladder,
- } = this.sitem;
- this.ruleForm = {
- is_project: is_project || "0",
- projectNo: projectNo ? [projectNo] : [],
- khNo: khNo ? [khNo] : [],
- customer_name: customer_name || "",
- companyNo: companyNo || "",
- endtime: endtime || "",
- platform_code: platform_code||"",
- use_desc: "",
- budget_total: "",
- arrtime: "",
- };
- this.tableData =
- ladder && ladder.length > 0
- ? JSON.parse(JSON.stringify(ladder))
- : [];
- if (this.ruleForm.projectNo && this.ruleForm.projectNo.length === 1) {
- await this.selectChange(this.ruleForm.projectNo);
- }
- }
- });
- },
- async submitForm() {
- console.log(this.ruleForm);
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
-
- if (this.tableData.length === 0) {
- this.$message.warning("至少提供一条商品要求!");
- this.loading = false;
- return;
- }
- let model = JSON.parse(JSON.stringify(this.ruleForm));
- const { pendtime, is_project, endtime } = model;
- if (
- is_project === "1" &&
- new Date(endtime).getTime() > new Date(pendtime).getTime()
- ) {
- this.$message.warning("咨询截止时间不能晚于项目咨询截止时间!");
- this.loading = false;
- return;
- }
- model.khNo = model.khNo.toString();
- model.projectNo = model.projectNo.toString();
- model.ladder = [];
- let list = JSON.parse(JSON.stringify(this.tableData));
- list.forEach((e) => {
- let im = {
- good_name: e.good_name,
- good_img: e.good_img,
- cat_id: e.cat_id[e.cat_id.length - 1],
- unit: e.unit.toString(),
- brand_id: e.brand_id.toString(),
- arrival_time: e.arrival_time,
- cost_desc: e.cost_desc,
- is_addrs: e.is_addrs,
- is_custom: e.is_custom,
- metal_id: e.metal_id,
- config: e.config.toString(),
- other_config: e.other_config,
- specs_weight: e.specs_weight,
- gold_price: e.gold_price,
- budget_price: e.budget_price,
- num: e.num,
- use_desc: e.use_desc,
- remark: e.remark,
- pgNo: e.pgNo,
- total_weight: e.total_weight,
- is_gold_price: e.is_gold_price,
- enclosure_file:e.enclosure_file,
- specinfo: [],
- };
- e.specinfo.forEach((a) => {
- let am = {
- specid: a.specid,
- spec_value_id: a.spec_value_id,
- };
- im.specinfo.push(am);
- });
- model.ladder.push(im);
- });
- console.log(model);
- const res = await asyncRequest.add(model);
- this.loading = false;
- if (res && res.code === 0) {
- this.$notify.success({
- title: "创建成功!",
- message: "",
- });
- this.$emit("refresh", true);
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- async selectChange(e) {
- const key = e && e.length > 0 ? e[0] : "";
- if (key) {
- const { code, data, message } = await asyncRequest.pdetail({
- projectNo: key,
- });
- if (code === 0) {
- const { use_desc, budget_total, ladder, arrtime, endtime } = data;
- this.ruleForm.use_desc = use_desc || "";
- this.ruleForm.budget_total = budget_total || "";
- this.ruleForm.arrtime = arrtime || "";
- this.ruleForm.pendtime = endtime || "";
- this.ptableData = ladder;
- this.ptableData.forEach((e) => {
- e.cat_name = "";
- const { cat_info } = e;
- if (cat_info && cat_info.length > 0) {
- cat_info.forEach((b, bi) => {
- e.cat_name += bi !== 0 ? "/" + b.name : b.name;
- });
- }
- });
- this.tableData == [];
- } else if (code >= 100 && code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(message);
- this.ptableData = [];
- this.ruleForm.use_desc = "";
- this.ruleForm.budget_total = "";
- this.ruleForm.arrtime = "";
- this.tableData == [];
- }
- } else {
- this.ptableData = [];
- this.ruleForm.use_desc = "";
- this.ruleForm.budget_total = "";
- this.ruleForm.arrtime = "";
- this.tableData = [];
- }
- },
- async remoteMethod(query) {
- this.selectLoading = true;
- this.poptions = [];
- const { platform_code, companyNo, khNo } = JSON.parse(
- JSON.stringify(this.ruleForm)
- );
- if (!companyNo) {
- this.$message.warning("请选择销售方公司!");
- this.selectLoading = false;
- return;
- }
- if (khNo.length === 0) {
- this.$message.warning("请选择购买方公司!");
- this.selectLoading = false;
- return;
- }
- if (platform_code==="") {
- this.$message.warning("请选择所属平台!");
- this.selectLoading = false;
- return;
- }
- if (!query) {
- this.selectLoading = false;
- return;
- }
- let formValue = {
- page: 1,
- size: 100,
- khNo: khNo.toString(),
- companyNo: companyNo,
- platform_code: platform_code,
- status: "1",
- project_name: query,
- };
- const { code, data, message } = await asyncRequest.plist(formValue);
- if (code === 0) {
- const { list } = data;
- this.poptions = list;
- } else if (code >= 100 && code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(message);
- this.poptions = [];
- }
- this.selectLoading = false;
- },
-
- platform_code_codesearchChange(e) {
- const { id, code, label } = e;
- this.ruleForm.platform_code = id ||"";
- this.$refs.ruleForm.validateField("platform_code");
- this.ruleForm.projectNo = [];
- this.ruleForm.budget_total = "0";
- this.ruleForm.use_desc = "";
- this.ruleForm.pendtime = "";
- this.ruleForm.arrtime = "";
- this.ptableData = [];
- this.tableData = [];
- },
-
- company_idsearchChange(e) {
- if (e) {
- const { id, code, label } = e;
- this.ruleForm.companyNo = code || "";
- }
- this.$refs.ruleForm.validateField("companyNo");
- },
-
- customerChange(e) {
- if (e && e.id) {
- this.ruleForm.khNo = [e.code];
- this.ruleForm.customer_name = e.label;
- } else {
- this.ruleForm.khNo = [];
- this.ruleForm.customer_name = "";
- }
- this.$refs.ruleForm.validateField("khNo");
- this.ruleForm.projectNo = [];
- this.ruleForm.budget_total = "0";
- this.ruleForm.use_desc = "";
- this.ruleForm.pendtime = "";
- this.ruleForm.arrtime = "";
- this.ptableData = [];
- this.tableData = [];
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .el-form-item-error-img {
- width: 100%;
- ul {
- width: 100%;
- li {
- float: left;
- border: 1px solid rgb(220, 223, 230);
- // border-left: 0;
- box-sizing: border-box;
- width: 254px;
- height: 164px;
- line-height: 164px;
- position: relative;
- img {
- display: inline-block;
- width: 100%;
- height: 100%;
- }
- .el-icon-close {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 2;
- width: 25px;
- height: 25px;
- text-align: center;
- line-height: 25px;
- font-size: 19px;
- &:hover {
- color: #63cbe7;
- }
- }
- }
- }
- }
- .images_li {
- // width: 254px;
- // height: 164px;
- float: left;
- }
- .btnupload {
- float: left;
- border: 1px solid rgb(220, 223, 230);
- // border-left: 0;
- box-sizing: border-box;
- width: 254px;
- height: 164px;
- line-height: 164px;
- text-align: center;
- }
- .Upload {
- width: 254px;
- height: 164px;
- line-height: 164px;
- text-align: center;
- position: absolute;
- line-height: 0px;
- top: 0;
- left: 0;
- z-index: 2;
- line-height: 164px;
- }
- .avatar-uploader-icon {
- font-size: 33px;
- color: #8c939d;
- width: 50px;
- height: 50px;
- line-height: 50px;
- text-align: center;
- }
- </style>
|