diff --git a/src/views/bl/artificer/artificerPartitioningDetails.vue b/src/views/bl/artificer/artificerPartitioningDetails.vue index 30561ea..7159a63 100644 --- a/src/views/bl/artificer/artificerPartitioningDetails.vue +++ b/src/views/bl/artificer/artificerPartitioningDetails.vue @@ -16,15 +16,15 @@ + + - - - - - - - + + + + + @@ -54,23 +54,24 @@
- 最低业绩: - -
-
- 加钟率: - -
-
- 充值率: - -
-
- 在线时长: + 最低在线时长(小时):
- 积分: + 最低业绩: + +
+ + + + + + + + + +
+ 最低积分:
diff --git a/src/views/bl/artificer/artificerRechargeReward.vue b/src/views/bl/artificer/artificerRechargeReward.vue new file mode 100644 index 0000000..d153842 --- /dev/null +++ b/src/views/bl/artificer/artificerRechargeReward.vue @@ -0,0 +1,340 @@ + + + + + diff --git a/src/views/user/userDetail.vue b/src/views/user/userDetail.vue index beddd88..be9ceaa 100644 --- a/src/views/user/userDetail.vue +++ b/src/views/user/userDetail.vue @@ -310,38 +310,48 @@ @click="xiugaiJs(artificer)"> 修改 + 最低在线时长(小时) + + {{ artificer.durationOnline }} + + 修改 + 城市 {{ artificer.city }} 修改 + + + 评分 + + {{ artificer.ordersScore }} + + 出行方式 + + 公交 + 出租 + 免费 + 当前物料包
+ class="borderInner">
{{ item.materialName }}
{{ item.residue }}
- 评分 - - {{ artificer.ordersScore }} - - 出行方式 - - 公交 - 出租 - 免费 - 忙时 日期: + align="right" type="date" format="yyyy-MM-dd" value-format="yyyy-MM-dd" + placeholder="选择时间" @change="mangshi(artificerDate)">
@@ -350,6 +360,10 @@
修改 + + + + @@ -2160,6 +2174,18 @@ 确 定
+ + +
+ 最低在线时长: + +
+ +
@@ -2631,6 +2657,8 @@ import { serverPaths } from '@/utils/enumData' JsartificerId: "", currentIntegratingDate: this.getFormatDate(), dialogFormVisibleJs: false, + durationOnline: 0, + dialogFormVisibleOnline: false, materialPackageOptions: [], integratingOptions: [{ title: "时长积分", @@ -5096,6 +5124,11 @@ import { serverPaths } from '@/utils/enumData' this.artificerId = row.artificerId; this.dialogFormVisibleJs = true; }, + xiugaiOnline(row) { + this.durationOnline = row.durationOnline; + this.artificerId = row.artificerId; + this.dialogFormVisibleOnline = true; + }, StairNoticeToJs() { this.$http({ url: this.$http.adornUrl("artificer/updateArtificers"), @@ -5130,6 +5163,40 @@ import { serverPaths } from '@/utils/enumData' } }); }, + StairNoticeToOnline() { + this.$http({ + url: this.$http.adornUrl("artificer/updateArtificers"), + method: "post", + // params: this.$http.adornParams({ + data: this.$http.adornData({ + artificerId: this.artificerId, + durationOnline: this.durationOnline, + }), + }).then(({ + data + }) => { + console.log("data", data); + if (data.code == 0) { + this.$message({ + message: "修改成功", + type: "success", + duration: 1500, + onClose: () => { + this.dialogFormVisibleOnline = false; + this.autonymSelect(); + this.mangshiSelect(this.artificerDate); + }, + }); + } else { + this.$message({ + message: data.msg, + type: "warning", + duration: 1500, + onClose: () => {}, + }); + } + }); + }, // 删除签到 deleteClick(row) { let delid = row.id;