dev_review
yujialong 9 months ago
parent 8ca2239f95
commit f7a27f7e30
  1. 2
      src/setting.js
  2. 2
      src/views/order/AddOrder.vue
  3. 7
      src/views/serve/projectAdd.vue

@ -13,7 +13,7 @@ if (isDev) {
sandPath = `http://${location.hostname}:9520`
host = 'http://121.37.12.51/'
// host = 'https://huorantech.cn/'
// host = 'http://192.168.31.217:9000/'// 榕
host = 'http://192.168.31.217:9000/'// 榕
// host = 'http://192.168.31.51:9000/'// 赓
} else if (isPro) {
jumpPath = 'https://www.huorantech.cn/judgmentPoint/'

@ -2566,7 +2566,7 @@ export default {
isEnable: 0, // 10
ship: 0,// 01
authority, //
options: 1,
options: 2,
settlementPrice: orderType === 2 ? 0 : '', //
settlementPriceUnit: e.settlementPrice || 0, //
mallNonAssociatedLinks: e.mallNonAssociatedLinks //

@ -202,7 +202,7 @@
<!--type="number" @blur="updateProjectJudgment"-->
<el-input :disabled="isDetail"
v-model.trim="scope.row.score"
@input="scoreChange(scope.row, scope.$index,$event)"></el-input>
@input="scoreChange(scope.row, scope.$index)"></el-input>
</template>
</el-table-column>
<el-table-column label="操作"
@ -633,8 +633,9 @@ export default {
let y = index + 2;
this.projectJudgmentData.splice(x - 1, 1, ...this.projectJudgmentData.splice(y - 1, 1, this.projectJudgmentData[x - 1]));
},
scoreChange (row, index) { //
this.projectJudgmentData.splice(index, 1, row);
scoreChange (row, i) {
row.score = row.score.replace(/[^\d]/g, '')
this.projectJudgmentData.splice(i, 1, row);
},
delJudgePoint (index) { //
this.$confirm("确定要删除吗?", "提示", {

Loading…
Cancel
Save